07.02.2012, 21:25
Well I've made this thing but aint working. If player enters turismo or infernus and he/she doesnt have 50+ score then he/she will be removed from the vehicle. I've made a code but aint working at all.
So if player doesnt have 50 score he will be removed from the vehicle
If he have the required score he/she wont be removed.
PHP код:
if(GetVehicleModel(vehicleid) == 451)
{
if(GetPlayerScore(playerid) <50) return RemovePlayerFromVehicle(playerid);
return 1;
}
If he have the required score he/she wont be removed.