Vendor Gating Macro

FollowFrosty

Apprentice
Hey guys

I have a macro set up to gate to my vendors, and then blurt out text every 10 seconds.

however, i noticed when someone blocks my gate, i'll continue to just blurt the text every 10 seconds.

does anyone have a snippet of RAZOR code that'll stop me from talking while gate is blocked?

thanks!
 

Snickle

Grandmaster
Go into special constructs- enter if conditional - "if: mana is less then or equal to 88" at the very end of casting gate travel. I put a pause in between the end of casting gate and before the if conditional.
Basically, the macro is reading if you successfully cast gate cause then your mana will be below 88 and the macro can continue.
 

SidX

Grandmaster
You could put a conditional "if" statement into the macro after you select the rune/location to do something like this:

Code:
If ( SysMessage "that location is blocked." )
Pause 10sec
End If

You may need to find the exact text, I don't know for sure if it's "that location is blocked."

Just off the top of my head.. That should pause the macro for however long you specify if there is something blocking the location, then it will loop back and try again.
 
Top