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

PackGem() public method

public PackGem ( int amount ) : void
amount int
return void
        public void PackGem( int amount )
        {
            if ( amount <= 0 )
                return;

            Item gem = Loot.RandomGem();

            gem.Amount = amount;

            PackItem( gem );
        }

Same methods

BaseCreature::PackGem ( ) : void
BaseCreature::PackGem ( int min, int max ) : void
BaseCreature