Пример #1
0
 public virtual void OnChop(Mobile from)
 {
     if (m_Addon != null && from.InRange(GetWorldLocation(), 3))
     {
         m_Addon.OnChop(from);
     }
     else
     {
         from.SendLocalizedMessage(500446); // That is too far away.
     }
 }
Пример #2
0
 public virtual void OnChop(Mobile from)
 {
     if (m_Addon != null && from.InRange(GetWorldLocation(), 3) && from.InLOS(this))
     {
         m_Addon.OnChop(from);
     }
     else
     {
         from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1019045); // I can't reach that.
     }
 }