I have looked at the map but it is wayyyyyyyyyyyy to complex and i don't understand it.
I think i may have figured out a way to get it too work though.
The trick is to make it so that a few numbers can represent a lot of stuff:
A 0 0 0 0
B 1 2 4 8
C 2 4 8 16
D 4 8 16 32
E 8 16 32 64
F 16 32 64 128
G 32 64 128 256
H 64 128 256 512
the first column represents the written letter in the code, the next four columns represent the number the letter represents (the first letter uses the first column, the second letter the second column...)
The real chart will go from a to z (26 letters) and can represent any number from 0 to around 53 million in just 4 letters!!!!!!!. The idea is that each character will represent a number based on its position in the code and the letter it is. For example:
ACFE = 0+4+64+64 = 132
To program it i will probbably make 4 arrays that have 26 numbers each to store the numbers and use a for loop to assign the numbers (it would suck to have to tye in all 104 numbers in myself). I am currently working on how to convert a number to code but i will get it eventually...
To store the name, 2 digits can store any number to around 1000 i think so i will just give the first character a number (a=1,b=2...) + your level on that topic, what characters are allowed on a b.net name?
The main problem is still converting a number into my binaryish system so any help would still be appreciated. But at least I am making progress...