30.12.2010, 02:41
There is maybe other cars with boot, so you need to add them yourself..
pawn Код:
stock
IsBootCar(vehicleid)
{
new
car = GetVehicleModel(vehicleid);
switch(car)
{
case 401..402, 405, 409, 410, 412, 419..421, 426, 429, 436, 438, 439, 442, 445, 466, 467, 474, 475, 477, 480, 491, 492, 496, 507, 516..518, 526, 527, 529, 533, 534, 536, 540, 542, 548..551, 545, 555, 558, 559, 560, 562, 566, 567, 575, 576, 580, 585, 587, 596..598, 600, 602, 603: return car;
default: return 0;
}
}