• 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 --->

quick question (1 Viewer)

Donnavan2005

New member
Joined
May 30, 2005
RedCents
I have seen the following code, and am wondering exactly how to use it in regards to casting Virtue on my cleric and tank while AFK.

/declare healTimer timer outer

What I am wondering is this, I have seen variables declared as int and string, but not as a timer, and am not sure how to use it.
 
Something like that would work. Change the 180m to whatever duration of virtue you have, and change /delay's as need for lag/cast timer I pulled 10s outta my ass.

Rich (BB code):
Sub main
/declare VirtueTimer timer
/varset VirtueTimer 180m
:loop
/if (${VirtueTimer}<=0) /call VirtueTimerEvent
/goto loop

Sub VirtueTimerEvent
/memspell "virtue" 8
/delay 5s
/target yourname
/call cast "virtue"
/delay 10s
/target warriorname
/call cast "virtue"
/delay 10s
/varset VirtueTimer 180m
/return
 
quick question

Users who are viewing this thread

Back
Top