06.02.2010, 20:36 
	
	
	 , it works with other things, this is my whole code...
, it works with other things, this is my whole code...Код:
public CheckArmour()
{
  for (new i=0; i < MAX_PLAYERS; i++)
  {
    if (IsPlayerConnected(i))
    {
       new Float:armour;
       GetPlayerArmour(i, armour);
       SetPlayerArmour(i, armour);
       PlayerInfo[i][pArmour] = armour;
       OnPlayerUpdate(i);
     }
  }
}
SetPlayerArmour(playerid, PlayerInfo[playerid][pArmour]); - That works on login.


