• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver
Enchant Material Mac

Release Enchant Material Mac 1.0

No permission to download

wackawacka

Active member
Joined
Jun 18, 2006
RedCents
972¢
I got tired of casting the same spell over and over and inventorying my stuff. So here is a macro that will cast spell in gem slot 1 and then auto inventory the item. I use this to enchant metal or Purified Mana for crafting stuff. If you run out of stuff to enchant it will end.

Rich (BB code):
|Enchant Macro

#event OutOfStuff "You are missing some required components." 
#include spell_routines.inc
  
Sub Main 
:Loop 
/doevents
:ClearCursor 
/if (${Cursor.ID}) { 
/autoinventory 
/goto :ClearCursor 
} 
/cast 1
/delay 12s
/goto :Loop 

 
Sub Event_OutOfStuff 
/endmacro 
/return
 
Last edited:
Updated to auto med so if you are on Progression you can use this.

Rich (BB code):
|Enchant Macro
|Updated 7/22/2015 to Include Medup 
|Please change /Delay in Main Sub to the correct time for the enchant spell you are using.
|Please set /cast to correct spell gem in Main Sub

#Event OutOfStuff "You are missing some required components."
#Event MedUp "Insufficient Mana to cast this spell!#*#" 
#include spell_routines.inc

  
Sub Main 
:Loop 
/doevents
:ClearCursor 
/if (${Cursor.ID}) { 
/autoinventory 
/goto :ClearCursor 
} 
/cast 1
/delay 12s
/goto :Loop 

Sub Event_MedUp
    /echo Out of mana medding up.
    /if (!${Me.Mount.ID} && !${Me.Sitting}) /sit
    :med
        /delay 10
    /if (${Me.PctMana}<100) /goto :med
    /if (!${Me.Mount.ID} && ${Me.Sitting}) /stand
/return
 
Sub Event_OutOfStuff 
/endmacro
/return

I haven't tested this so if you have any problems please let me know.

Thanks!
 
Last edited:
The macro never ends for me.

I wrote my own initially and thought I must be missing something, because mine would not end, so I looked them up here, and when I run out of mats, it keeps casting, doesn't end as well.

Whats up with that?

The syntax is correct as well....
 
Last edited:
Your events aren't firing.
Rich (BB code):
Sub Main 
:Loop 
:ClearCursor
Rich (BB code):
Sub Main 
:Loop 
/doevents
:ClearCursor
 
How do I even start the macro? Can't find commands anywhere.
the macro is "enchant.mac" so you would /mac enchant

keep in mind this is an unsupported macro from 2012 an no one has posted in here in 7 years.

there are many newer resources that are updated and function that do this same > like this one <
 
Release Enchant Material Mac

Users who are viewing this thread

Back
Top
Cart