• 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 --->

variable with mq2 question (1 Viewer)

Siddin

Rikk-tikk-tikki-tikki-tchk!
Joined
Feb 6, 2005
RedCents
494¢
how would i change a variable using a plugin to make mq2 overwrite any data that eq recieves from the servers, or is this possible?
 
Last edited:
I think what you need to do is use

Rich (BB code):
PLUGIN_API VOID OnPulse(VOID) 
{

This will make the plugin check the value you are changing a few times a second so that it stays as you want it.

That what your askin? I'm not really sure if it helps
 
hmm, onpulse doesn't seem to work, but anyhow found a couple of other things i could try, here's the only problem, i don't know how they work all that well lol.

case CurrentHPs:
Dest.DWord=pChar->pSpawn->HPCurrent;
Dest.Type=pIntType;
return true;

case CurrentMana:
Dest.DWord=pChar->Mana;
Dest.Type=pIntType;
return true;


is there any way to change those so it gives a certain # rather than what EQ wants?

tried
PLUGIN_API VOID OnDrawHUD(void)
{
DWORD mana = 2000;
GetCharInfo()->Mana = mana;
}

only problem was it only changed what the hud showed and not what eq was looking at...
 
Last edited:
variable with mq2 question

Users who are viewing this thread

Back
Top