Àοë±Û : |
return base.CanEquip( from ); |
Àοë±Û : |
// XmlAttachment check for CanEquip
if(!Server.Engines.XmlSpawner2.XmlAttach.CheckCanEquip(this, from))
{
return false;
} else
{
return base.CanEquip( from );
}
|
Àοë±Û : |
return base.OnEquip( from ); |
Àοë±Û : |
// XmlAttachment check for OnEquip
Server.Engines.XmlSpawner2.XmlAttach.CheckOnEquip(this, from);
return base.OnEquip( from );
|
Àοë±Û : |
base.OnRemoved( parent ); |
Àοë±Û : |
// XmlAttachment check for OnRemoved
Server.Engines.XmlSpawner2.XmlAttach.CheckOnRemoved(this, parent);
base.OnRemoved( parent );
|
Àοë±Û : |
{
return base.CanEquip( from );
}
|
Àοë±Û : |
// XmlAttachment check for CanEquip
if(!Server.Engines.XmlSpawner2.XmlAttach.CheckCanEquip(this, from))
{
return false;
} else
{
return base.CanEquip( from );
}
|
Àοë±Û : |
// XmlAttachment check for OnEquip
Server.Engines.XmlSpawner2.XmlAttach.CheckOnEquip(this, from);
return true;
|
Àοë±Û : |
m.Delta( MobileDelta.WeaponDamage );
}
}
|
Àοë±Û : |
m.Delta( MobileDelta.WeaponDamage );
}
// XmlAttachment check for OnRemoved
Server.Engines.XmlSpawner2.XmlAttach.CheckOnRemoved(this, parent);
}
|
Àοë±Û : |
from.CheckStatTimers();
}
} |
Àοë±Û : |
from.CheckStatTimers();
}
// XmlAttachment check for OnEquip and CanEquip
if(parent is Mobile)
{
if(Server.Engines.XmlSpawner2.XmlAttach.CheckCanEquip(this, (Mobile)parent))
{
Server.Engines.XmlSpawner2.XmlAttach.CheckOnEquip(this, (Mobile)parent);
} else
{
((Mobile)parent).AddToBackpack(this);
}
}
}
|
Àοë±Û : |
from.CheckStatTimers();
}
}
|
Àοë±Û : |
from.CheckStatTimers();
}
// XmlAttachment check for OnRemoved
Server.Engines.XmlSpawner2.XmlAttach.CheckOnRemoved(this, parent);
}
|