Exemple #1
0
 private static void OnErrors(CommandEventArgs e)
 {
     if (e.ArgString == null || e.ArgString == "")
     {
         ErrorsGump.SendTo(e.Mobile);
     }
     else
     {
         Report(e.ArgString + " - " + e.Mobile.Name);
     }
 }
Exemple #2
0
 public static void Notify(Mobile m)
 {
     if (m.HasGump(typeof(ErrorsGump)))
     {
         ErrorsGump.SendTo(m);
     }
     else
     {
         ErrorsNotifyGump.SendTo(m);
     }
 }
 private void Errors()
 {
     ErrorsGump.SendTo(Owner);
 }