-
Member
(HELP) How to add pets on HTLauncher with OllyDBG?
Hi everyone,
I am trying to figure out how to add pets on HTLauncher using OllyDBG since it is coded on the HTLauncher.
I am using Khanakat's Client(HTLauncher).
Originally K5 Pets are limited from 8801-8817, I want to add more, for instance on the attachment I am trying to add 8818(MOV EAX, 2272, 2272 is the hex of 8818).
But it just destroys the other lines, I have a very small amount of knowledge with assembly/disassembly, can anyone point out what I am doing wrong?
I want to add more pets on the HTLauncher because I think 17 pets are too few.
Thanks.
======================================================
Also for newbies out there who wants to know how to change the monster ID or Pet ID.
Example:
Ganesha Pet (8801)
CMP EAX, 957 <--- Monster ID
MOV EAX, 2261 <--- Ganesha Pet ID
Decimal 2391 = Hex 957
Decimal 8801 = Hex 2261
We can see that 2391 in TantraParam and Clientres Monster tab is pointing to Ganesha Monster
Now if you wanna change that to let's say Vasabhum you have to change 2391(Ganesha) to 2001 (Vasabhum).
To do that, just change CMP EAX,957(Ganesha) to CMP EAX,7D1
And it should look like this.
CMP EAX,7D1
JNZ SHORT HTLaunch.10121A83
MOV EAX,2261
-