public virtual void OfferHeal(PlayerMobile m) { Direction = GetDirectionTo(m); if (m.CheckYoungHealTime()) { Say(501229); // You look like you need some healing my child. m.PlaySound(0x1F2); m.FixedEffect(0x376A, 9, 32); m.Hits = m.HitsMax; } else { Say(501228); // I can do no more for you at this time. } }
public override void OfferHeal(PlayerMobile m) { Direction = GetDirectionTo(m); if (m.CheckYoungHealTime()) { Say("Let me annoint thee with oil, my child."); m.PlaySound(0x1F2); m.FixedEffect(0x376A, 9, 32); m.Hits = m.HitsMax; } else { Say(501228); // I can do no more for you at this time. } }