Code: Select all
#chat tell
#include spell_routines.inc
#event Slowdown "#*#Your feet slow down#*#"
sub main
/echo Enc Mac started
:mainloop
/doevents
/goto :mainloop
/return
sub Follow
:follow
/if (${Target.Distance}>30) /keypress up hold
/if (${Target.Distance}<20) /keypress up
/face fast
/delay 2
/if (${Target.ID}) /goto :follow
/return
Sub Event_Chat(ChatType,Sender,ChatText)
/if (${ChatText.Equal[slow]}) {
/assist ${Sender}
/delay 1s
/g slowing %t ..
/delay 1s
/call cast "Forlorn Deeds"
}
/if (${ChatText.Equal[follow]}) /goto :follow
/if (${ChatText.Equal[nuke]}) {
/assist ${Sender}
/delay 1s
/g Nuking %t ..
/call cast "Insanity"
}
/if (${ChatText.Equal[mana]}) {
/tell ${Sender} mana = ${Me.PctMana}%..
}
/if (${ChatText.Equal[mezz]}) {
/assist ${Sender}
/delay 1s
/g Atempting to Mezz %t ..
/call cast "Bliss"
/tell ${Sender} mana = ${Me.PctMana}%..
}
/if (${ChatText.Equal[Aemezz]}) {
/assist ${Sender}
/delay 1s
/g Mezzing Area ..
/call cast "Word of morell"
/tell ${Sender} mana = ${Me.PctMana}%..
}
/if (${ChatText.Equal[kill]}) {
/assist ${Sender}
/delay 1s
/g Assisting on %t ..
/pet attack
/delay 1s
/call cast "Forlorn Deeds"
/tell ${Sender} mana = ${Me.PctMana}%..
}
/if (${ChatText.Equal[Tash]}) {
/assist ${Sender}
/delay 1s
/g Attempting to Tash %t ..
/delay 1s
/call cast "Howl of Tashan"
/tell ${Sender} mana = ${Me.PctMana}%..
}
/return
sub event_slowdown
/cast item "Journeyman's Boots"
/delay 4s
/Return

