• 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

mass enchant with aa

Joined
Jun 9, 2008
RedCents
355¢
i edited with some help for the old enchant macro to use alt ability to do conflagrant platinum this uses the single but the 10x one can be used by changing the alt aa code
INI:
|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
}
/alt act 3220
/delay 12s
/goto :Loop

 
Sub Event_OutOfStuff
/endmacro
/return
 
I have used this very Crude macro for anything from loop casting See invis all night while I slept, to loop casting mass enchant clay, to loop casting AE Mezz for the Mercenary of Tempest Temple - Bigger Fish event.
There are no checks for mana (if insufficient mana it just wont cast) or materials (if I run out of clay I wake up to "missing some . . . ." spam
It simply keeps casting spell gem 7 over and over.

[CODE lang="ini" title="Casting.mac"]
|*******************************************************************|
| - Casting.mac - *|
|*******************************************************************|
#turbo
| -------------------------------------------------------------------
| SUB: Main
| -------------------------------------------------------------------
Sub Main
/cleanup
:Divination
/cast 7
/delay 5
/autoinv
/delay 65
/goto :Divination
/return
[/CODE]
 
He's a fuller version. Handles running out of mana and such for bigger summons.


INI:
#warning
#event OuttaStuff  "#*#You are missing some required components#*#"
#define /banner "/echo \ag[\amSpell Combine\ag]\ay"
Sub Main
/declare scSpell      string    local
/declare scItem     string    local
/if (${Macro.Params} != 1) {
    /banner Syntax: /macro spellcombine.mac "Spell Name"
    /banner Example: /macro spellcombine.mac "Mass Thicken Mana"
    /endmacro
    }
/if (${Defined[Param0]}) {
        /varset scSpell ${Param0}
    }
:Loop
/doevents
/if (${Cursor.ID}) {
    /autoinventory
}
/if (${Me.PctMana} > 15) {
    /if (${Me.SpellReady[${scSpell}]}) {
        /cast "${scSpell}"
    }
} else {
        /if (!${Me.Sitting}) {
            /banner Need mana. Resting.
            /sit on
        }
}
/goto :Loop
/return

Sub Event_OuttaStuff
    /banner Out of one or more combine items.
    /endmacro
/return

Didn't think about adding AA combines to it but will do in a moment then update the resource.
 

Attachments

The modern enchant abilities, when you scribe them, give you an AA to do it instead of a spell in your spellbook. You can see all the possible AA enchant abilities in your AA tab. It varies by class.
 
Has this been updated? Looking to enchant Celestial, Conflagrant and Refined Velium in quantity. Any help is appreciated. Tried running it with the appropriate AA name, but will not work. Thanks
 
Did you change the alt act to the one you were needing to use?

/alt act 3220

If you go into your aa's and select the one you want to cast, the first line will have Ability Activation ID: and a number. Just need to change to the correct number and it should work. That's what I do when I use my chanter.
 
mass enchant with aa

Users who are viewing this thread

Back
Top
Cart