19.02.2012, 01:05
This is a loop, but this isn't a properly working one.
This loops through all the players and refills their health.
pawn Код:
stock SetPlayerHealthFull()
{
for(new i=0; i<MAX_PLAYERS; i++(
SetPlayerHealth(i, 100);
return 1;
}