27.07.2017, 21:47
Hello, I'm trying to get a random id of a car, but I don't want these down here, when I use a command for this, I'm getting any random number from 400 to 611, but the SendClientMessage with a blue text never pop up in a chat, only a green message, so I don't even know, if that carID = randomEx(494,536); is called, any reasons?
PHP код:
new carID=randomEx(400,611), string[96];
if(carID != 430||435||446||449||450||452||453||454||460||472||473||484||493||537||538||539||553||569||570||577||584||590||591||592||594||595||606||607||608||610||611)
{
format(string, sizeof(string), "You got vehicle ID: %d!",carID);
SCM(playerid, GREEN, string);
return 1;
}
else
{
carID = randomEx(494,536);
format(string, sizeof(string), "You got vehicle ID: %d!",carID);
SCM(playerid, BLUE, string);
return 1;
}