There is a line for destroying whatever is on your cursor for Conjuration practice, but it is commented out. Just remove the "|" before the "/destroy" if you want this feature. Another idea - If you wish to save whatever is on your cursor (if using fishing, foraging, conjuring) just change the "|/destroy" to "/autoinventory".
Edit: It assumes you have your 10th hotkey mapped to the default of "0"
WARNING:
This macro is NOT intended to be run AFK. You have been warned.
I welcome all suggestions/crtiques. This is my first macro posting.
Code: Select all
| repeat.mac
|
| This macro does nothing but hit your "0" hotkey repeatedly
| with a specified delay. If no parameter is given, defaults to
| 10 (1 second). Macro ends if you sit down.
|
Sub Main
/declare delaytime int local ${Param0}
/if (${delaytime}<=0) /varset delaytime 10
:loop
/keypress 0
/delay ${delaytime}
|/destroy
/if (!${Me.Sitting}) /goto :loop
/endmacro