當前位置: 首頁>>代碼示例>>C#>>正文


C# Corpse.AddItem方法代碼示例

本文整理匯總了C#中Server.Items.Corpse.AddItem方法的典型用法代碼示例。如果您正苦於以下問題:C# Corpse.AddItem方法的具體用法?C# Corpse.AddItem怎麽用?C# Corpse.AddItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Server.Items.Corpse的用法示例。


在下文中一共展示了Corpse.AddItem方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Mobile_CreateCorpseHandler

        public static Container Mobile_CreateCorpseHandler( Mobile owner, HairInfo hair, FacialHairInfo facialhair, List<Item> initialContent, List<Item> equipItems )
        {
            Corpse c = new Corpse( owner, hair, facialhair, equipItems );
            owner.Corpse = c;

            for ( int i = 0; i < initialContent.Count; ++i )
            {
                Item item = (Item) initialContent[i];

                if ( owner.IsPlayer && item.Parent == owner.Backpack )
                    c.AddItem( item );
                else
                    c.DropItem( item );

                if ( owner.IsPlayer )
                    c.SetRestoreInfo( item, item.Location );
            }

            Point3D loc = owner.Location;
            Map map = owner.Map;

            if ( map == null || map == Map.Internal )
            {
                loc = owner.LogoutLocation;
                map = owner.LogoutMap;
            }

            c.MoveToWorld( loc, map );

            return c;
        }
開發者ID:Ravenwolfe,項目名稱:xrunuo,代碼行數:31,代碼來源:Corpse.cs

示例2: Mobile_CreateCorpseHandler

        public static Container Mobile_CreateCorpseHandler( Mobile owner, HairInfo hair, FacialHairInfo facialhair, List<Item> initialContent, List<Item> equipItems )
        {
            bool shouldFillCorpse = true;

            //if ( owner is BaseCreature )
            //	shouldFillCorpse = !((BaseCreature)owner).IsBonded;

            Corpse c = new Corpse( owner, hair, facialhair, shouldFillCorpse ? equipItems : new List<Item>() );

            owner.Corpse = c;

            if ( shouldFillCorpse )
            {
                for ( int i = 0; i < initialContent.Count; ++i )
                {
                    Item item = initialContent[i];

                    if ( Core.AOS && owner.Player && item.Parent == owner.Backpack )
                        c.AddItem( item );
                    else
                        c.DropItem( item );

                    if ( owner.Player && Core.AOS )
                        c.SetRestoreInfo( item, item.Location );
                }
            }
            else
            {
                c.Carved = true; // TODO: Is it needed?
            }

            Point3D loc = owner.Location;
            Map map = owner.Map;

            if ( map == null || map == Map.Internal )
            {
                loc = owner.LogoutLocation;
                map = owner.LogoutMap;
            }

            c.MoveToWorld( loc, map );

            return c;
        }
開發者ID:justdanofficial,項目名稱:khaeros,代碼行數:44,代碼來源:Corpse.cs

示例3: OnCarve

		public override void OnCarve( Mobile from, Corpse corpse, Item with )
		{
			base.OnCarve( from, corpse, with );

			if ( corpse == null )
				return;

			for ( int i = 0; i < 6; i++ )
			{
				corpse.AddItem( new Server.Engines.Plants.Seed() );
				corpse.AddItem( new GreenThorns( Utility.RandomMinMax( 2, 5 ) ) );
			}

			from.SendMessage( "As you cut into her body you notice she is more plant-like than elven." );
		}
開發者ID:greeduomacro,項目名稱:cov-shard-svn-1,代碼行數:15,代碼來源:Kaysa.cs


注:本文中的Server.Items.Corpse.AddItem方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。