08/03/2021 11:06 
	
	
	Código:
public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
    new Float:health;
    GetVehicleHealth(vehicleid, health);
    
    if(health <= 300.0)
    {
        SetVehicleHealth(vehicleid, 300.0);
        SetVehicleParamsEx(vehicleid, 0, 0, 0, 0, 0, 0, 0);
    }
    return 1;
}
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    new Float:health;
    GetVehicleHealth(vehicleid, health);
    
    if(health <= 300.0)
        SetVehicleParamsEx(vehicleid, 0, 0, 0, 0, 0, 0, 0);
    return true;
}EVO Anti-Cheat
A melhor defesa contra o melhor ataque! ~> Discord
____________________________________________
Soluções personalizadas para SA:MP e Open.MP
Discord: .eduardoac
A melhor defesa contra o melhor ataque! ~> Discord
____________________________________________
Soluções personalizadas para SA:MP e Open.MP
Discord: .eduardoac
