07.11.2010, 16:54 
	
	
	
		Here:
You could also add an streamer, and only stream the chosen pickups for admins only.
	
	
	
	
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
if( pickupid == HealthPickup && IsPlayerAdmin(playerid))
{
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid,COLOR_ORANGERED,"You picked up Health!");
}
return 1;
}


