• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

C++ [10.98]How to do Custom Client and disable small window about update before login

Dzoqa

New Member
Joined
May 4, 2017
Messages
40
Reaction score
1
Hi guys,

I want to do custom client at my game server and turn off small window telling me to update client before login.

Please help and thanks for fast help :)
 
Actually you can get rid of this annoying message and I'm know 2 methods(require hex edit).

The first one is to instead of create window make it NULL:
Code:
Offset: 0x9FF55
Change: E8 D6 A2 03 00
To: B8 00 00 00 00

The second one is to get rid off event trigger that create this window(require more hex edits):
Code:
Offset: 0x261DC
Change: 6A 00 6a 00 6A 4D EB 26
To: 90 90 90 90 90 90 EB 2B

Offset: 0x27E52
Change: 6A 00 6A 01 6A 4D E8 F3 F5 16 00
To: 90 90 90 90 90 90 90 90 90 90 90
 
Back
Top