Total Posts:2313 Joined:2004
|
|
Here are some updates to make it work properly with the newest patch
Replace the codes from the new offsets thread and in the phelon.fss file you need to replace the code.
in the hook.inc
Code:
-- ; WoW 1.4.1
_WOW_VERSION = "1, 4, 1, 4364"
-- ; NPC HOOK
_npc_hook_addr = "484473"
-- ; FUNCTIONS
_function_GetPlayerPtr = "46FA40"
in the phelon.fss
Code:
hook = Sense_Hook(hWnd,"484403")
with
Code:
hook = Sense_Hook(hWnd,_npc_hook_addr)
in the toon.inc
Code:
function GetPlayerPtr(hWnd)
register = Asm.FastCall(hWnd,_function_GetPlayerPtr,"0x10","0x818358",Asm.Ptr(_player_playerID),0)
return register.eax
end
_________________ I DO NOT TAKE CREDIT FOR MY INFO.
I am a member of a exploit guild and post it here because i like this site and want to help it.
|
|