28.09.2017, 20:05
how to make when anyone exits an airplane get a parachute because my anticheats remove the default parachute when you get out of the airplane.
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
new model = GetVehicleModel(vehicleid);
if(model == 460 || model == 476) GivePlayerWeapon(playerid,46, 10);
return 1;
}