• 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

Noob's Complete Compile v1.2 (Re-compile)

Joined
Feb 8, 2005
RedCents
8,901¢
This is a re-compile due to many folks experiencing crashing problems. I updated some of the code and compiled this one a bit diffrently. Timestamp checking was removed via pluginhandler.cpp, instead of rolling the clock back. Also, downloaded a fresh copy of mq2 direct from website and re-compiled. Hopefully this clears up some of the crashing issues some people have experienced. I also added some more plugins via request.

Here is my compile with plugins:
MQ2Advpath
MQ2Autokills
MQ2Bandolier
MQ2Bufftool
MQ2Cast
MQ2Docrack || Commands: /docrack [nameofcrack] [on/off]
MQ2Dps
MQ2Exchange
MQ2Faerune
MQ2FPS
MQ2Melee
MQ2Moveutils
MQ2Paranoid
MQ2Pop
MQ2Rez
MQ2Setgrav || Commands: /setg X (Default is .4 ... set lower for flying mode .1 is like moonwalking)
MQ2Slave
MQ2SuperDuperReallyGhettoSpeed || Commands: /speed X (FoE is 160)
MQ2SuperStacker
MQ2Timestamp
MQ2Twist || Commands: /twist [gemnumbers]

Thanks to the Everlation.com team for the following public active hacks to give you guys a complete compile with everything
MQ2Everwarp || Commands: /ewarp target, /ewarp succor, /ewarp loc
MQ2Piggyzone || Commands: /egate - /efade - /ezone <zoneshortname>
MQ2Eopen || Command: /eopen
MQ2Instacamp
MQ2Sumcorpse
MQ2Ghost || Command /ghost on/off

REMEMBER TO LOAD MQ2Everlation FIRST!!! This makes warp/zone undetectable.

Red Cent me if you like it...Click the---> :rc

Edit 10/29 : Re-compiled again to fix a string error in mq2data. (Giving error about misuse of top level object.)

Edit 10/30 : Replaced mq2piggyzone with a working copy. Thank you for the update abyss.
 
Last edited:
As someone else had requested in your previous compile's thread, is there any way you can add mq2stealth or mq2ghost or something with the capabilities of those plugins?

We haven't had those plugins in a long time on this website, and I've never quite understood why... Another plugin I haven't seen in a really long time is mq2instamem, although I assume that one has been deemed too unsafe to use now.
 
Most important 1 was missed ( mq2slave ). many of us use extra acc.s. Any way this can be put in ? thank you.
 
Ok added Slave and Ghost to the compile. As for MQ2Instantmem... very very hard to find this plugin, I haven't been able to hunt down the source for it. If anyone finds this, PM me the source and ill update it.

Edit: attached dlls so you don't have to download the compile again.
 
Is it possible to get a version of MQ2Pax working? Would llike to be able to get quests anywhere in the zone.




* Thanks for the MQ2Farsay, works great!
 
Last edited:
Thanks, Noob!

If you're able to add these that would be amazing:

MQ2AdvPath
MQ2EQBC
MQ2Netbots
 
Noob, all plugins loaded fine from MQ2Everlation first, MQ2Everwarp, Melee, etc. However, MQ2piggyzone is not loading. I keep getting an error message that says "The application or DLL C:\noobmq2\mq2piggyzone.dll is not a valid Windows image. Please check this against your installation diskette." I have downloaded your compile v1.2 three times and reinstalled and still the same message. Your previous compile worked great with no issues as well. I'm not using any old ini files and installed your v1.2 compile only. Please help as piggyzone is the main reason I use MQ2.

Thanks,
Hooah
 
Noob, all plugins loaded fine from MQ2Everlation first, MQ2Everwarp, Melee, etc. However, MQ2piggyzone is not loading. I keep getting an error message that says "The application or DLL C:\noobmq2\mq2piggyzone.dll is not a valid Windows image. Please check this against your installation diskette." I have downloaded your compile v1.2 three times and reinstalled and still the same message. Your previous compile worked great with no issues as well. I'm not using any old ini files and installed your v1.2 compile only. Please help as piggyzone is the main reason I use MQ2.

Thanks,
Hooah

Getting same message.
 
Also, I noticed you left out mq2paranoid in this compile, although its not really a big deal since its in the previous compile that you posted.

Unless of course you took it out because it was causing problems?

PS: Is there a way to set and warp to waypoints with this new everwarp plugin you've included?
 
For warp/piggyzone, I download those from the everlation team. I don't have the source for the versions everyone has been using since i've been gone, and have no way of updating these plugins. I also lack the knowledge to update the needed opcodes in these respective plugins. Sorry, I also don't test out active plugins such as warp / piggyzone, because of the frequency that I have been banned in the past. All my accounts have been banned and my main one has several times. Took me 1 year to get it back this time around, and I am pretty sure they keep a close eye on me.

For MQ2EQBC/MQ2Netbots, I need to purchase VIP on the macroquest2 boards. They banned me again, because I published fixes for anti warp / zone plugins a couple years back when they implemented the code. (hence my title.) I am sure they have the updated source in VIP by now, and will do another donation under a new account later today.

For MQ2paranoid and MQ2Advpath, I have compiled these, and will add them to my zip.
 
this copy of mq2eqbc is working just fine for me with this compile Hope it works for you.

If this helped feel free to redcent me as im a poor poor man rofl :)
 
I just downloaded this compile. As soon as I get into world I see "Due to complete misuse of the string Top-Level Object, it has been removed." in the MQ window. Only thing I did was added a hud to the compile.
 
ive been getting the same error although it doesnt seem to crash me or anything so ive just ignored it
 
Noob ... Probably while you were out ... the MQ2 Dev's removed "String" ... thus we always put it back :D

MQ2Main/MQ2Data.cpp

Find:
Rich (BB code):
TLO(dataString)
{
    WriteChatf("Due to complete misuse of the String Top-Level Object, it has been removed.");
    return false;
    /*
    if (!ISINDEX())
        return false;
    strcpy(DataTypeTemp,szIndex);
    Ret.Ptr=&DataTypeTemp[0];
    Ret.Type=pStringType;
    return true;
    /**/
}
Replace:
Rich (BB code):
TLO(dataString)
{

    if (!ISINDEX())
        return false;
    strcpy(DataTypeTemp,szIndex);
    Ret.Ptr=&DataTypeTemp[0];
    Ret.Type=pStringType;
    return true;
 
}
 
YAY...no more error. Thx guys for getting these compiles up and running. Recent coming if it lets me.
 
for some reason on the new copy piggyzone isnt loading for me gives me an invalid image error. :(
 
how does piggyzone work? i tried commands from JMOs guide (zone,findpath etc), nothing works.
 
its the everlation version so put an E in front of everything for example.

/egate
/efade
/ezone dragonscale
ect
hope that helps ya :)
 
Noob's Complete Compile v1.2 (Re-compile)

Users who are viewing this thread

Back
Top
Cart