Server.Items.CreatureBackpack.OnDragLift C# (CSharp) Méthode

OnDragLift() public méthode

public OnDragLift ( Mobile from ) : bool
from Mobile
Résultat bool
		public override bool OnDragLift( Mobile from )
		{
			if ( from.AccessLevel > AccessLevel.Player )
				return true;

			from.SendLocalizedMessage( 500169 ); // You cannot pick that up.
			return false;
		}