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

Code Help (1 Viewer)

Jumjum5

New member
Joined
Dec 18, 2004
RedCents
20¢
Ok I have found out that playing selos while kiting in FH is bad for my bard since it will run him into a wall and he dies :( but having sow on works like a charm. I tried adding this to my druid's healing macro but it didn't work

Rich (BB code):
#Event Sow "#*#Your Spirit of Wolf spell has worn off of Bard#*#"

Rich (BB code):
sub event_sow
/target Bard
/cast 2
/cast 2
/cast 2
/return

If you need me to post the whole macro so yall can take a look at it so it will work I will :p
It would be better if I could make it so it will cast sow every 25min so it never goes off my bard and he doesn't get owned.
 
To use a timer insert the following code in the appropriate places in your macro.

Rich (BB code):
| This goes into the main sub at the top but outside of your main loop.  It only needs to be declared once.
/declare sowtimer timer outer

|This goes into your main loop.
/if (!${sowtimer}) {
  /target bard
| You should consider using spell_routines.inc to prevent fizzles
  /cast 2
  /cast 2
  /cast 2
  /varset sowtimer 20m
  }
 
Code Help

Users who are viewing this thread

Back
Top