Simple Rez Macro
Posted: Sat Nov 13, 2004 7:15 pm
This was built because I'm lazy and hate swapping my epic out of my bag when I need to rez someone, either in a group or on a raid. It's really simple, but efficient.
Written from scratch:
Written from scratch:
Code: Select all
|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|Reztarget.mac
|
|For lazy clerics on raids who do not want to have to
|swap their epic out all the time, this allows them to hit
|a button and do all the work for them.
|
|To run the macro in a group setting, type:
| /mac reztarget 0
|
|To run the macro in a raid setting with added lines of
|text and a different message, type:
| /mac reztarget 1
|
|By a_lazy_cleric_01 (a.k.a. Trexil)
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~**|
#turbo 40
#include spell_routines.inc
Sub Main
/declare raidtoggle int outer 0
/if (${Defined[Param0]}) {
/varset raidtoggle ${Param0}
}
/if (${raidtoggle}==0) {
/popup Rezzing in NON-RAID mode!
/delay 5
/ttell Rez inc ~> 96% ~> Don't die again :)
/delay 10
/call Cast "Water Sprinkler of Nem Ankh" item
/end
}
/if (${raidtoggle}>=1) {
/popup Rezzing in RAID mode!
/delay 5
/3 Rez ~> { %t }
/4 Rez ~> { %t }
/ttell Rez incoming. Be arisen!
/delay 10
/call Cast "Water Sprinkler of Nem Ankh" item
/end
}