View previous topic :: View next topic |
Author |
Message |
LypsiK How do I cheat?
Reputation: 0
Joined: 10 Nov 2009 Posts: 3
|
Posted: Tue Nov 10, 2009 10:30 am Post subject: Increase value? |
|
|
Hi,
Someone can tell me how I can add money to a value without replacing the value.
For exemple My actual gold are 5000 and I want to have 6000.
What can I whrite in value form to have actual money +1000?
(I want to make a trainer with that)
I have found the adress for gold and that work fine for me but my girlfriend can t use CE so I try to make her a trainer to add 1000 gold when she press Num7
Thanks for helping
|
|
Back to top |
|
 |
Pot.Smoking.Terrorist Expert Cheater
Reputation: 0
Joined: 15 Jun 2008 Posts: 175 Location: Germany
|
Posted: Tue Nov 10, 2009 11:21 am Post subject: |
|
|
Do you passed the CE Tutorials? There you learn how to increase Values instead of decreasing them
|
|
Back to top |
|
 |
LypsiK How do I cheat?
Reputation: 0
Joined: 10 Nov 2009 Posts: 3
|
Posted: Tue Nov 10, 2009 12:44 pm Post subject: |
|
|
yeah i have passed the tutorial but tutorial only explain how to replace a value.
I haven t found on the tutorial and on the forum how to increase a value by +1000 ( so i won t set value of 1000 in the value form but i want to increase my actual gold amount by 1000)
|
|
Back to top |
|
 |
SwaggaJackin' Master Cheater
Reputation: 2
Joined: 06 Nov 2009 Posts: 304
|
Posted: Tue Nov 10, 2009 12:51 pm Post subject: |
|
|
I think I understand what he is asking for.
For instance, if you have an address in your table, you can set it to a hotkey to set the value to x amount.
However, he is not looking to set the value, but rather increase it by 1000 when a hotkey is pressed. I don't think cheat engine can do that in its current form, however it is possible with the assembler.
Until then, just find the value, and add 1000 to it manually.
|
|
Back to top |
|
 |
LypsiK How do I cheat?
Reputation: 0
Joined: 10 Nov 2009 Posts: 3
|
Posted: Tue Nov 10, 2009 1:27 pm Post subject: |
|
|
your right, sorry for my bad english ^^.
Thanks for your answer, i will try to see what can i do with assembler
|
|
Back to top |
|
 |
Pot.Smoking.Terrorist Expert Cheater
Reputation: 0
Joined: 15 Jun 2008 Posts: 175 Location: Germany
|
Posted: Wed Nov 11, 2009 6:29 am Post subject: |
|
|
LypsiK wrote: | yeah i have passed the tutorial but tutorial only explain how to replace a value.
I haven t found on the tutorial and on the forum how to increase a value by +1000 ( so i won t set value of 1000 in the value form but i want to increase my actual gold amount by 1000) |
Step 7 (PW=013370)
'"ADD [00901234],9" to increase the address at 00901234 with 9'
This part of the tutorial explains how to increase instead of decrease
|
|
Back to top |
|
 |
Radiation Grandmaster Cheater
Reputation: 14
Joined: 17 Jun 2009 Posts: 842 Location: Chernobyl
|
Posted: Wed Nov 11, 2009 2:24 pm Post subject: |
|
|
if you're using vb6 to write the trainer:
Dim money As Long
Call ReadALong("GameName", &H00000000, money)
Call WriteALong("GameName", &H00000000, money + 1000)
replace these things:
"GameName" = your window title of the game
&H00000000 = money address, use like this for example: &H13F7418
that should do it.
ask me for the module.
_________________
|
|
Back to top |
|
 |
|