• 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

variable with mq2 question

Siddin

Rikk-tikk-tikki-tikki-tchk!
Joined
Feb 6, 2005
RedCents
504¢
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:
Just letting you know... I dont know.
But alteast your post will go on the top of the page now and you might get someone that does :p
lol :p
 
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
Cart