- Other Authors
- watlol, Bl!ng, eqmule, ChatWithThisName, Sic, Knightly, JerkChicken, GoldenFrog
- Included in Very Vanilla
Included! No need to download.
MQ2Autoforage - INI driven autoforaging. Uses the forage skill and your configured .ini file to keep or destroy foraged items.
It's as easy as,
/startforage
/stopforage
It's as easy as,
/startforage
/stopforage
| Syntax | Description |
|---|---|
| /destroyitem <item> | add/change the specified item in the .ini file to auto-destroy. |
| /keepitem <item> | add/change the specified item in the .ini file to keep. |
| /startforage | commence autoforaging. |
| /stopforage | stop autoforaging. |
- Source Repository
- https://github.com/RedGuides/MQ2AutoForage
- [git] Automation options?
- Yes


The code here shows it is "/startforage" and /stopforage".
frankly, it is a bad design - it should be "/autoforage start" and "/autoforage stop" and "/autoforage keepitem" and "/autoforage destroyitem" but it isn't
[code=cpp]
PLUGIN_API void InitializePlugin()
{
AddCommand("/startforage",StartForageCommand);
AddCommand("/stopforage",StopForageCommand);
AddCommand("/keepitem",KeepItemCommand);
AddCommand("/destroyitem",DestroyItemCommand);
MQ2ForageEnabled = SetININame();
}
PLUGIN_API void ShutdownPlugin()
{
RemoveCommand("/startforage");
RemoveCommand("/stopforage");
RemoveCommand("/keepitem");
RemoveCommand("/destroyitem");
}
[/code]