Players health
#5

lol onplayerupdate....

// ongamemodeinit

pawn Код:
SetTimer("HealthRepair", 1000, true);//1 seconds
// Somewhere in your script
pawn Код:
forward HealthRepair();
public HealthRepair()
{
    for(new i=0; i < MAX_PLAYERS; i++)
    {
        SetPlayerHealth(i,1000);
    }
    return 1;
}
Reply


Messages In This Thread
Players health - by Shockey - 03.08.2010, 21:39
Re: Players health - by Kar - 03.08.2010, 21:43
Re: Players health - by Shockey - 03.08.2010, 21:44
Re: Players health - by Mauzen - 03.08.2010, 21:44
Re: Players health - by Kar - 03.08.2010, 21:50
Re: Players health - by Shockey - 03.08.2010, 21:51
Re: Players health - by Conroy - 03.08.2010, 21:51

Forum Jump:


Users browsing this thread: 1 Guest(s)