03.09.2012, 11:01
Howdy Guys.
This code is not working, any fixes?
pawn Код:
// Other code here...
SendClientMessage(playerid, COLOR_CRIMSON, "The vehicle engine is totalled.");
}
}
new Float:health;
GetPlayerHealth(playerid,health);
if (health < 2.0)
{
ApplyAnimation(playerid,"CRACK","crckdeth2",4.0,0,0,0,1,1);
TogglePlayerControllable(playerid,0);
GameTextForPlayer(playerid, "~b~Heavily Injured ~n~ ~r~/die ~w~or ~r~/getcurated", 3000, 4);
}
return 1;
}