18.03.2011, 21:49
pawn Код:
stock IsNotValidVehicle(model)
{
switch(model)
{
case 448,461,462,463,468,471,509,510,521,522,523,581,586,449: //5248
return 0;
}
return 1;
}
EDIT: If that doesnt work, try
pawn Код:
stock IsNotValidVehicle(model)
{
switch(model)
{
case 448,461,462,463,468,471,509,510,521,522,523,581,586,449: //5248
}
return 0;
}