- Joined
- Jul 15, 2015
- RedCents
- 2,061¢
Simple Enchant Macro - Simple little macro, to enchant whatever.
Read more about this resource...
Simple little macro, to enchant whatever.
Mem enchant spell you want to use in slot 1
make sure you have the items your wanting to enchant/create
run macro /mac enchant
Will keep casting until you run out of items, and will med when you are low on mana
| File name : simpleenchant.mac
| Command : /mac SimpleEnchant
| Load Enchanting spell on Gem 1
Read more about this resource...
Simple little macro, to enchant whatever.
Mem enchant spell you want to use in slot 1
make sure you have the items your wanting to enchant/create
run macro /mac enchant
Will keep casting until you run out of items, and will med when you are low on mana
Code:
| File name : SimpleEnchant.mac
| Command : /mac SimpleEnchant
| 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

