hi anyone got a simple foraging macro for a druid. don't want or need any of the aa abilities included. I just want a macro that I can run to leave foraging to get my skill up and inventory all or most of the stuff.
Thanks Reaver
Moderator: MacroQuest Developers

Code: Select all
sub Main
/sit off
:MainLoop
/if (${String[${Cursor}].NotEqual[Null]}) /autoinv
/if (${String[${Cursor}].NotEqual[Null]}) /goto :CursorLoop
/if (${Me.AbilityReady["Forage"]}) /doability "Forage"
:CursorLoop
/if (${String[${Cursor}].NotEqual[Null]}) /autoinv
/if (${String[${Cursor}].NotEqual[Null]}) /goto :CursorLoop
/goto :MainLoop
/endmacroCode: Select all
(${String[${Cursor}].NotEqual[Null]})Code: Select all
(${Cursor.ID})Code: Select all
/if (!${String[Hi there].Arg[2].Equal[there]) {
/echo It didn't equal there.
}