• 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

Sollix's Short and sweet mini rogue-helper.mac (1 Viewer)

  • Thread starter Thread starter Ccomp5950
  • Start date Start date
C

Ccomp5950

Request Source: http://forums.notaddicted.com/showpost.php?p=171778&postcount=7

Make sure "Evade" is in your actions window under one of your combat abilities, it's how MQ2 knows that the ability is ready, I put in a 10 second delay before it tries again to hit evade again. This is only going to use Evade, the way you worded your request it seemed like you had an evade "hotkey" if that is the case (IE: It does other things besides just evade, like say something to the group) you can change /doability "evade" into "/keypress #" with the # being the hotkey number.

Have fun!

Code:
#Event OhSHI       "#1#YOU for#*#points of damage."
#Event OhSHI       "#1#to#*#YOU, but #*#" 

Sub Main
/declare EvadeTimer int timer 0

:BIGLOOP
/delay 1
/doevents
/goto :BIGLOOP

/return

Sub OhSHI
/if (!${EvadeTimer}) {
	/if (${Me.AbilityReady["Hide"]}) {
                /if (Me.Combat}) /attack off
		/doability "Hide"
		/varset EvadeTimer 10s	
                /attack on
}
/return
/doevents flush
 
Last edited:
i have an evade hotkey, but it's not 'technically' an ability. to use evade you just have to turn attack off and hit 'hide' which is on a 10 sec delay. thanks for the code! do i need to change anything else around to make it click hide and look for the hide timer?
 
yeah let me fix that.

Fixed.

If you want to use the hotkey you already have setup and it doesn't mess with autoattack in the hotkey just switch out /doability "Hide" with /keypress # like I said above.

If your hotkey messes with autoattack it's probably better if you just removed that part from your hotkey but if you don't want to do that just remove the /if (${Me.Combat}) /attack off part.

make sense?
 
awesome - this will be so useful! thanks a lot :)

already red cent'ed you today.. more tomorrow!
 
Sollix's Short and sweet mini rogue-helper.mac

Users who are viewing this thread

Back
Top
Cart