| View previous topic :: View next topic |
| Author |
Message |
Blocker29 How do I cheat?
Reputation: 0
Joined: 07 Apr 2015 Posts: 2 Location: none
|
Posted: Tue Apr 07, 2015 2:30 pm Post subject: need help finding a value |
|
|
how do i find a value of a number that is shown but has a different value from what is shown
example i have 56 cash i add 10 now i have 66 i put that then and press next scan but nothen appears how do i get around that? _________________
Blocker29 |
|
| Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Tue Apr 07, 2015 6:55 pm Post subject: |
|
|
Search for Unknown Initial Value and then when you gain 10 gold, try Increased By 10.
If that doesn't work, do Unknown Initial Value an then when you gain 10 gold, try Changed Value.
After a couple increased or changed scans, you can try to get your gold value to match what it did during your initial scan.
Inside Scan Type, select Compare to First Scan and then search Unchanged Value (because it equals the first scan).
Just be sure to go back into Scan Type and select Compare to Last Scan when you go back to changing the value. |
|
| Back to top |
|
 |
Blocker29 How do I cheat?
Reputation: 0
Joined: 07 Apr 2015 Posts: 2 Location: none
|
Posted: Tue Apr 07, 2015 11:25 pm Post subject: |
|
|
thanks ill try that _________________
Blocker29 |
|
| Back to top |
|
 |
Fresco Grandmaster Cheater
Reputation: 4
Joined: 07 Nov 2010 Posts: 600
|
Posted: Wed Apr 08, 2015 12:20 pm Post subject: |
|
|
There are multiple ways to store some data.
You need to analyze the data that you have.
1) Does the value ever have a decimal part ?
if yes) then you probably need to search a "float" or "double"
2) If the value doesn't have a decimal, then you need to figure out the maximum amount that the value can hold.
if it's between 0 to 255, then search with "byte"
if it's 0 to (about) < 16'000 then 2 bytes
if it's > (about) 10^9 ) then 8 bytes
otherwise 4 bytes
3) when searching floats or doubles, never search with "exact value"
always search "between" -1 and +1 of the value you want to search for.
So for example you have: 36 money, and you know it's a float or a double, search for values between 35 and 37, never search for exact value 36, because of the conversion to integer you might see on screen a value of 36 and the float could be 35.999999999, so searching for exact value 36 would give you no results. _________________
... Fresco |
|
| Back to top |
|
 |
hhhuut Grandmaster Cheater
Reputation: 6
Joined: 08 Feb 2015 Posts: 607
|
Posted: Wed Apr 08, 2015 12:23 pm Post subject: |
|
|
| With one of the "round" options checked you could also scan for exact float/double values. |
|
| Back to top |
|
 |
|