13.06.2013, 13:11 
	
	
	
		How i detect if player is holding weapons in hand?
	
	
	
	
 , and how i can just to put some weapon in player hand if you get me xDpublic OnPlayerUpdate(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, Float:Size,Float:X,Float:Y,Float:Z))
{
if(GetPlayerWeapon(playerid))
{
ResetPlayerWeapons(playerid);
GameTextForPlayer(playerid, "You Cannot Have A Weapon On This Cordinates !", 3000, 1);
return 1;
}
}
return 1;
}
..