Post your completed (working) macros here. Only for macros using MQ2Data syntax!
Moderator: MacroQuest Developers
-
Canadian_Cowgirl
- a bunny
- Posts: 245
- Joined: Sat May 13, 2006 1:43 pm
Post
by Canadian_Cowgirl » Mon Nov 20, 2006 5:02 am
Yes - it's another C_CG is EXACTLY this lazy macro!
Code: Select all
|thickenmana.mac
|Another fine Canadian_Cowgirl is lazy macro!
|
|Change to suit your mount and what spell you want cast.
|
|Have reagants on you. (In this case, Poison Vials and Pearls.)
|5 per cast.
#Include spell_routines.inc
#turbo
Sub Main
:loop
/if (!${Me.Buff[Summon Horse].ID}) {
/call cast "Black Rope Bridle" item
/delay 4s
}
/if (${Cursor.ID}) /autoinventory
/if (${Me.Casting.ID} && ${Me.CurrentMana}<=301) /goto :loop
/if ( ${FindItem[Pearl].ID} && ${Me.FreeInventory} && ${FindItem[Poison Vial].ID && {Me.SpellReady[Mass Thicken Mana]} ) {
/call cast "Mass Thicken Mana"
/delay 10s
}
/goto :loop
Agripa: Isn't there a rule about never getting into a fight with a Canadian when tech support is on the line?
-
Gag
- a lesser mummy

- Posts: 52
- Joined: Fri Sep 03, 2004 5:57 pm
Post
by Gag » Sat Dec 09, 2006 4:38 pm
No Horsie Version auto stops when you run out of anything
Code: Select all
|thickenmana.mac
|Another fine Canadian_Cowgirl is lazy macro!
|
|Change to suit your mount and what spell you want cast.
|
| Edit if (${Me.PctMana} < 20) for desired Med %
| Edit /delay 1m for Desired med time
|
|Have reagants on you. (In this case, Poison Vials and Pearls.)
|5 per cast.
#Include spell_routines.inc
#turbo
#event OutofStuff "#*#You are missing some required components.#*#"
Sub Main
:loop
/if (${Me.PctMana} < 20) {
/if (!${Me.Sitting}) /sit
/delay 1m
}
/if (${Cursor.ID}) /autoinventory
{
/call cast "Mass Thicken Mana"
/doevents
/delay 10s
}
/goto :loop
Sub Event_OutofStuff
/echo out of Something Ending Macro
/endmacro
/return