How to find value beyond 4 byte limit?
How to find value beyond 4 byte limit? Posted on: 12/17/2013 6:13pm
Quote Post

If a game's values were to be 4b*8 and you wanted to find/change a value beyond that 4 byte limit how would you go about doing it?

So for example the value of my something is 500 million. How would I find that value?

RE: How to find value beyond 4 byte limit? Posted on: 12/17/2013 7:22pm
Quote Post
disgruntled old man

Here's the ranges for the different types. Try scanning float or double.

Byte (values between 0 and 255 or -128 to 127 if signed)
2 byte (values between 0 and 65536 or -32768 to 32767 if signed)
4 byte (values between 0 and 4294967295 or -2147483648 and 2147483647 if signed)
8 byte (values between 0 and 18446744073709551614 or -9223372036854775808 and 9223372036854775807 if signed)
Float (values between 1.5 x 10^-45 and 3.4 x 10^38 )
Double (values between 5.0 x 10^-324 and 1.7 x 10^308 )




New to Kong Hack and want to learn the basics? Check out the [Kong Hack 101] and the [Hacking 101].
Wanna learn how we make the hacks? Start with getting [the tools], then check these out: [AoB tutorial] | [.sol guide] | [Unity3d tutorial] | kadat's [video tutorials]
And if you don't already have it, check out the [Kong Hack Ultra Trainer]. You'll be glad you did!