View Single Post
Old 04-05-14, 09:55 AM   #3103
TheDarkWraith
Black Magic
 
Join Date: Jun 2007
Posts: 11,962
Downloads: 147
Uploads: 5


Default

Quote:
Originally Posted by Gammel View Post
so i had to type in
0006A674 to add extra 60.000 meters?
Nope. You only reverse the byte order, not the individual nibbles themselves. A byte in this context is two characters: 00, AA, 3A, etc. So 60,000 meters in hex is 476A6000. Let's break that up into bytes:
47 6A 60 00

Now reverse them:
00 60 6A 47

The answer is: 00606A47
TheDarkWraith is offline   Reply With Quote