• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

odd request (1 Viewer)

grog

Member
Joined
Apr 8, 2005
RedCents
does anyone have a set of source for any plugin that simply uses a single offset, do-crack style?

to clarify: I don't want docrack, and I don't want a plugin using detours. I know why detours are used, but I suck shit at detours and have something I would like to use this for! =)
 
Last edited:
did you check the list of plugins and the links to their threads.... in guides section?

I thought there was one for feeding you and one for EB

not 00% sure though

ARMY
 
Like mq2gm. If you want to discuss the running of this please contain it to the mq2gm thread over on the other boards.
Rich (BB code):
// MQ2GM.cpp : Defines the entry point for the DLL application.


#include "../MQ2Plugin.h"


PreSetup("MQ2GM");

// Function DEFINE

VOID GM (PSPAWNINFO, PCHAR);

//STARTUP

PLUGIN_API VOID InitializePlugin(VOID)
{
	AddCommand ("/gm",GM);
}
// SHUTDOWN

PLUGIN_API VOID ShutdownPlugin(VOID)
{
	DebugSpewAlways("You are no longer a GM");
	RemoveCommand ("/gm");
}
// GM ON
VOID GM(PSPAWNINFO pChar, PCHAR szLine)
{
	char command[MAX_STRING];
	GetArg (command,szLine,1);
	if (!stricmp(command,"on"))
{
      pChar->GM = true;
}
if (!stricmp(command,"off"))
{     pChar->GM = false;
} else 
{
          WriteChatColor("Useage: /gm <on|off>",CONCOLOR_RED);
}
}
 
armysoldier said:
did you check the list of plugins and the links to their threads.... in guides section?

I thought there was one for feeding you and one for EB

not 00% sure though

ARMY
quite possible that I missed it, but I didn't see any promising ones in there.

also; mq2gm isn't quite what I'm looking for, it manipulates structs. I need something that just directly edits memory docrack-style, except, well.. not docrack. I'll whip something up later and post it, if I can't find anything.
 
odd request

Users who are viewing this thread

Back
Top