本文整理匯總了C#中Server.Items.Corpse.Delete方法的典型用法代碼示例。如果您正苦於以下問題:C# Corpse.Delete方法的具體用法?C# Corpse.Delete怎麽用?C# Corpse.Delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Server.Items.Corpse
的用法示例。
在下文中一共展示了Corpse.Delete方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: OnCarve
public override void OnCarve(Mobile from, Corpse corpse)
{
if (corpse.Carved == false)
{
base.OnCarve(from, corpse);
new Blood(Utility.RandomMinMax(4650, 4655)).MoveToWorld(corpse.Location, corpse.Map);
new GoblinEars().MoveToWorld(corpse.Location, corpse.Map);
corpse.Delete();
}
}
示例2: ClaimCorpse
public static bool ClaimCorpse( Mobile from, Corpse corpse, ClaimOption option )
{
if ( null == corpse || corpse.Owner == from )
return false;
Container goldBag = GetGoldBag( from );
Container silverBag = GetSilverBag( from );
Container lootBag = GetLootBag( from );
if ( ClaimConfig.AggregateSilver )
AggregateSilver( from, silverBag );
if ( ClaimOption.Carve == option && !(corpse.Owner is PlayerMobile) )
corpse.Carve( from, null );
LootCorpse( from, corpse, option, goldBag, silverBag, lootBag );
AwardGold( from, corpse, goldBag );
corpse.Delete();
return true;
}