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!

Playing around with the connection proccess

Newbie Spellweaver
Joined
Jan 11, 2015
Messages
7
Reaction score
0
Hello,
I've seen many people having the "lost connection with server" error even myself and I thought, why do we need that?? I mean that option is used for the original pt when you had to pay every one month to play.
So I would like to remove that, I need your help for that.

I looked for that string in the hex editor and the address was:
Code:
001e5958

In the olly in this address the code is:
Code:
001E594C   04 00            ADD AL,0
001E594E   4D               DEC EBP
001E594F   006E 00          ADD BYTE PTR DS:[ESI],CH
001E5952   67:0061 00       ADD BYTE PTR DS:[BX+DI],AH
001E5956   0000             ADD BYTE PTR DS:[EAX],AL
[B]001E5958   0000             ADD BYTE PTR DS:[EAX],AL[/B]
001E595A   0D 0007B500      OR EAX,0B50700
001E595F   000F             ADD BYTE PTR DS:[EDI],CL

I couldn't find any references for this address.
I though I would find something like

Code:
if(wrongid)
    jump to wrongid message
if(wrongpass)
    jump to wrongpass message
if..
   jump
if..
   jump
if(diuseday has passed)
    jump to 001e5958
jump to server select screen.

And then it's easy to remove the condition.
I need your help guys! anyone?

I'm using mpt client btw
 
Back
Top