Hi guys. could you help me generate numbers and letters in the same string?
Does not work. how could i do?
Does not work. how could i do?
Code:
stock CreateVehiclePlate()
{
new string[10];
format(string, sizeof(string), "%s %d %s %s", random('A'-'Z'), random('0'-'9'), random('A'-'Z'), random('A'-'Z'));
return string;
}