Example #1
0
 private static void OnLogin(LoginEventArgs e)
 {
     if (e.Mobile.AccessLevel != AccessLevel.Player &&
         s_ErrorLog.Count != 0 &&
         !s_Checked.Contains(e.Mobile))
     {
         ErrorsNotifyGump.SendTo(e.Mobile);
     }
 }
Example #2
0
 public static void Notify(Mobile m)
 {
     if (m.HasGump(typeof(ErrorsGump)))
     {
         ErrorsGump.SendTo(m);
     }
     else
     {
         ErrorsNotifyGump.SendTo(m);
     }
 }