• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Need some help on a clicky problem

Zero0003

New member
Joined
Nov 16, 2005
RedCents
262¢
i'm using a simple bard script but nothing to advanced. This is what i got

#chat group
#chat tell
#include spellcast.inc
#include irc.inc
#Event Invited "#*#To join the group, click on the 'FOLLOW' option, or 'DISBAND' to cancel#*#"

#Event Snared "#*#has been ensnared#*#"
#Event IRC "<#1#> <#2#>"

sub main

/echo BUFFRES

:loop
/doevents

/twist stop
/if (${Me.Buff[Resonance].ID}) /call cast "Voice of the Serpent" item 1s
/if (${Me.Buff[Symphony of Battle].ID}) /call cast "Rapier of Somber Notes"
/twist

/doevents
/goto :loop

The problem i'm having is that it keeps casting those 2 clickies over and over it just see that I have the buff up atm.
 
/if (!${Me.Buff[Resonance].ID}) /call cast "Voice of the Serpent" item 1s
/if (!${Me.Buff[Symphony of Battle].ID}) /call cast "Rapier of Somber Notes"
 
Yeah those 2 lines it is what that keep casting.. I just want it to Cast it when I start macro, and then keep it up if it ever fades it would recast it.
 
Have to add in the "!", without it you're saying "If me buff = Symphony of Battle cast Tacvi weap".

Rich (BB code):
/if (!${Me.Buff[Symphony of Battle].ID}) /call cast "Rapier of Somber Notes"
not
Rich (BB code):
/if (${Me.Buff[Symphony of Battle].ID}) /call cast "Rapier of Somber Notes"
 
Need some help on a clicky problem

Users who are viewing this thread

Back
Top
Cart