• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver
Resource icon

Utility MQ2AutoForage

Other Authors
watlol, Bl!ng, eqmule, ChatWithThisName, Sic, Knightly, JerkChicken, GoldenFrog
Included in Very Vanilla
Very Vanilla Included! No need to download.
Server Type
🏢 Live 🏘️ Emu TLP Test
Documentation
Read📖Guides
Source Repository
https://github.com/RedGuides/MQ2AutoForage
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


SyntaxDescription
/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.
/startforagecommence autoforaging.
/stopforagestop autoforaging.
Author
Sic
Watchers
632
First release
Last update

Ratings

5.00 star(s) 6 ratings

More resources from Sic

Share this resource

Latest updates

  1. 11/03/2025

    〰️Commits C++20 fixes - char* -> const char* as appropriate - 0 -> false or nullptr as...
  2. 09/07/2025

    〰️Commits Add/update documentation from RedGuides docs system (264c695) ~Redbot
  3. 20230219

    〰️Commits Update for v143 Addresses https://github.com/macroquest/macroquest/issues/635...

Latest reviews

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
Cart