12.02.2013, 18:14
Use something like:
That checks both vehicle together. Easy and short.
pawn Код:
if(GetVehicleModel(vehicleid) == 520 || 432 )
{
if(GetPlayerScore(playerid) < 1000 )
{
SendClientMessage(playerid,0xFF0000FF,"You cant drive this vehicle you noob");
RemovePlayerFromVehicle( playerid );
}
}