Example #1
0
 internal void HandleOnHalfop(object sender, HalfopEventArgs e)
 {
     if (OnHalfop != null)
     {
         OnHalfop(this, e);
     }
 }
Example #2
0
 void mClient_OnHalfop(object sender, HalfopEventArgs e)
 {
     AddText(string.Format("*** {0} has halfoped {1}", e.Who, e.Whom));
     UpdateNames();
 }
 public void PluginsOnHalfop(object sender, HalfopEventArgs e)
 {
     OnHalfop(this, e);
 }