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!

Character Deletion

Skilled Illusionist
Joined
Feb 26, 2013
Messages
346
Reaction score
57
Is there any way to make people able to delete their character for example on 190 level directly from game. Or only way is to code PHP/SQL function for it?
 
Skilled Illusionist
Joined
Feb 26, 2013
Messages
346
Reaction score
57
Yea i know for that one and i already made but was curious if anyone found way to make it work directly from game.
 
Upvote 0
Newbie Spellweaver
Joined
Sep 11, 2009
Messages
50
Reaction score
16
Disassembling the CabalMain【Version374】

0073637b
cmp dword ptr ds:[eax+0x107BFAC],0x64
0x64=100

00736388
jl 007363BA => jmp 007363BA
 
Upvote 0
Newbie Spellweaver
Joined
Jun 11, 2012
Messages
33
Reaction score
0
I'll be here, thank you!
-----
edit
-----

I did as you posted, but it's still only for lvls 99 below, do you need to do something else?
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Sep 11, 2009
Messages
50
Reaction score
16


I'll be here, thank you!
-----
edit
-----

I did as you posted, but it's still only for lvls 99 below, do you need to do something else?

Client
Disassembling the CabalMain【Version374】

0073637b
cmp dword ptr ds:[eax+0x107BFAC],0x64
0x64=100 (LimitLevel)

00736388
jl 007363BA => jmp 007363BA (skip limit)

Server
WorldSvr_xx_xx.ini
# Character
CharacterDeleteLimitLevel=xxx


Enjoy ^o^
 
Last edited:
Upvote 0
Trying to be developer ^^
Loyal Member
Joined
Jul 21, 2010
Messages
1,072
Reaction score
360




Client
Disassembling the CabalMain【Version374】

0073637b
cmp dword ptr ds:[eax+0x107BFAC],0x64
0x64=100 (LimitLevel)

00736388
jl 007363BA => jmp 007363BA (skip limit)

Server
WorldSvr_xx_xx.ini
# Character
CharacterDeleteLimitLevel=xxx


Enjoy ^o^

Nice :) I wonder how you find it all :D Gj
 
Upvote 0
Elite Diviner
Joined
Jun 18, 2023
Messages
428
Reaction score
238
Client
Disassembling the CabalMain【Version374】

0073637b
cmp dword ptr ds:[eax+0x107BFAC],0x64
0x64=100 (LimitLevel)

00736388
jl 007363BA => jmp 007363BA (skip limit)

Server
WorldSvr_xx_xx.ini
# Character
CharacterDeleteLimitLevel=xxx


Enjoy ^o^
Worked with Level 100 but tried to use skip limit or even level 200 which is 0xC8 but not work.
 
Upvote 0
Back
Top