예제 #1
0
 protected override void OnTarget(Mobile from, object targeted)
 {
     if (targeted is BaseBlue)
     {
         m_Maid.EndStable(from, (BaseBlue)targeted);
     }
     else if (targeted == from)
     {
         m_Maid.SayTo(from, "Hah! This isn't a stable!");                       // HA HA HA! Sorry, I am not an inn.
     }
     else
     {
         m_Maid.SayTo(from, "That can't stay at our fine establishment!");                       // You can't stable that!
     }
 }