17.03.2013, 16:51
How would I make the sendclientmessage in this could stop from being spammed, And stop it from being looped so it on'y does it once and stops.
pawn Код:
if(IsPlayerInAnyVehicle(playerid))
{
new vehicleid = GetPlayerVehicleID(playerid);
new Float:vHP;
new engine, lights, alarm, doors, bonnet, boot, objective;
GetVehicleHealth(vehicleid, vHP);
if(vHP < 400.00)
{
SetVehicleHealth(vehicleid, 400.00);
SendClientMessage(playerid, YELLOW, "The vehicle has taken to much damage and has broken.");
GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
SetVehicleParamsEx(vehicleid, 0, lights, alarm, doors, bonnet, boot, objective);
}
}