Can anyone explain how I can use this formula on large numbers? Like in the millions or billions?
---Edit: I just tried doing it by hand..Code:lets take "3046" as an example divide that by 128 and take the result cut of the decimal values and multiply it with 128... then subtract that result from 3046 then add that result to 128 (this is the first hex part) the second part of the hex value would be the 23 (17 in hex) 3046 / 128 = 23.796875 128 * 23 = 2944 3046 - 2944 = 102 128 + 102 = 230 (E6 in hex) so the result should be E617 -----
For 65535 I get FF80FF, although the tool by vulnavi gives me FFFF03.
And, yes, I double checked my work.
---Edit: The formula is broken as explained.
Number to convert: 1099511648256, Result from vulnavia's tool: 80A081808020
(1099511648256 / 128) * 128 = 1099511648256
1099511648256 - 1099511648256 = 0
0 + 128 = 128 (80)
128 + 128 = 256 (100)
Formula's result: 10080
Sounds legit. /sarcasm
Last edited by IhazEvily; 10-04-2013 at 06:45 AM.

The white one is the same as I posted, and Idle says it's xbox only.
Say you want to find a big number, like 1410065091. You start out like normal.
1410065091 / 128 = 11016133 (remainder)
11016133 * 128 = 1410065024
1410065091 - 1410065024 = 67
67 + 128 = 195 (C3)
So the first value is 195 (C3)
But since the remainder (11016133) is over 128 (or if it's equal to 128), we continue using that remainder.
11016133 / 128 = 86063 (remainder)
86063 * 128 = 11016064
11016133 - 11016064 = 69
69 + 128 = 197 (C5)
Second value is C5.
(C3C5 so far)
Now the rest.
86063 / 128 = 672 (remainder)
672 * 128 = 86016
86063 - 86016 = 47
47 + 128 = 175 (AF)
(C3C5AF so far)
672 / 128 = 5 (remainder)
5 * 128 = 640
672 - 640 = 32
32 + 128 = 160 (A0)
(C3C5AFA0 so far)
and since the remainder is less than 128, it's just 05. So C3C5AFA005 is the final value.
Last edited by AreteSeven; 10-04-2013 at 08:33 AM.
has anyone come across the code for exp% yet?
Anyone have entire hex of:
The Grin Reaper, Legendary Voodoo Mask
The Witching Hour, Legendary Belt
Zunimassa's Trail, Set Boots
Would really appreciate it if you could post it =]
can I use this with the my GOD game which is not patched?