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

Looking for macro (1 Viewer)

vegeta47303

New member
Joined
Sep 13, 2006
RedCents
I am looking for a macro if someone has a little bit of time to make I am looking for one that will level my spell skills that will see when i am Low on mana and med and also see when i fizzle and cast again Thank you if someone could help
 
same as other post

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 - 
|--- I like PoK .. you don't take damage from casting nukes on yourself

#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
 
Looking for macro

Users who are viewing this thread

Back
Top