• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Release] Change glow color? Piece of cake =)

Skilled Illusionist
Joined
Dec 9, 2009
Messages
373
Reaction score
42
I use this offset and works. To find offsets i use Gembrid guide.


glow.cpp
Code:
void InitGlowFunc()
{
    //Glow Functions calls
    HookOffset((DWORD)&Glow,0x0057AC07,0xE8);//1.04D GMO
    HookOffset((DWORD)&Glow,0x006083B9,0xE8);//1.04D GMO

Hi, can you share the HookOffset code like the SetJmp is "DWORD SetJmp(const LPVOID dwEnterFunction, const LPVOID dwJMPAddress);" ???

I used this code but the main crash:
Code:
void HookOffset(DWORD dwMyFuncOffset, DWORD dwHookOffset, BYTE type)
{
    *(BYTE*)dwHookOffset = type;
    *(DWORD*)(dwHookOffset+1) = dwMyFuncOffset;
}
Thanks,
 
Last edited:
Skilled Illusionist
Joined
Dec 9, 2009
Messages
373
Reaction score
42
Hi, can you share the HookOffset code like the SetJmp is "DWORD SetJmp(const LPVOID dwEnterFunction, const LPVOID dwJMPAddress);" ???

I used this code but the main crash:
Code:
void HookOffset(DWORD dwMyFuncOffset, DWORD dwHookOffset, BYTE type)
{
    *(BYTE*)dwHookOffset = type;
    *(DWORD*)(dwHookOffset+1) = dwMyFuncOffset;
}
Thanks,

Anyone solve this problem?
 
Newbie Spellweaver
Joined
Jun 8, 2018
Messages
19
Reaction score
2
Dear friends, maybe there are people who can help here. find out the offset for connecting glow. For my main.exe. plz help

 
Back
Top