| View previous topic :: View next topic |
| Author |
Message |
xtreamaj Cheater
Reputation: 0
Joined: 28 May 2007 Posts: 34 Location: Behind you
|
Posted: Fri Aug 20, 2010 5:59 am Post subject: Multiple cheats on trainers |
|
|
Hi,
I'm making a trainer and i have a problem,
I need to make each cheat have like changes on over 200 addresses or so (I know what I'm doing)
And my problem is that it takes a LOT of time.
Like having all of the address set to a certain value... I would have to go one each time.. And x200 for like 30 times would take a ridicules amount of time... Anyone knows how to make this with ease ? ( Sorry, I'm a noob )
|
|
| Back to top |
|
 |
XaLeX Expert Cheater
Reputation: 0
Joined: 19 Aug 2008 Posts: 226
|
Posted: Fri Aug 20, 2010 7:54 am Post subject: |
|
|
use an AA script instead of a cheat.
i.e.
| Code: | [ENABLE]
globalalloc(originalHealth,4)
mov eax, [0040C320] //health address
mov [originalHealth],eax
mov [0040C320], 100 //the value you want to set health to
[DISABLE]
mov eax, [originalHealth]
mov [0040C320], eax
|
for each value you want to change.
|
|
| Back to top |
|
 |
|