• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

AFK Taskmaster

Status
Not open for further replies.
omn1potent said:
Could someone please help me set this up for a Monk to get solo xp? What exactly do i need to download

Read the first post. Unzip the ZIP file and then read the usage line in the macro that you wish to run. If that doesn't get you running then post again and I will make a README file.
 
On the AdvTaskRunner I get the message 'you must be in dreadlands' when I am already in dreadlands. I appreciate any help
 
keltia0 said:
On the AdvTaskRunner I get the message 'you must be in dreadlands' when I am already in dreadlands. I appreciate any help

Looking at it now ...

Edit: All fixed now. Let me know if you have more issues.
 
quick question about the level and the tasks you get.

one of my toon is 66 and gets perfectly all missions,
once he dinged 67 then was unable to have a different mission than 'Decaying theatre', getting him back to 66 and all became normal again.

another toon is 52 and cant do these missions yet. So I made 5 of them in a row quite easily, the not very funny thing is that he can't get these tasks again.

So does someone know more about the level and the tasks you can do ?
 
levels 61 - 66 is the range for the main 4 tasks. If you shroud down to 65 you'll be gtg.
 
I'm having an issue with Lookout Below, I don't know about other tasks at the moment because i keep getting this one. However, the problem with LB is big enough.

After completing the first objective in KC, and then running to the wizard spires, my character then turns around and runs back towards the FV zone, but it totally ignores the ice tunnel, and just runs into the wall farther north.

Seems like the macro has a bad path for that section. Giving you a heads-up because i'm still too noobish to fix it myself.
 
I wasn't planning on posting this, but at this point if people are still using this, I guess why not...this is just a simple variation on the warp version of taskmaster but with pre-61 tasks added. Basically you could start this at whatever level you can get the tasks like "to the castle" (somewhere in the 50s maybe?) and run it til 66 non-stop.

for all those daring enough to try, enjoy

Autotask2.mac
Rich (BB code):
|----------------------------- AUTOTASK2.MAC -----------------------------------|
|- AUTOTASK, By Alatyami, Edited by Smieyjoe72
|- Last Modified: November 3, 2005
|- Usage: /mac autotask2
|- Requirements: AutoTask2.ini, Exp_Tracking.inc
|------------------------------------------------------------------------------|

#turbo 10
#include move.inc
#include Exp_Tracking.inc

#Event finished "#*#You gain #*#"
#Event Zoned "You have entered#*#"

sub main

  /ini "AutoTask2.ini" "${Zone}" "${MyTasks}"
  /declare CurrentTask1 string outer
  /declare CurrentTask2 string outer
  /declare CurrentTask3 string outer
  /declare TaskSetting int outer 0
  /declare ValidTask string outer
  /declare Zn int outer

   /declare TaskNPC string outer Marana
   /declare StandardWait string outer 3s
   /declare ZoneWait string outer 45s
   /declare WarpWait string outer 3s
   /declare SuccessWait string outer 0m
	 /call ExpPrep
:asktaskmaster
  /varset TaskSetting 0
  /call GMCheck
  /delay 1s
  /target Marana
  /delay 3
  /say Do you have any Tasks?
  /delay 2s

  |- Select the task window to set varaibles
  /notify TaskSelectWnd TaskList leftmouseup

  /varset CurrentTask1 ${Window[TaskSelectWnd].Child[TaskList].List[1]}
  /varset CurrentTask2 ${Window[TaskSelectWnd].Child[TaskList].List[2]}
  /varset CurrentTask3 ${Window[TaskSelectWnd].Child[TaskList].List[3]}

  /if (${TaskSetting}==0) {
    |- Check the first available task listselect
    /notify TaskSelectWnd TaskList listselect ${Window[TaskSelectWnd].Child[TaskList].List[=${CurrentTask1}]}
    /notify TaskSelectWnd TaskList leftmouse ${Window[TaskSelectWnd].Child[TaskList].List[=${CurrentTask1}]}
    /varset TaskSetting ${Ini[AutoTask2.ini,${Zone},${Window[TaskSelectWnd].Child[TaskList].List[1]},${notFound}]}
    /echo INI Check: ${Window[TaskSelectWnd].Child[TaskList].List[1,1]} = ${TaskSetting}
    /delay 1s
    /if (${TaskSetting}==1) {
      /notify TaskSelectWnd AcceptButton leftmouseup
      /varset ValidTask ${CurrentTask1}
      /call LoadTask
    }
    /delay 5
  }
  /if (${TaskSetting}==0) {
      |- Check the Second available task listselect
      /notify TaskSelectWnd TaskList listselect ${Window[TaskSelectWnd].Child[TaskList].List[=${CurrentTask2}]}
      /notify TaskSelectWnd TaskList leftmouse ${Window[TaskSelectWnd].Child[TaskList].List[=${CurrentTask2}]}
      /varset TaskSetting ${Ini[AutoTask2.ini,${Zone},${Window[TaskSelectWnd].Child[TaskList].List[2]},${notFound}]}
      /echo INI Check: ${Window[TaskSelectWnd].Child[TaskList].List[2,1]} = ${TaskSetting}
      /delay 1s
    /if (${TaskSetting}==1) {
      /notify TaskSelectWnd AcceptButton leftmouseup
      /varset ValidTask ${CurrentTask2}
      /call LoadTask
    }
      /delay 5
  }
   /if (${TaskSetting}==0) {
    |- Check the first available task listselect
    /notify TaskSelectWnd TaskList listselect ${Window[TaskSelectWnd].Child[TaskList].List[=${CurrentTask3}]}
    /notify TaskSelectWnd TaskList leftmouse ${Window[TaskSelectWnd].Child[TaskList].List[=${CurrentTask3}]}
    /varset TaskSetting ${Ini[AutoTask2.ini,${Zone},${Window[TaskSelectWnd].Child[TaskList].List[3]},${notFound}]}
    /echo INI Check: ${Window[TaskSelectWnd].Child[TaskList].List[3,1]} = ${TaskSetting}
    /delay 1s
    /if (${TaskSetting}==1) {
      /notify TaskSelectWnd AcceptButton leftmouseup
      /varset ValidTask ${CurrentTask3}
      /call LoadTask
    }
    /delay 5
  }


    /notify TaskSelectWnd DeclineButton leftmouseup
    /delay 12s
    /goto :asktaskmaster

/return

sub LoadTask

  /echo Loading: ${ValidTask}
  /if (${ValidTask.Equal[Dreaded Giants]}) /call Event_Task1
  /if (${ValidTask.Equal[Lands of Dread]}) /call Event_Task2
  /if (${ValidTask.Equal[To the Castle!]}) /call Event_Task3
  /if (${ValidTask.Equal[Lookout Below]}) /call Event_Task4
  /if (${ValidTask.Equal[Giant Expedition]}) /call Event_Task5
  /if (${ValidTask.Equal[Mystic Ring]}) /call Event_Task6
  /if (${ValidTask.Equal[Scary Caves]}) /call Event_Task7
/return

sub Zoner
  /delay 60
:loop
  /doevents
  /if (${Zn}!=1) /goto :loop
  /varset Zn 0
  /delay 5
/return

sub Event_Zoned
  /call GMCheck
  /varset Zn 1
/return

sub Event_finished
/return

sub GMCheck
  /if (${Bool[${Spawn[gm].ID}]}) {
    /echo A GM or Guide has been detected.  Waiting for five minutes to check again ...
    /delay 300s
    /call GMCheck
  }
/return

|- SubFunctions containing task details -|


|-------Dreaded Giants----------------------------|
Sub Event_Task1
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc 198.00 -235.00 46.00
        /delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc 1782.00 950.00 92.00
        /Delay 2s
        /zone firiona
        /call Zoner
        /Target Telligron
        /Delay 1s
        /hail
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return

|-----Lands of Dread----------------------------|
Sub Event_Task2
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc -53.78 -547.10 33.00
        /Delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc -1533.88 -4944.30 53.00
        /Delay 2s
        /zone frontiermtns
        /call Zoner
        /Target Grenndo
        /Delay 1s
        /hail
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return


|-------To the Castle!----------------------------|
Sub Event_Task3
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc -155.77 -225.65 46.00
        /Delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc -467.43 3351.36 414.25
        /Delay 2s
        /zone firiona
        /call Zoner
        /Target Jithan
        /Delay 1s
        /hail
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return

|--------Giant Expedition----------------------------|
Sub Event_Task4
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc 170.49, -261.95, 46.00
        /Delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc -430, 1970, 325
        /Delay 2s
        /zone frontiermtns
        /call Zoner
        /Target Shilur
        /Delay 1s
        /Hail 
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return

|--------Lookout Below------------------------------|
Sub Event_Task5
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc 119.52 -32.67 32.19
        /Delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc 3069 9659 1047
        /Delay 2s
        /zone firiona
        /call Zoner
        /Target Telligron
        /Delay 1s 
        /hail
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return

|---------Mystic Ring--------------------------------|
Sub Event_Task6
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc 108.11, -446.86, 2.75
        /Delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc 2480.67, 7751.34, 1049.22
        /Delay 2s
        /zone Firiona
        /call Zoner
        /Target Socaldoor
	/delay 1s
        /Hail
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return

|--------Scary Caves-------------------------------|
Sub Event_Task7
        /doevents flush
        /zone karnor
        /call Zoner
        /warp loc -48.92 -277.16 2.19
        /Delay 2s
        /zone dreadlands
        /call Zoner
        /warp loc -2514 3498 712
        /Delay 2s
        /zone frontiermtns
        /call Zoner
        /Target npc Shilur
        /Hail
	/delay 1s
  	/call ExpTrack
        /zone dreadlands
        /call Zoner
	/warp loc 806.00 -2040.00 27.00
/return

autotask2.ini
Rich (BB code):
[The Dreadlands]
Dreaded Giants=1
Lands of Dread=1
To the Castle!=1
Lookout Below=1
Giant Expedition=1
Mystic Ring=1
Scary Caves=1
NULL=
 
There a typo in at least the AdvTaskRunner. Two occurances of "/dovevents" should be "/doevents".

That'll get ya running thru the DL tunnel again.

-SimpleMynd
 
Good catch ... fixing them right now ... i dont usually run the runner since I have a caster.

pwaggs said:
There a typo in at least the AdvTaskRunner. Two occurances of "/dovevents" should be "/doevents".

That'll get ya running thru the DL tunnel again.

-SimpleMynd

All fixed ... enjoy ...
 
i just tried this in fairy form, lvl 65, but when i started it it just kept warping to the spot that i started it in and kept saying the task message, then i made myself warp to the taskmaster, then it just cept declining all the tasks. any idea?
 
Probably because of the task settings in your Autotask or Advtask.ini's. And then theres something off in your code that ought to be real easy to see about the warping issue.
 
hmm, i dunno. i am using it right out of the box, nothing changed. and the warp issue im not sure on, its being gay, i dont know why itkeeps warping me back to the place where is started the mac rathe than warping to target which is the taskmaster it targets.
 
It is a dead give way if you /warp target. So it is designed to warp you to the spot that you started the macro.

I first dev'd this macro back in july/august, so its been around for awhile, and GM's were watching it until the MM became the next big deal. Be careful running the AdvTaskWarp.mac.
 
is it possible for a level 52 to shroud to 65 and benefit from the repeatable tasks at that level, or shroud only works if you are above a level ?
 
nope. You can only shroud down. Not up. If you are level 52 the max you can shroud is 50.
 
with the run of "runner" version of Aatyami, I got the message saying "Flow ran into another subroutine" and then echoed line 17 and 27 and ended.

I downloaded from the first page and think it's the newest one.

Thanks for your help in advance !
 
leo802 said:
with the run of "runner" version of Aatyami, I got the message saying "Flow ran into another subroutine" and then echoed line 17 and 27 and ended.

I downloaded from the first page and think it's the newest one.

Thanks for your help in advance !

That's usually caused by a missing "/return" somewhere. Make sure all Sub definitions have a matching /return at the end somewhere.

-CodeCaster
 
comment out line 26: /call ReleaseNotes

I need to move the release notes function ... will have an update out with a possible new version also ...
 
I wasn't planning on posting this, but at this point if people are still using this, I guess why not...this is just a simple variation on the warp version of taskmaster but with pre-61 tasks added. Basically you could start this at whatever level you can get the tasks like "to the castle" (somewhere in the 50s maybe?) and run it til 66 non-stop.

So how do I make this code? Do I need to write it in the plugin thing or what? lol
 
kk - so i have unzipped my files into my MQ2 compile folder, so now i should just click on the MQ before patching eq and then sit afk and see the exp fly?
 
no ..

go to the guides section and read the Quick reference for getting started

army
 
I'm lvl 70, is that alrighty with exp?

How much exp do u get per minute/hour?

I've downloaded the package and copied the files into my macro file and opened the files and did SAVE AS and then wrote .mac after the task name (ex: advtaskrunner.mac) and then I did /mac advtaskrunner in game and said something about Flow wasn't good cuz of subroutine or something like that. Which macro is the AA afk taskmaster thing btw? Taskrunner? Taskwarp?
 
if you are lvl 70, you can not do the tasks set in this macro unless you shroud down to max lvl 66, which means 65 in shroud. The tasks that are included in this unelss they have been changed or you change them, are for 62-66.
 
AFK Taskmaster
Status
Not open for further replies.

Users who are viewing this thread

Back
Top
Cart