• 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 --->
  • Unfortunately, yes, there is a suspension wave happening around the new tlp launch. :'( Please keep regular discussion to Suspension MegaThread and please consider submitting a Suspension report to RG.

Mage Practice macro (1 Viewer)

cheeky monkey

New member
Joined
Aug 31, 2006
RedCents
I thought I had seen a class specific macro for getting casting skills up for all of the main types (Alteration, Divination, etc) Looking for one for a Mage that uses the lowest level spell in each type. (eg. Spell: Flare -Lev1 -Evocation, ..then Spell: Minor Shielding -Level1- Abjuration....etc)
Is there already somthing like this here?
 
search for castskills.mac

there are several in here

here is some old code... have not used in a a while

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#*#"

|--- 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
        /memspellset CS
        /delay 20s
	:begin
 	/target myself
	/call cast "${Me.Gem[1]}" gem1
        /delay 5s
        /autoinventory
        /doevents
        /call cast "${Me.Gem[2]}" gem2
        /delay 5s
        /autoinventory
        /doevents
        /call cast "${Me.Gem[3]}" gem3
        /delay 5s
        /autoinventory
        /doevents
        /call cast "${Me.Gem[4]}" gem4
        /delay 5s
        /autoinventory
        /doevents
        /call cast "${Me.Gem[5]}" gem5
        /delay 5s
        /autoinventory
        /doevents
	/goto :begin

/return


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

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

army
 
Not working as of today. I had to recopy the text above and recreated a .mac for version 6.1, but it will not load.
error message is:
Couldnt open include file c:documents\redquestv6.1\macros\spell_routines.inc
Unable to add macro line

By the way....this rules. Thank you Army for the file. I made good use of it over the last 5 months. Hope someone can shed some light on it again.
 
Last edited:
Mage Practice macro

Users who are viewing this thread

Back
Top