Quote:
Originally Posted by xworldx
yes, what is diferent between 002EB6F5: 01 00 and
game_2089M
0010F5C3: 31 90
0010F5C4: C0 90
0010F5C5: 8B 90 .......
in game game_2089M is also 002EB6F5: 01
Thank you
|
iMer's dif disable the removing friend function.
Code:
game_2089M
0010F5C3: 31 EB
0010F5C4: C0 09
And the first dif is changed the libsql/AsyncSQL.cpp Connect function.
Code:
if ( mysql_real_connect(
v1,
*(char **)(a1 + 968),
*(_DWORD *)(a1 + 972),
*(_DWORD *)(a1 + 976),
*(_DWORD *)(a1 + 980),
*(_DWORD *)(a1 + 1000),
0,
65536))
With this:
Code:
if ( mysql_real_connect(
v1,
*(char **)(a1 + 968),
*(_DWORD *)(a1 + 972),
*(_DWORD *)(a1 + 976),
*(_DWORD *)(a1 + 980),
*(_DWORD *)(a1 + 1000),
0,
0))