Page 1 of 1

what to do

Posted: October 22nd, 2016, 1:54 pm
by Apple
What to do to convert the numberized rawcode back to ids?
it's been too long, I forgot about them

Re: what to do

Posted: October 22nd, 2016, 2:39 pm
by Xirizo
What numberized rawcodes?

Re: what to do

Posted: October 22nd, 2016, 4:41 pm
by Apple
usually rawcodes are 'azf0'
4 digits,

but when numberized they become 058239120

Re: what to do

Posted: October 23rd, 2016, 8:42 am
by haxorico
Haxorizer > Integer manager > RawCode to ID.

Re: what to do

Posted: October 23rd, 2016, 2:13 pm
by Fukki
ID: 'azf0' -> number: 1635411504 -> Hex: 617A6630 -> split it: 61 7A 66 30 -> convert to dec: 97 122 102 48
open ascii table
97 -> a
122 -> z
102 -> f
48 -> 0
result: 'azf0' \0.0/

if u need back to number just revert it
spit 'azf0' -> a z f 0 -> ascii table to number: 97 122 102 48 -> hex it: 61 7A 66 30 -> 617A6630 -> convert to dec: 1635411504

my hex fixer can clean all 0.0

Re: what to do

Posted: October 23rd, 2016, 2:38 pm
by Apple
thanks thanks