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

a simple macro (1 Viewer)

Donnavan2005

New member
Joined
May 30, 2005
RedCents
I am looking for a simple macro that will help my enchanter make vials of viscus mana. So something that will cast the spell and drop the vials into inventory, pause for a bit and cast again. No need to worry about mana, i can get clarity and stand in the pool in the guild hall to do it. Any help would be appreciated!!!
 
Rich (BB code):
#Event End "You are missing"

Sub Main
    :loop
    /call cast "Thicken Mana"
    /delay 2s
    /autoinventory
    /goto :loop
    /return
Sub Event_End
    /echo No more components
    /endmacro
/return

army
 
Just load whatever you want made into Spell Gem 1. It will cast that spell over and over until you run out of components (Works for imbue gems, enchant metals, create mana vials etc).


Rich (BB code):
#event end "#*#You are missing#*#"

Sub Main

:loop 
/doevents
:ClearCursor
/if (${Cursor.ID}) { 
/autoinventory 
/goto :ClearCursor 
} 
/cast 1
/delay 10s
/goto :loop
/return

Sub Event_end
/endmacro 
/return
 
a simple macro

Users who are viewing this thread

Back
Top