With the latest release from the macroquest devs they have added some additional anti warp/gate/fade which needs to be removed if you wish to use the specific commands:
/warp
/gate
/fade
If you wish to just rename your /commands for these functions you can bypass this code change entirly.
In MQ2Main\MQ2Commands.cpp add the comment marks below as noted.
/warp
/gate
/fade
If you wish to just rename your /commands for these functions you can bypass this code change entirly.
In MQ2Main\MQ2Commands.cpp add the comment marks below as noted.
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;
}
*/
}


Wohoooo Sticky FTW