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

Question - Summon items utility? (1 Viewer)

Joined
Sep 25, 2021
RedCents
35¢
I know there must be a simple plugin/Lua/macro to summon continuously items with an enchanter for trade skills. For the life of me I'm not finding it.... a little help :)
 
There is the 2 macro i use for enchant million of items or bar :
INI:
|
| File name : Enchant.mac
| Command : /mac Enchant
| Load Enchanting spell on Gem 13 (Line 20)
| Check casting time of your spell and add 2 or 3 seconds.
|       Line 21 => "/delay 18s"
|

#event OutOfStuff "You are missing some required components."
#include spell_routines.inc

Sub Main
:Loop
  /doevents
  :ClearCursor
   /if (${Cursor.ID}) {
   /autoinventory
  /goto :ClearCursor
  }
  /cast 13
  /delay 9,6s
 /goto :Loop

Sub Event_OutOfStuff
/endmacro
/return
INI:
| Command : /mac Enchant2
| Load Enchanting spell on Gem 1

#event outofitems "You are missing#*#"

Sub Main
    /declare SpellDelay int outer
    /varset SpellDelay ${Math.Calc[${Int[${Math.Calc[${Me.Gem[1].MyCastTime} / 1000]}]} + 2]}
    :mainloop
    
    /doevents
    /if (${Me.CurrentMana} < ${Me.Gem[1].Mana}) /call med
    /cast 1
    /delay ${SpellDelay}s
    /if (${Cursor.ID}) /autoinv
    /delay 1s
    /goto :mainloop
/return

Sub Event_outofitems
    /bc Ending Macro .... ${Me.Name}
    /endm
/return

Sub med
    /if (!${Me.Sitting}) /sit on
    :medloop
    /if (${Me.PctMana} < 100) /goto :medloop
    
/return

${Math.Calc[${Int[${Math.Calc[${Me.Gem[1].MyCastTime} / 1000]}]} + 3]}

${Me.Gem[1].Mana}
 

Attachments

  • Enchant.mac
    494 bytes · Views: 3
  • Enchant2.mac
    730 bytes · Views: 1
Question - Summon items utility?

Users who are viewing this thread

Back
Top