Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Help offset PartyMemberCount

Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
Hi, can someone help me out to find the offset for 1.03.11 (1.03k) main for PartyMemberCount

i'm researching from zTeam s6 main
#define pPartyMemberCount *(DWORD*)0x81F6B6C
possible offset 1.03.11 would be -> 0x7C13BE8 correct?
but i cannot follow it correct the offset, maybe someone would lay an hand here? Thanks
 
Last edited:
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
Download Files Mains S6/S4 :
Currectly researched are:
Code:
#define pOnLine                    *(DWORD*)0x80A815C //OK
#define pCreateConnect            ((int(__cdecl*)(char * IP, WORD Port)) 0x00610730) //OK
#define pPartyMemberCount        *(DWORD*)0x7C13BE8 //OK
#define pPShopSet                ((void(__thiscall*)(LPVOID This, BYTE Mode)) 0x0075DB5B) //ok?
#define pPShopThis1                ((LPVOID(__cdecl*)()) 0x007747FF) //OK?
#define pPShopThis2                ((LPVOID(__thiscall*)(LPVOID This)) 0x007749A6) //ok
#define pPShopRefresh            ((void(__cdecl*)(int Preview)) 0x0040F743) //ok ?


on s6 main default:
#define pOnLine                    *(DWORD*)0x8793704
#define pCreateConnect            ((int(__cdecl*)(char * IP, WORD Port)) 0x0063C960)
#define pPartyMemberCount        *(DWORD*)0x81F6B6C
#define pPShopThis1                ((LPVOID(__cdecl*)()) 0x860FC0)
#define pPShopThis2                ((LPVOID(__thiscall*)(LPVOID This)) 0x8612B0)
#define pPShopSet                ((void(__thiscall*)(LPVOID This, BYTE Mode)) 0x840E20)
#define pPShopRefresh            ((void(__cdecl*)(int Preview)) 0x00668460)
 
Upvote 0
Back
Top