03.01.2014, 09:56
add this to your cmd after this
if(!IsNumeric(tmp)) //and so on....
line
if(!IsNumeric(tmp)) //and so on....
line
pawn Код:
if(!IsLegitVeh(car)) return SendClientMessage(playerid,red,"ERROR: Illegal vehicle-model");
//the function:
stock IsLegitVeh(d)
{
switch(d)
{
case 520,425,432,447: d=0;//add more model id's here if needed.
default: d=1;
}
return d;
}