ChainRule Cheater
Reputation: 1
Joined: 21 Jan 2008 Posts: 40
|
Posted: Fri Nov 06, 2009 8:47 pm Post subject: Buff Spell CD hacking (need help) |
|
|
First of all, srry for making a new topic; I just couldn't "double post" in my "Debugger Question" thread.
Anyways, I have finally located the address for the spell. Here's the run down:
The spell makes you run faster for certain amount of time in seconds;
I've found that the game updates every 60 frames simply because the game is running at 60 fps.
The difficulty is that the address is not specifically for this spell cd purpose but instead, it does other updates. So, in my finding, it converts from a decimal into an int using:
cvttsd2si EAX, [ESP]
On the 1st frame, after that instruction EAX would store 7, then the next loop (60 times) it would be 6 then 5, 4, 3, 2, 1, and 0 -> spell buff is over.
My question is how can I freeze or increase the spell buff time? I've check instructions before that, and I couldn't find any calculation instructions. Help plz
Thx
Edit:
It seems that I'm inside some sort of Update loop that loops through the entire skill bar. So basically it loops through all the castable spells and update them. The best I can do so far is been able to freeze that value, however, it makes all other icon to have that value as well regardless of it having CD or not. Worse, it also makes my character behaves randomly like suddenly drop dead and then level up....and cannot move...
|
|