Code: Select all
|Necro On Command Macro. Made by people with too much time on thier hands, for people with too much time on thier hands.
|Created by Hiidan.
|Use at your own risk. Anyone giving these commands in tells or group will trigger these events.
#Event Snare "#*#tells you, 'Snare'"
#Event Sickpet "#*#tells you, 'Sickpet'"
#Event Makepet "#*#tells you, 'Makepet'"
#Event Dotty "#*#tells you, 'Dotty'"
#Event FD "#*#tells you, 'FD'"
#Event Crip "#*#tells you, 'Crip'"
#Event Manacheck "#*#tells you, 'Mana Check'"
#Event Mindwrack "#*#tells you, 'Mind Wrack'"
#Event Selfbuff "#*#tells you, 'Self Buff'"
#Event Follow "#*#tells you, 'follow'"
#Event EndFollow "#*#tells you, 'endfollow'"
#Event Snare "#*#tells the group, 'Snare'"
#Event Sickpet "#*#tells the group, 'Sickpet'"
#Event Makepet "#*#tells the group, 'Makepet'"
#Event Dotty "#*#tells the group, 'Dotty'"
#Event FD "#*#tells the group, 'FD'"
#Event Crip "#*#tells the group, 'Crip'"
#Event Manacheck "#*#tells the group, 'Mana Check'"
#Event Mindwrack "#*#tells the group, 'Mind Wrack'"
#Event Selfbuff "#*#tells the group, 'Self Buff'"
#Event Follow "#*#tells the group, 'follow'"
#Event EndFollow "#*#tells the group, 'endfollow'"
#Event Enrage "#*#has become ENRAGED#*#"
#Event Enrage "#*#is infuriated!#*#"
#Event Norage "#*#is no longer enraged#*#"
#Include spell_routines.inc
Sub Main
/declare tank string outer whateverthetanksnameis
/echo Necro On Command has started!
:loop
/doevents
/goto :loop
/return
Sub Event_Snare
/assist ${tank}
|or exchange cascading darkness with whatever snare you want
/call cast "Cascading Darkness" gem1
/return
Sub Event_Sickpet
/assist ${tank}
/pet attack
/return
Sub Event_Makepet
/call cast "Servant of Bones" gem6
|Can change Servant of Bones to whatever pet you use, edit out the next line if you dont have ornate pants
/call cast "Vorshar's Pants of the Blight" item
/return
Sub Event_Dotty
/assist ${tank}
/call Cast "Splurt" gem3
/call cast "Pyrocuror" gem2
/return
Sub Event_FD
/call cast "Feign Death" gem8
/return
Sub Event_Crip
/assist ${tank}
/call cast "Crippling Claudication" gem2
/return
Sub Event_ManaCheck
/r Necro mana is currently ${Me.PctMana}%
/return
Sub Event_Mindwrack
/assist ${tank}
/call cast "Mind Wrack" gem6
/return
Sub Event_Selfbuff
/target self
/call cast "Demi Lich" gem7
/call cast "Shield of the Magi"gem7
/return
Sub Event_follow
/target ${tank}
/follow
/return
Sub Event_endfollow
/keypress back
/return
Sub Event_Enrage
/pet follow
/pet back off
/return
Sub Event_Norage
/assist ${tank}
/pet attack
/return

