Question on Values
-migrated-
Question on Values Posted on: 03/02/2010 5:43am
Quote Post
disgruntled old man
I searched for a money value (21044) and narrowed down my results and came back with 3 values: byte-52, 2bytes-21044, and 4bytes-21044. When I change the values to lets say 500000 the values change to: byte-32, 2bytes-41248, 4bytes-500000. Is there a way that I can get the 2bytes to be the same as the 4bytes? Thanks in advance.



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!
Re: Question on Values Posted on: 03/02/2010 7:49am
Quote Post
Not really, a 2 byte value will only go up to 65535. 500000 is, in bytes:
0x00 0x07 0xa1 0x20

So the bottom byte is 0x20 (32) and the bottom 2 bytes are 0xa1 0x20 (41248).
Re: Question on Values Posted on: 03/02/2010 4:28pm
Quote Post
disgruntled old man
thanks for the info deity



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!