View previous topic :: View next topic |
Author |
Message |
sutar Newbie cheater
Reputation: 0
Joined: 10 Aug 2013 Posts: 21
|
Posted: Mon Aug 12, 2013 12:42 am Post subject: How to change money value |
|
|
I have the following code that changes the value of money
Code: | 0EADF754 - 89 88 88000000 - mov [eax+00000088],ecx |
First of all i did a 4 byte scan for the money value.Then i got an address for it.Then i did "Find Out what writes the address" and from this i got the above code.
I want that every time when the value of the money changes,i want it to change it by 1000 more than the usual change.Then tell me what should i do??
|
|
Back to top |
|
 |
Amami De Kaito Expert Cheater
Reputation: 5
Joined: 06 Feb 2013 Posts: 110 Location: 3/44
|
Posted: Mon Aug 12, 2013 2:20 am Post subject: Re: How to change money value |
|
|
nil wrote: | I have the following code that changes the value of money
Code: | 0EADF754 - 89 88 88000000 - mov [eax+00000088],ecx |
First of all i did a 4 byte scan for the money value.Then i got an address for it.Then i did "Find Out what writes the address" and from this i got the above code.
I want that every time when the value of the money changes,i want it to change it by 1000 more than the usual change.Then tell me what should i do?? |
mov [eax+00000088],(int)1000 <--- Value whatever
If is Float type value
ex.
mov [eax+00000088],(float)1000
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Mon Aug 12, 2013 4:31 am Post subject: |
|
|
Code: | add ecx,#1000
mov [eax+00000088],ecx |
|
|
Back to top |
|
 |
sutar Newbie cheater
Reputation: 0
Joined: 10 Aug 2013 Posts: 21
|
Posted: Mon Aug 12, 2013 10:21 am Post subject: |
|
|
++METHOS wrote: | Code: | add ecx,#1000
mov [eax+00000088],ecx |
|
i did that but only the visual value got changed.When i went to buy something
the money was not there.
Now i have did the "Fint out what access the address" scan of the money address
Code: | 1ED5E690 - 8B 97 88000000 - mov edx,[edi+00000088]
1ED5E6EB - 8B B3 88000000 - mov esi,[ebx+00000088]
020B0006 - 89 88 88000000 - mov [eax+00000088],ecx
1ED5F525 - 8B 99 88000000 - mov ebx,[ecx+00000088]
|
See that the last code writes to the money value
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Mon Aug 12, 2013 6:09 pm Post subject: |
|
|
Did you have another question?
|
|
Back to top |
|
 |
sutar Newbie cheater
Reputation: 0
Joined: 10 Aug 2013 Posts: 21
|
Posted: Mon Aug 12, 2013 8:27 pm Post subject: |
|
|
++METHOS wrote: | Did you have another question? |
Why?Is it impossible to change the value of money?
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Mon Aug 12, 2013 9:01 pm Post subject: |
|
|
Is it an online game?
If not, then you can change the value of the money. If you are only changing the visual representation of money, then you either have the wrong address, instruction or both.
However, I am going to assume that it's an online game since you only want to change your money by a small amount, and only during a transaction. That being the case...forget about it.
|
|
Back to top |
|
 |
sutar Newbie cheater
Reputation: 0
Joined: 10 Aug 2013 Posts: 21
|
Posted: Mon Aug 12, 2013 9:04 pm Post subject: |
|
|
++METHOS wrote: | Is it an online game?
If not, then you can change the value of the money. If you are only changing the visual representation of money, then you either have the wrong address, instruction or both. |
Yes it is an online game.But can you tell me why we cant change the value.
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Mon Aug 12, 2013 9:10 pm Post subject: |
|
|
The value for money is most likely being handled and stored on the server. Unless you plan on having physical access to the server, know someone that does, or plan on breaking the law, you're out of luck. The possibility of being able to make changes to this value is very slim.
|
|
Back to top |
|
 |
sutar Newbie cheater
Reputation: 0
Joined: 10 Aug 2013 Posts: 21
|
Posted: Mon Aug 12, 2013 9:11 pm Post subject: |
|
|
Thanks, got it
|
|
Back to top |
|
 |
|