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

Inspect (1 Viewer)

tnfisherman

New member
Joined
Nov 18, 2005
RedCents
Very long ago friend had a plugin that would let you inspect and see what loot most mobs had on them, iirc it only worked up to luclin but if its still around id like to get it if someone has it or its still around. thanks for replys in advance.
 
Search..

http://www.redguides.com/community/showthread.php?t=2868



INI:
 // cronic

#include "../MQ2Plugin.h"

PreSetup("MQ2CInspect");

class PlayerClick_Hook
{
public:
	void RightClickedOnPlayer_Tramp(PSPAWNINFO);
	void RightClickedOnPlayer_Detour(PSPAWNINFO pSpawn)
	{
		if (pSpawn->Type == SPAWN_NPC)
		{
			PSPAWNINFO pCopy = new SPAWNINFO;
			
			memcpy(pCopy, pSpawn, sizeof(SPAWNINFO));
			pCopy->Type = SPAWN_PLAYER;

			RightClickedOnPlayer_Tramp(pCopy);
			
			delete pCopy;
		}
		else
		{
			RightClickedOnPlayer_Tramp(pSpawn);
		}
	}
};

DETOUR_TRAMPOLINE_EMPTY(void PlayerClick_Hook::RightClickedOnPlayer_Tramp(PSPAW  NINFO));

PLUGIN_API VOID InitializePlugin(VOID)
{
	EzDetour(CEverQuest__RightClickedOnPlayer, PlayerClick_Hook::RightClickedOnPlayer_Detour, PlayerClick_Hook::RightClickedOnPlayer_Tramp);
}

PLUGIN_API VOID ShutdownPlugin(VOID)
{
	RemoveDetour(CEverQuest__RightClickedOnPlayer);
}
 
Inspect

Users who are viewing this thread

Back
Top