• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->
  • EverQuest (live servers) were patched with January 2026 patch so brainiac has been spending his time updating MacroQuest. Please show him your appreciation. Thanks brainiac!
    Currently there are some crashes and bugs, thank you for being patient while they are worked out.
Resource icon

Utility MQ2AutoForage

It would not start with startforage but does with start autoforage
Sic
Sic
weird, because that isn't the command.

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]
Excellent product with just the right amount of command lines needed to avoid editing the .ini file
Love it, one problem if your hidin and sitting and u dont find anything it does sit back down.
5 STAR
Fantastic!!! This helps keep me organized and only collecting what I am foraging for.
This just works. Solid and 100% necessary.
Back
Top