darkeros
Member
- Joined
- Sep 12, 2004
- RedCents
- 35¢
This mac snares on command and buffs when buffs fall. It watches for HP and heals when it goes below the set percentage. Nothing special, but I couldn't find this elsewhere, so thought I'd share.
Rich (BB code):
#include spell_routines.inc
#Event Snare "#*#Assist#*#"
#Event DS "#*#Shield of Brambles spell has worn off#*#"
#Event Regen "#*#Regeneration spell has worn off#*#"
Sub Main
:loopstart
/target PLAYER_CHAR
/if (${Target.PctHPs}<=50) {
/call cast "Healing" gem5 1s
/sit
}
/doevents
/goto :loopstart
/return
Sub Event_Snare
/target PLAYER_CHAR
/assist PLAYER_CHAR
/delay 1s
/call cast "Ensnare" gem1 1s
/sit
/return
Sub Event_DS
/target PLAYER_CHAR
/call cast "Shield of Brambles" gem7 1s
/sit
/return
Sub Event_Regen
/target PLAYER_CHAR
/call cast "Regeneration" gem8 1s
/sit
/return

