19.05.2016, 20:58
Try like this:
I am not sure if this works but try it
Код:
new plate[15]; new LetterList[26][] = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" }; new stringpl[5]; for(new i=0; i < 3; i++) { format(stringpl, 5, "%s", LetterList[random(26)]); strcat(plate, stringpl); } strcat(plate, "-"); for(new i=0; i < 3; i++) { format(stringpl, 5, "%d", random(9)); strcat(plate, stringpl); }