02.06.2015, 15:10
How do the vehicle will be frozen as it would be impossible to drive it even if driving the vehicle?
Thanks for the help.
Thanks for the help.
#include "../include/vehicleutil.inc"
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
SetVehicleEngineState(vehicleid, 1)// 1 to turn on // either no need tho
return 1;
}
public OnPlayerExitVehicle(playerid, vehicleid)
{
SetVehicleEngineState(vehicleid, 0)// 0 to turn off // either no need tho
return 1;
}