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