armysoldier
Well-known member
- Joined
- Jun 26, 2005
- RedCents
- 101¢
So many of us have multiple accounts...
OR we buy or aquire an account.. and only for one of the toons on there...
WELL I too had such a dilema...
so i created the SAC.MAC and SacEE.MAC
SPECIAL NOTE.. Cast SAC the first time.. and move corpse away from the bind spot
SAC is the code for the necro .. who will sit there waiting for the toon to tell him to sac em. Cast sac.. autoinventory EE.. and wait... will med when OOM
SacEE is the toon being saced.... you can set what level you want the toon to go to ..
toon will accept sac.. pop at bind.. and loot the empty corpse.. and send tell for next sac
Example:
maybe you only wanna sac that lvl 70 too to 47 ... so they can still grp with your lvl 70 bard.. and get levels back ..
and do it again /chuckle
right now i have it set to 47 .. change that in SacEE to whatever level you want
ENJOY!!
SPECIAL NOTE.. Cast SAC the first time.. and move corpse away from the bind spot
SacEE.mac
OR we buy or aquire an account.. and only for one of the toons on there...
WELL I too had such a dilema...
so i created the SAC.MAC and SacEE.MAC
SPECIAL NOTE.. Cast SAC the first time.. and move corpse away from the bind spot
SAC is the code for the necro .. who will sit there waiting for the toon to tell him to sac em. Cast sac.. autoinventory EE.. and wait... will med when OOM
SacEE is the toon being saced.... you can set what level you want the toon to go to ..
toon will accept sac.. pop at bind.. and loot the empty corpse.. and send tell for next sac
Example:
maybe you only wanna sac that lvl 70 too to 47 ... so they can still grp with your lvl 70 bard.. and get levels back ..
and do it again /chuckle
right now i have it set to 47 .. change that in SacEE to whatever level you want
ENJOY!!
SPECIAL NOTE.. Cast SAC the first time.. and move corpse away from the bind spot
Rich (BB code):
|--- Macro Sac.mac
|--- Written by Armysoldier
|--- for REDGUIDES!!!
|---
|--- This is for the necro who is casting SAC
|--- Cast the first time manually and move FULL corpse well out of the way
|---
|--- usage /mac SAC
|---
|--- WARNING Do not leave this un attened unless you plan to take the other toon to lowest possible level
|---
#include spell_routines.inc
#turbo
#Event Zoned "#*#You have entered#*#"
#Event Mana "#*#Insufficient Mana#*#"
#Event Sac "#*#Sac Meh Pls#*#
#Event End "#*#not a worth sacrifice#*#"
#Event End "#*#sacrifice refuses#*#"
|--- Set SAC Spell to GEM 1
|---
|---
Sub Main
:begin
/delay 5s
/autoinventory
/doevents
/autoinventory
/goto :begin
/return
Sub Event_Zoned
/echo died .. time to go
/twist off
/circle off
/delay 5s
/sit on
/camp desk
/endmac
/return
Sub Event_Mana
/sit on
:loop
/delay 15S
/echo checking my mana
/if ( ${Me.PctMana}==100 ) /return
/goto :loop
:endloop
/return
Sub Event_Sac
/rt
/delay 2s
/call cast "${Me.Gem[1]}" gem1
/delay 2s
/call cast "${Me.Gem[1]}" gem1
/return
Sub Event_End
/echo Toons has been fully Saced
/sit
/camp desktop
/end
/return
SacEE.mac
Rich (BB code):
|--- Macro SacEE.mac
|--- Written by Armysoldier
|--- for REDGUIDES!!!
|---
|--- This is for the Toon who is getting SACed
|--- Cast the first time manually and move FULL corpse well out of the way
|---
|--- usage /mac SACEE <Necro>
|---
|--- WARNING Do not leave this un attened unless you plan to take the toon to lowest possible level
|---
#turbo
#Event Zoned "#*#You have entered#*#"
#Event End "#*#You are now level 47!"
Sub Main
/deletevar Master
/declare Master string Global
/varset Master ${Param0}
:begin
/delay 5s
/doevents
:WaitForSac
/delay 3s
/if (!${Window[ConfirmationDialogBox].Open}) /goto :WaitForSac
/delay 1s
/notify ConfirmationDialogBox Yes_Button leftmouseup
/delay 20s
/goto :begin
/return
Sub Event_Zoned
/echo Another SAC down .. Loot corpse and move on
/target ${Me}
/loot
/delay 1s
/keypress esc
/delay 1s
/keypress esc
/delay 5s
/tell ${Master} Sac Meh Pls
/return
Sub Event_End
/Echo Required level has been reached
/g This sacrifice refuses to play anymore.. bye bye
/sit
/camp desktop
/end
/return


