code + offset for Season 9, but same method for higher Season... Pls Don't ask me to help you find offset on higher Season main ^.^
"Hell" ... Credits :
VICIOUS - Me
IGCN - keep borrowing their released DLL source base. :)
Webzen main Season 9
Fix 0.3 - Stable Now - I can't find anything else need to fix
- Fix Option.
- Fix Ancient / Excellent priority (Ancient is higher tier, Exc Ancient : only display ancient glow).
- Script Updated.
Fix 0.2
- Fix Excellent Divine (AA) Weapons Display Behaviour
- Script Updated
DllMain.cpp
Code:
/...
#define HOOK_EXC_GLOW 0x006116F6
#define JMPBACK_EXC_GLOW 0x00611700
void __declspec(naked) VicExcGlow()
{
_asm
{
cmp dword ptr[ebp + 0x20], 0x00;
jne _jmpback;
cmp dword ptr[ebp + 0x1C], 0x01;
jne jmpback;
mov edx, 0x00611735;
jmp edx;
jmpback:
mov eax, dword ptr[ebp + 0x1C];
and eax, 0x3F;
cmp eax , 0x00;
jg jmpback_;
_jmpback:
mov edx, 0x00611C26;
jmp edx;
jmpback_:
mov edx, JMPBACK_EXC_GLOW;
jmp edx;
}
}
void SetHook()
{
HookThis((DWORD)&VicExcGlow, HOOK_EXC_GLOW);
MemSet(0x00949685, 0x90, 2); //ignore itm.IsItemType(6) (type 6 : AA) result
//...
}
