• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Shammy buff heal mac, varset questions for spells. (1 Viewer)

nijhal

Member
Joined
Feb 22, 2006
RedCents
10¢
I am writing my own shammy macro, for buffing and stuff in the background. What I am concerned with is what I have highlighted in red if it will work for my varsets. I know this macro wont run right now cause I just started it, but I want to be sure on event handling.

Rich (BB code):
#event Haste "Your ${Haste} spell has worn off of #*#
#event HPBuff "Your ${HPBuff} spell has worn off of #*#


Sub Main
  /declare StartZone           int outer ${Zone.ID}
  /declare HPBuff              int outer Harnessing of Spirit
  /declare Haste               int outer Alacrity
  /declare HoT                 int outer Torpor
  /declare Heal                int outer Yoppa's Mending

Sub event_Haste
  /target player1
  /delay 1
  /cast ${Haste}
/return

Sub event_HPBuff
  /target Player1
  /delay 1
  /cast ${HPBuff}
/return

Anyone help me on this and tell me if I did it right?

N
 
I've found calling ${ } variables doesn't seem to work for me in #events. Every time I see a macro try to do it, I see vertical bars around it... haven't been able to figure out if that actually makes em work or if that is just like a #*#, but I know it sure doesn't without em.

Also your declares need to be string instead of int if it's text... int is only numbers... and only whole numbers. And put " around ${Haste} so that it will work with the spaces.
 
Shammy buff heal mac, varset questions for spells.

Users who are viewing this thread

Back
Top