Finding a Character name

Started by benny3t3, December 03, 2010, 11:04:36 PM

Previous topic - Next topic

benny3t3

I overheard(saw) Hetoan2 saying that at least in Call of Duty games, you can find characters by searching for their names... How do you do that?

Please don't say ASCII, because I don't know what that means xD

MOD EDIT: fixed typos because I'm a grammar nazi

dcx2

#1
ASCII is just a standard way of representing letters using 8-bit values.

For instance, the string "benny3t3" in ASCII would look like

62656E6E 79337433

That's because

0x62 = the letter 'b'
0x65 = the letter 'e'
0x6E = the letter 'n'
etc

Either use the ASCII<->Hex converter on the Code Database's arsenel...

http://geckocodes.org/index.php?arsenal=3

Or use the ASCII table yourself.  Note the "Hx" and "Chr" columns.

http://www.asciitable.com/

doomkaiber001

#2
49747320 7265616C
20656173 7920746F
20757365 20415343
49492077 68656E20
796F7520 67657420
74686520 68616E67
206F6620 697421

The translator doesn't convert Hex back to Words in this case. It'll take you a while to find out what this means!

benny3t3

Yeah, you are right, why is that I wonder?

Thanks, I'll figure that out eventually.

dcx2

Hit the up caret (the ^ right above where the ASCII comes out as Hex)

doomkaiber001

I tried it; the result is a load of squares.