Jump to content
  • 0

[GF/RP] sa scada viata cand lovesti masina


Question

4 answers to this question

Recommended Posts

Posted

Adauga asta

public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
	if(GetPlayerState(playerid) == 2)
	{
		new carid = GetPlayerVehicleID(playerid);

		new Float:vehHealth;
		new Float:Health, Float:Armour;

		GetVehicleHealth(carid, vehHealth);

		GetPlayerArmour(playerid, Armour);
		GetPlayerHealth(playerid, Health);
		if(Armour != 0)
		{
			vehHealth = vehHealth/10;
			SetPlayerArmour(playerid, vehHealth);
		}
		else if(Health != 0)
 		{
			vehHealth = vehHealth/10;
			SetPlayerHealth(playerid, vehHealth);
		}
	}
    return 1;
}

i0418xcttya707ofg.jpg

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.