07.10.2013, 11:40
? I know how to create and respawn vehicle... I don't understand why my script don't call OnVehicleDeath when car explodes(when i sets vehicle health 230).
Код:
public OnVehicleSpawn(vehicleid)
{
if(tInfo[vehicleid][vOwned])
{
if(!IsABike(vehicleid))
{
SetVehicleHealth(vehicleid, 230);
}
}
return 1;
}


