DeadlyHitrate
Unregistered
hi there guys i just want to know where do i have to place this code for levelup checks? from falos gameserver that has max lvl 255 ?
Update: i forgot some levelup checks:
Code:
0xFC452 -> change 8C 00 00 00 to FF 00 00 00
0xFC476 -> change 8C 00 00 00 to FF 00 00 00
0xFC5B4 -> change 8C 00 00 00 to FF 00 00 00
use ollydbg and you can find the address like 004FC5B1
Modify from 8c to what ever you want(for game level).HEXA - DECIMAL
8C = 140
A5 = 165
FF = 255
[color="#FF8C00"]004FC5B1[/color] 8178 20 8C0000>CMP DWORD PTR DS:[EAX+20],[color="#FF0000"]8C[/color]
004FC5B8 |. 0F8D 71020000 JGE PVP_Game.004FC82F
This is for LevelUP command(modify in whatever you want)
[color="#FF8C00"]0045EA4D[/color] 817D DC 8C0000>CMP DWORD PTR SS:[EBP-24],[color="#FF0000"]8C[/color]
0045EA54 |. 7E 11 JLE SHORT PVP_Game.0045EA67
This 2 addresses i posted earlyer:
Exp loop fix:
[color="#FF8C00"]004FC44F[/color] 8178 20 8C0000>CMP DWORD PTR DS:[EAX+20],[color="#FF0000"]8C[/color]
004FC456 |. 7F 18 JG SHORT PVP_Game.004FC470
DeadlyHitrate
Unregistered
Thank you appreciate it
only know the offset of pet exp rate ?
DeadlyHitrate
Unregistered
after u set all of this in ollydb what do i do just run it in the debug file?
Posts: 313
Threads: 20
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jul 2011
Reputation:
0
after u set all of this in ollydb what do i do just run it in the debug file?
Just get an HexEditor and modify those values at those offsets, and save.
DeadlyHitrate
Unregistered
which one would u recommend me?
ps: btw im using now hxd editor and i ccant find those offsets neither with HHD anyone help me?
Posts: 2
Threads: 0
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
When i try to change 8c to a5 i become an error: unknown identifier. Can anyone help me im a noob with things like that but i want to learn this.