• 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

a simple macro

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
 
Wondering what Im doing wrong here......

/doevents

Sub Main

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

/return

- - - Updated - - -

Sorry never made anything from scratch
 
So this?


/doevents

Sub Main

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

/return

- - - Updated - - -

Still not working, anyone got any other advice?
 
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
Cart