18.06.2011, 18:51
Jezus, stop bumping topics in less then 24 hours...
Make a loop that checks the health of players, when its lower then 10 apply an animation on him, and freeze him
Should look like this:
Make a loop that checks the health of players, when its lower then 10 apply an animation on him, and freeze him
Should look like this:
pawn Код:
for(new 0 = 1; i<MAX_PLAYERS;i++)
{
new Float:health;
GetPlayerHealth(playerid, health);
if(health <= 10)
{
// Bla bla bla
}
}