HardOne
Member
- Joined
- Jan 15, 2006
- RedCents
- 61¢
I was digging thru my old files when I came across this file I made when we were doing MPG trials. This will call out in Raid say which Direction to run, and will also give you a popup to remind you to move.
This was written before I knew a lot about macro's and dosent includ any automation
RaidSpammer.inc
This was written before I knew a lot about macro's and dosent includ any automation
RaidSpammer.inc
Rich (BB code):
|RaidSpammer.inc Written by HardOne. Feb 03, 2006
|This Section will say in Raid Say, where to move for Emotes in MPG Raid - Trial of Foresight (Projection of Tactics)
|Edit - July, 11 2006 - Added /face heading command to turn you in the direction you need to run. (Thanks Sym)
#Event RoomSafe "#*#The room explodes with chaotic energy.#*#"
Sub Event_RoomSafe
/rs The Room is Safe....For Now.
/popup The Room is Safe....For Now.
/return
#Event MoveWest "#*#The room begins to heat up dramatically. The west side looks safe.#*#"
Sub Event_MoveWest
/face heading 270
/rs MOVE WEST NOW!!
/popup MOVE WEST NOW!!
/return
#Event MoveEast "#*#The room begins to heat up dramatically. The east side looks safe.#*#"
Sub Event_MoveEast
/face heading 90
/rs MOVE EAST NOW!!
/popup MOVE EAST NOW!!
/return
#Event MoveNorth "#*#The room begins to heat up dramatically. The north side looks safe.#*#"
Sub Event_MoveNorth
/face heading 0
/rs MOVE NORTH NOW!!
/popup MOVE NORTH NOW!!
/return
#Event MoveSouth "#*#The room begins to heat up dramatically. The south side looks safe.#*#"
Sub Event_MoveSouth
/face heading 180
/rs MOVE SOUTH NOW!!
/popup MOVE SOUTH NOW!!
/return
#Event MoveCenter "#*#The room begins to heat up dramatically. The center looks safe.#*#"
Sub Event_MoveCenter
/rs MOVE TO THE CENTER NOW!!
/popup MOVE TO THE CENTER NOW!!
/return
Last edited:

