• 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

Everything except the kitchen sink Compile 20100212

Joined
Jun 19, 2007
RedCents
254¢
Here's a compile with most everything except the active packet hacks. Let me know if you experience any problems. I'm still new to this whole thing and trying to learn what I can from those in the know. As always, if you find this compile useful, I sure could use the red cent. Thank you and enjoy..

Included in this zipfile are the following plugins:
MQ2Advpath.dll
MQ2AutoSize.dll
MQ2Autoforage.dll
MQ2Autoskills.dll
MQ2Bandolier.dll
MQ2Bardswap.dll
MQ2Bucles.dll
MQ2Bufftool.dll
MQ2Bzsrch.dll
MQ2Cast.dll
MQ2Casttimer.dll
MQ2Charnotes.dll
MQ2Chat.dll
MQ2ChatWnd.dll
MQ2Combat.dll
MQ2CustomBinds.dll
MQ2Customsound.dll
MQ2Debuffs.dll
MQ2Docrack.dll
MQ2Dps.dll
MQ2Dpsadv.dll
MQ2EQBugFix.dll
MQ2EQIM.dll
MQ2Eqbc.dll
MQ2Events.dll
MQ2Exchange.dll
MQ2Faerune.dll
MQ2Feedme.dll
MQ2Focii.dll
MQ2Fps.dll
MQ2HUD.dll
MQ2Irc.dll
MQ2ItemDisplay.dll
MQ2Labels.dll
MQ2Linkdb.dll
MQ2Main.dll
MQ2Map.dll
MQ2Melee.dll
MQ2Moveutils.dll
MQ2Otd.dll
MQ2Paranoid.dll
MQ2Pop.dll
MQ2Randomstuff.dll
MQ2Search.dll
MQ2Setgrav.dll
MQ2Slave.dll
MQ2Spawnmaster.dll
MQ2Spellsearch.dll
MQ2SuperDuperReallyGhettoSpeed.dll
MQ2SuperStacker.dll
MQ2Targets.dll
MQ2Telnet.dll
MQ2Timestamp.dll
MQ2Tracking.dll
MQ2Twist.dll
MQ2WinXP.dll
MQ2Xptracker.dll
 
Last edited:
I updated the zipfile. Somehow when I zipped it up, I missed mq2map.dll. It is there now so if you got the zipfile and your map isn't working. redownload the zipfile.
 
Not going to make a big deal about it but if you're going to post compiles that include GPL plugins (assume anything that you didn't write yourself is, or whatever other reason why not that's fine too) please include your source as well.

Other than that, thanks for posting, compiles are nice :)
 
Like I said, I'm still new to this whole compiling for the masses deal. Be happy to post the source, soon as I figure out what is safe and what is needed.
 
Last edited:
That's cool, not trying to come off as a MODERATING JERK, more a friendly reminder.
 
"Due to misuse of string, a top-level object.....:"

This appears in the macro box going a million miles a min. Crash and burn for me.
 
MQ2 Devs removed the string TLO a couple of years ago, compilers can re-enable it but have to edit source.

MQ2Data.cpp???

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;
    /**/
}

needs to be chagned to....

Rich (BB code):
TLO(dataString)
{

    if (!ISINDEX())
        return false;
    strcpy(DataTypeTemp,szIndex);
    Ret.Ptr=&DataTypeTemp[0];
    Ret.Type=pStringType;
    return true;
 
}


Going off of memory here so might be wrong on filename but the code is from my text file of changes.
 
That's exactly what we do for the main compile :D
 
Ah hah, I will fix that. I was always under the impression it was caused by something in the HUD as it only happens when it is running and only for some classes. I play an sk so the HUD works perfectly for me.
 
Everything except the kitchen sink Compile 20100212

Users who are viewing this thread

Back
Top
Cart