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

what am i doing wrong (1 Viewer)

Rich (BB code):
 Sub Main
 :Loop
 /keypress 4
 /delay 5s
 /keypress 5
 /delay 5s
 /keypress 6
 /delay 5s
 /keypress 7
 /delay 5s
 /keypress 8
 /delay 5s
 /goto :Loop
 /return
 
this is my cast skills macro .. that i am using this very second .. and works fine

it sits when OOM

and uses spells gems 1 - 5

Rich (BB code):
|--- Macro Castskills.mac
|--- Written by Armysoldier 
|--- for REDGUIDES!!!
|--- 
|--- Work your casting skills while AFK
|--- or while on the toon being PLed
|---
|--- usage /mac Castskills
|--- Park yourself in a safe place - 

#include spell_routines.inc
#turbo

#Event Zoned "#*#You have entered#*#"
#Event Mana "#*#Insufficient Mana#*#"
#event Miss "#*#You are missing some required#*#


|--- Set for spells to be in slots 1 -5
|--- one spell for each ability you want to work
|--- Ensure you save the spell set as CS or edit line 13 to your spellset name
Sub Main

/echo puter 2 ST
	:begin
 	/call cast "${Me.Gem[1]}" gem1
/delay 2
        /autoinventory
        /doevents
        /delay 2s
 	/call cast "${Me.Gem[2]}" gem2
/delay 2
        /autoinventory
        /doevents
        /delay 2s
 	/call cast "${Me.Gem[3]}" gem3
/delay 2
        /autoinventory
        /doevents
        /delay 2s
 	/call cast "${Me.Gem[4]}" gem4
/delay 2
        /autoinventory
        /doevents
        /delay 2s
 	/call cast "${Me.Gem[5]}" gem5
/delay 2
        /autoinventory
        /doevents
        /delay 2s
	/goto :begin

/return


Sub Event_Zoned 
       /echo died or instanced ended.. time to go 
       /twist off  
       /circle off  
       /delay 5s  
       /sit on
       /camp desk  
       /endmac 
/return

Sub Event_Mana
       	/sit on
       	:loop
	/delay 15S
       	/echo checking my mana 
       	/if ( ${Me.PctMana}==100 ) /return
     	/goto :loop
:endloop
/return

Sub Event_Miss
      /delay 15s
      /sit
      /camp desk
      /end
/return
 
what am i doing wrong

Users who are viewing this thread

Back
Top