Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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 --->
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
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]