本文整理汇总了C#中Server.Item.CanEquip方法的典型用法代码示例。如果您正苦于以下问题:C# Item.CanEquip方法的具体用法?C# Item.CanEquip怎么用?C# Item.CanEquip使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Server.Item
的用法示例。
在下文中一共展示了Item.CanEquip方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EquipItem
public bool EquipItem( Item item )
{
if ( item == null || item.Deleted || !item.CanEquip( this ) )
return false;
if ( CheckEquip( item ) && OnEquip( item ) && item.OnEquip( this ) )
{
if ( m_Spell != null && !m_Spell.OnCasterEquiping( item ) )
return false;
AddItem( item );
item.OnAfterEquip( this );
return true;
}
return false;
}
示例2: EquipItem
public virtual bool EquipItem( Item item )
{
if ( item == null || item.Deleted || !item.CanEquip( this ) )
return false;
if ( CheckEquip( item ) && OnEquip( item ) && item.OnEquip( this ) )
{
if ( m_Spell != null && !m_Spell.OnCasterEquiping( item ) )
return false;
//if ( m_Spell != null && m_Spell.State == SpellState.Casting )
// m_Spell.Disturb( DisturbType.EquipRequest );
AddItem( item );
return true;
}
return false;
}
示例3: CanUse
public static bool CanUse( Mobile from, Item toUse )
{
if( from == null || toUse == null )
return false;
if( from.Frozen )
from.SendAsciiMessage( "You are frozen and you cannot do that." );
else if( !toUse.Movable )
from.SendAsciiMessage( "You can't use that." );
else if( !toUse.IsChildOf( from.Backpack ) && toUse.Parent != from && !from.InRange( toUse.Location, 4 ) && !toUse.IsChildOf( from.BankBox ) && !from.BankBox.Opened )
from.SendAsciiMessage( "You can't reach that." );
else if( !from.InLOS( toUse ) && !toUse.IsChildOf( from.BankBox ) && !from.BankBox.Opened )
from.SendAsciiMessage( "You can't see that." );
else
return toUse.CanEquip( from );
return false;
}