23.08.2009, 12:38 
	
	
	
		How can I make it so it doesn't let a player spawn until he logs in?
	
	
	
	
	public OnPlayerRequestSpawn(playerid, classid)
{
if(YourLoginVariable == 0)
{
SendClientMessage(playerid, COLOR, "Error: You have to login before spawn!");
return 0;
}
return 1;
}
.