Server.Mobiles.BaseCreature.CheckGold C# (CSharp) Method

CheckGold() public method

public CheckGold ( Server.Mobile from, Item dropped ) : bool
from Server.Mobile
dropped Item
return bool
        public virtual bool CheckGold( Mobile from, Item dropped )
        {
            if ( dropped is Gold )
                return OnGoldGiven( from, (Gold)dropped );

            return false;
        }
BaseCreature