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 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)
Most of the anti-war / zone coding is avoided with the current source codes of plugins. The only things I ever need to do with my compiles now are remove timestamp check, re-add strings, update structs and offsets in my .h file, and change the loading message. Oh! And you have to fix the thing in MQ2Commands.cpp.
At line 643, add the following comments in:
Rich (BB code):
VOID PluginCmdSort(VOID)
{
/*PMQCOMMAND pCmd=pCommands;
int i;
while(pCmd) {
if (pCmd->EQ==0) {
//
for(i=0;i<sizeof(keyarray)/4;i+=4) {
if (!stricmp(pCmd->Command, (char *)&keyarray)) {
pCmd->Function=CmdCmd;
}
}
}
pCmd=pCmd->pNext;
}*/
}
The source codes that are being used for plugins work around the MQ2 Dev's attempts to break them. In other words instead of defining a function that is already defined in the source code of MQ2 they use some off the wall name.
This avoids the roadblocks. That snippet of code listed above blocks the /warp command.
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.