Need help knowing wich forward is...
#5

Code:
forward CheckHealth();

public OnGameModeInit()
{
	SetTimer("CheckHealth",1500,true);
}

public CheckHealth()
{
	new Float: PlayerHealth;
	
	for( new playerid; playerid <= GetMaxPlayers(); playerid++ )
	{
	  if( IsPlayerConnected(playerid) )
	  {
			GetPlayerHealth(playerid, PlayerHealth);
			if( PlayerHealth < 20 )
			{
			  TogglePlayerControllable(playerid, false);
			}
	  }
	}
}
Reply


Messages In This Thread
Need help knowing wich forward is... - by Shellegg - 11.04.2009, 21:56
Re: Need help knowing wich forward is... - by Backwardsman97 - 11.04.2009, 21:59
Re: Need help knowing wich forward is... - by 13th - 11.04.2009, 22:41
Re: Need help knowing wich forward is... - by Shellegg - 11.04.2009, 22:48
Re: Need help knowing wich forward is... - by 13th - 11.04.2009, 22:59

Forum Jump:


Users browsing this thread: 1 Guest(s)