• 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

Request - Add plugin for mounts with old models for emulator build please?

DriveCrash

Well-known member
Joined
Jul 9, 2015
RedCents
993¢
Since we do not have to hide our MQ usage on emulator servers, and many of us on EMU prefer the older models, is there any way we can get the EMU build to include the plugin that lets you use a mount with the old models? I know on live it was super obvious when anyone did this and wasn't safe, which I assume is why it was not included in VV.

Would just be nice to have if it's not too much hassle. Thanks.
 
Live allows you to use mounts with old models now, just FYI. So that's an older client issue.
Ohhh... that makes more sense. I imagine that will not happen on emulator for a long while, so is it a huge pita to add that plugin to the emu build?
 
If you just got to run old models and want to skitter around on a mount. I'd suggest getting an Amulet of Necropotence. If you are on Laz I believe Wendell Lightforget sells them.
 
It'll likely never happen for emu. While they can use the RoF client, they only have the code to get as far as OoW (last I heard anyway).
 
This might not be of any help all things considered but it appears the MMO bugs version of MQ still has that plugin. I hope I'm not in bad form to suggest a build outside of RG but I always got the feeling RG didn't have any ill feelings towards those folks. (If this is in fact out of line I'll delete the post)
 
DriveCrash is talking about MQ2NoMountModels. @Redbot do you have the old source for that laying around?
> code on old macroquest2 site <

looks like the address would need to be found
C++:
#include "../MQ2Plugin.h"

/*
* MQ2NoMountModels
* Thanks to ieatacid for the orginal plugin code.
* This plugin simply allows you to use a horse regardless of
* whether you have luclin modles on for that toon.
* You still need to have horse models enabled for this to work.
* Note the offset for this will need to be updated every patch.
*/

/* Version History
* 1.01 (2006120700) Given a dumb named by Jaq, posted in VIP
* 1.00 Original code by ieatacid
*/

PreSetup("MQ2NoMountModels");
PLUGIN_VERSION(1.01);

#define address 0x4F2150 // updated for 01/17/2007 eqgame.exe
// #define address 0x4F3C70 // updated for 2/15/2007 eqgame.exe

class a
{
public:
   bool b();
   bool c()
   {
      return false;
   }
};

DETOUR_TRAMPOLINE_EMPTY(bool a::b(void));

PLUGIN_API VOID InitializePlugin(VOID)
{
   EzDetour(address,&a::c,&a::b);
}

PLUGIN_API VOID ShutdownPlugin(VOID)
{
   RemoveDetour(address);
}
 
Request - Add plugin for mounts with old models for emulator build please?

Users who are viewing this thread

Back
Top
Cart