Question!
#1

How do I like when a player has 10HP such animal to remain on the down / fall and freeze?
Reply
#2

BUMP! help please
Reply
#3

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:

pawn Код:
for(new 0 = 1; i<MAX_PLAYERS;i++)
{
    new Float:health;
    GetPlayerHealth(playerid, health);
    if(health <= 10)
    {
        // Bla bla bla
    }
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)