nyghteyes
What is a macro??
- Joined
- Mar 21, 2006
- RedCents
- 1,347¢
Found I needed this again so I ripped this again to make it more efficient.
Rich (BB code):
|Just have potions in the 2nd potion belt slot or change the slot number on the 2 lines.
|If you become visible from an attack you will not re-invis by design to avoid
|eating 100 pots in a few seconds
#turbo
#event checkinvis "#*#You feel yourself starting to appear#*#"
#event end "#*#Auto attack#*#"
#event end "#*#hits YOU for#*#"
#event end "#*#slashes YOU for#*#"
#event end "#*#crushes YOU for#*#"
#event end "#*#bashes YOU for#*#"
#event end "#*#kicks YOU for#*#"
#event end "#*#smashes YOU for#*#"
#event end "#*#mauls YOU for#*#"
#event end "#*#gores YOU for#*#"
#event end "#*#pierces YOU for#*#"
#event end "#*#kicks YOU for#*#"
#event end "#*#bashes YOU for#*#"
Sub Main
/echo Staying invis with Potions
/popup Staying invis with Potions
:mainloop
/doevents
/call invis
/doevents
/call noinvis
/doevents
/goto :mainloop
/return
Sub invis
/if (!${Me.Buff["Invisibility"].ID} && !${Me.Casting.ID} && !${Melee.Combat}) {
/potionbelt Activate 2
/echo Using a Potion
/popup Using a Potion
}
/delay 1s
/return
Sub event_checkinvis
/if (!${Me.Buff["Invisibility"].ID} && !${Me.Casting.ID} && !${Melee.Combat}) {
/potionbelt Activate 2
/echo Using a Potion
/popup Using a Potion
}
/delay 1s
/return
Sub noinvis
/if (${Me.Casting.ID} || ${Melee.Combat}) /call End
/return
Sub End
/echo No longer Staying Invisible
/popup No longer Staying Invisible
/end
/return
Sub event_end
/echo No longer Staying Invisible
/popup You've Been HIT! No Longer Staying Invisible
/end
/return

