DoD chest exploit

Worth a shot atleast.....if u can wing around the summoned Guardians
 
any one find out?

does killing 20 eye's for Zorm or what ever count as killing 20 mobs?
 
worth a try, the eye of zomm killing has been nerfed in most everything though
 
Just a shot in the dark, but I wonder if you can summon an eye, change it's race, and kill it.. I honestly doubt it would work, as this is just a client side change, but SOMETHING has to trigger the update.

This plugin hasn't been tested so I don't even know what will spew out to the MQ2 window, but if someone can test it and let me know. (Man, I need to install EQ at work) :)

Load this, target a spider (or whatever you have to kill for the mission), and type /saverace

Then summon an eye, target it, and type /setrace and kill it.

Just before killing it, you could type '/echo ${Target.Race}' and see if it changed. I'd be curious to know if this actually does anything.


Code:
#include "../MQ2Plugin.h"


PreSetup("MQ2SetRace");

unsigned long SavedRace;

VOID SaveRace(PSPAWNINFO pChar, PCHAR szLine)
{
char szTemp[MAX_STRING];

	if (ppTarget && pTarget) 
	{ 
		PSPAWNINFO Target = (PSPAWNINFO)pTarget; 
		SavedRace = Target->Race;
		sprintf(szTemp, "Race '%s' has been saved from %s", Target->Race, Target->DisplayedName);
		WriteChatColor(szTemp, CONCOLOR_GREEN);
	}
}

VOID SetRace(PSPAWNINFO pChar, PCHAR szLine)
{
char szTemp[MAX_STRING];

	if (ppTarget && pTarget) 
	{ 
		PSPAWNINFO Target = (PSPAWNINFO)pTarget; 
		sprintf(szTemp, "Race '%s' has been changed to %s", Target->Race, SavedRace);
		Target->Race = SavedRace;
		WriteChatColor(szTemp, CONCOLOR_GREEN);
	}
}


PLUGIN_API VOID InitializePlugin(VOID)
{
	AddCommand("/saverace", SaveRace);
	AddCommand("/setrace", SetRace);
}

PLUGIN_API VOID ShutdownPlugin(VOID)
{
	RemoveCommand("/saverace");
	RemoveCommand("/setrace");
}
 
I'd assume race was serverside, so this wouldn't work...but i'll try it out :)
 
Lillanu said:
I'd assume race was serverside, so this wouldn't work...but i'll try it out :)

Yeah, I'm sure race is serverside.. I was just bored. :)
 
lol.. I just saw the last reply and was wondering where that plugin came from.. I think I was drunk or something when I wrote it. :)

Just out of curiosity, has anyone tried it? I had forgotten all about it until you posted. I'll attach the DLL for ease of testing. :)
 

Attachments

  • MQ2SetRace.dll
    76.1 KB · Views: 7
Psycotic said:
lol.. I just saw the last reply and was wondering where that plugin came from.. I think I was drunk or something when I wrote it. :)

Just out of curiosity, has anyone tried it? I had forgotten all about it until you posted. I'll attach the DLL for ease of testing. :)
I said I'd try it... but I forgot to ><... Yay 300 posts for me!
 
The other thing i was thinking of...can you loot normal mage pets, maybe Monster Summoning 1 or 2 whatever the lowest is
 
Tested the Set Race plugin, once you type /setrace and press enter, you CTD.