19.05.2017, 05:53
Try this, It does not detect the person who used the cheat but should restore the health of the vehicle after using this cheat.
EVF.inc:
https://sampforum.blast.hk/showthread.php?tid=611142
PHP код:
public OnVehicleHealthChange(vehicleid,Float:newhealth,Float:oldhealth){
if(newhealth <= 0.0 && oldhealth >= 300.0 && VectorSize(newhealth-oldhealth,0.0,0.0) >= 300.0) return 0;
return 1;
}
https://sampforum.blast.hk/showthread.php?tid=611142