本文整理匯總了C#中Server.Items.Corpse.SetRestoreInfo方法的典型用法代碼示例。如果您正苦於以下問題:C# Corpse.SetRestoreInfo方法的具體用法?C# Corpse.SetRestoreInfo怎麽用?C# Corpse.SetRestoreInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Server.Items.Corpse
的用法示例。
在下文中一共展示了Corpse.SetRestoreInfo方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Mobile_CreateCorpseHandler
public static Container Mobile_CreateCorpseHandler(Mobile owner, HairInfo hair, FacialHairInfo facialhair, List<Item> initialContent, List<Item> equipedItems)
{
bool shouldFillCorpse = true;
//if ( owner is BaseCreature )
// shouldFillCorpse = !((BaseCreature)owner).IsBonded;
Corpse c = new Corpse(owner, hair, facialhair, shouldFillCorpse ? equipedItems : new List<Item>());
owner.Corpse = c;
if ( shouldFillCorpse )
{
for ( int i = 0; i < initialContent.Count; ++i )
{
Item 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;
}
示例2: Mobile_CreateCorpseHandler
public static Container Mobile_CreateCorpseHandler( Mobile owner, HairInfo hair, FacialHairInfo facialhair, List<Item> initialContent, List<Item> equipItems )
{
bool shouldFillCorpse = true;
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];
c.DropItem( item );
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;
}
示例3: 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;
}