• 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

Med whilst mobs out of range

Geekylad

New member
Joined
Feb 7, 2013
RedCents
Evening

Can anyone point me into the right direction... I'd like my pullertank to med for END whilst waiting for mobs in range. I don't think I can do it at ini level so can anyone give me some tips? Am using Kissassist.

Many thanks
 
The current version of KA does not have the ability to med when waiting for respawns. If you know how to mod the code I could post the code you would need to change.
 
Just replace your PullDelay routine with this:

Rich (BB code):
    Sub PullDelay(int TimerAmount)
        /if (${DebugPull}) /echo PullDelay ${TimerAmount} Enter \agLine#: ${Macro.CurLine}
        /declare PDTimer timer local ${TimerAmount}s
        /varset Pulling 0
        |:WaitForTimer
        /if (${MedOn} && !${Me.Mount.ID}) /sit 
        /while (${PDTimer} && !${AggroTargetID}) {
            /doevents
            /delay 2
        }
        /if (${Me.Sitting}) /stand
        /call CheckForCombat 1 PullDelay
        |/if (${PDTimer}) /goto :WaitForTimer
        /if (${DebugPull}) /echo PullDelay Leave \agLine#: ${Macro.CurLine}
    /return


You will need to have MedOn=1, in your ini file, but this should sit you down while waiting for the timer to run out or you get agro. I haven't tested as of yet either, so could have an error, but it looks clean and should work.
 
Med whilst mobs out of range

Users who are viewing this thread

Back
Top
Cart