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

PackArcanceScroll() public method

public PackArcanceScroll ( double chance ) : void
chance double
return void
        public void PackArcanceScroll( double chance )
        {
            if ( !Core.ML || chance <= Utility.RandomDouble() )
                return;

            PackItem( Loot.Construct( Loot.ArcaneScrollTypes ) );
        }
BaseCreature