18.02.2013, 00:27
Hello, I wanted to know how i can set the health for all police vehicles to 5000, Thank you for your help
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
if(GetVehicleModel(vehicleid) == 596/*|| GetVehicleModel(vehicleid) == other police car ids */)
{
SetVehicleHealth(vehicleid,5000);
}
return 1;
}