• 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 --->
  • Unfortunately, yes, there is a suspension wave happening around the new tlp launch. :'( Please keep regular discussion to Suspension MegaThread and please consider submitting a Suspension report to RG.

How does the speed hack work? (1 Viewer)

Cpt_Cam

Member
Joined
Jul 30, 2005
RedCents
you know, superduperreallyghettospeed or whatever...

is it a series of warps really fast to mimick motion or something else?
 
It changes the value of pChar->Runspeed in EQData.h to wht first param of the command. Simple as that. The only reason it's such a long plugin is after three pulses, it changes your runspeed back to normal to aviod crashes. It could be written
Rich (BB code):
#include "../MQ2Plugin.h"

float OldSpeed;

VOID SpeedCmd(PSPAWNINFO pChar, PCHAR szLine) 
{
if(!strcmp(szLine,"off")) 
{
GetCharInfo()->pSpawn->RunSpeed = OldSpeed;
} else {
OldSpeed = GetCharInfo()->pSpawn->RunSpeed;
GetCharInfo()->pSpawn->RunSpeed = (float)atof(szLine);
}

PLUGIN_API VOID InitializePlugin(VOID)
{
AddCommand("/speed",SpeedCmd);
}

PLUGIN_API VOID ShutdownPlugin(VOID)
{
RemoveCommand("/speed");
}

But you would crash often.
 
How does the speed hack work?

Users who are viewing this thread

Back
Top