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!

[v83 Localhost Edit] How to Delete character without PIC

Newbie Spellweaver
Joined
Dec 12, 2019
Messages
5
Reaction score
0
Use: Ollydbg

change below:005F7CA1 0F95C0 SETNE AL
005F7CD4 75 74 JNZ SHORT maplev83.005F7D4A //pass PIC check

005F7DCD 90 NOP // remove PIC string data in Delete char packet
005F7DCE 90 NOP
005F7DCF 90 NOP
005F7DD0 90 NOP
.
.
.
Fill with nop
.
.
.
005F7DE5 90 NOP
005F7DE6 90 NOP

005F7E5F 90 NOP // fill with nop, not release CSoftKeyboardDlg which not used
005F7E60 90 NOP
005F7E61 90 NOP
005F7E62 90 NOP
005F7E63 90 NOP
005F7E64 90 NOP
005F7E65 90 NOP
005F7E66 90 NOP
005F7E67 90 NOP
005F7E68 90 NOP
005F7E69 90 NOP005F7E6A 90 NOP
then you can receive belowpacket from client:
17 00 (packet opcode) XX XX XX XX (char ID)
 
Newbie Spellweaver
Joined
Sep 20, 2014
Messages
42
Reaction score
1
u can make this or not?

Use: Ollydbg

change below:005F7CA1 0F95C0 SETNE AL
005F7CD4 75 74 JNZ SHORT maplev83.005F7D4A //pass PIC check

005F7DCD 90 NOP // remove PIC string data in Delete char packet
005F7DCE 90 NOP
005F7DCF 90 NOP
005F7DD0 90 NOP
.
.
.
Fill with nop
.
.
.
005F7DE5 90 NOP
005F7DE6 90 NOP

005F7E5F 90 NOP // fill with nop, not release CSoftKeyboardDlg which not used
005F7E60 90 NOP
005F7E61 90 NOP
005F7E62 90 NOP
005F7E63 90 NOP
005F7E64 90 NOP
005F7E65 90 NOP
005F7E66 90 NOP
005F7E67 90 NOP
005F7E68 90 NOP
005F7E69 90 NOP005F7E6A 90 NOP
then you can receive belowpacket from client:
17 00 (packet opcode) XX XX XX XX (char ID)
 
Newbie Spellweaver
Joined
Dec 12, 2019
Messages
5
Reaction score
0
here




Compared with KMS v1.2.65 (no PIC system).
The function address is 55CEF1, I used Ollydbg and IDA Pro
 
Back
Top