public override void OnSpeech(SpeechEventArgs args) { base.OnSpeech(args); if (Insensitive.Equals(args.Speech, m_BonusEntry.Mantra)) { AnkhPendant pendant = args.Mobile.FindItemOnLayer(Layer.Neck) as AnkhPendant; if (pendant != null) { pendant.OnMantraSpoken(args.Mobile, m_BonusEntry); } } }
public InternalTimer(AnkhPendant from) : base(TimeSpan.FromMinutes(5)) { m_From = from; }