06.06.2008, 05:09
Again: to complete andre's list: IsABoat
IsABoat(carid)
carid - Vehicle ID that we check
IsABoat(carid)
carid - Vehicle ID that we check
pawn Code:
stock IsABoat(carid)
{
new Operative[] = { 472, 473, 493, 495, 484, 430, 454, 453, 452, 446 };
for(new i = 0; i < sizeof(Operative); i++)
{
if(GetVehicleModel(carid) == i) return 1;
}
return 0;
}