20.12.2010, 11:21
I did it
:
I hope that i have helped

pawn Код:
//Put in OnGameModeInit:
SetTimer("ArmourHealth",30000,1);
//And, in the end of your gamemode:
forward ArmourHealth();
public ArmourHealth()
{
for(new x=0; x<MAX_PLAYERS; x++)
{
if(IsPlayerConnected(x))
{
SetPlayerHealth(x, 100);
SetPlayerArmour(x, 100);
}
}
}
I hope that i have helped
