Exemplo n.º 1
0
 public override void OnHelpReceived(object sender, IRCHelpEventArgs e)
 {
     if (e.Topic == "urlshortener")
     {
         Connection C = (Connection)sender;
         C.WriteLine("PRIVMSG " + e.Target + " :" + e.Nick + " :Shortens every link sent do channel. Uses tinyurl's API.");
     }
 }
Exemplo n.º 2
0
 public override void OnHelpReceived(object sender, IRCHelpEventArgs e)
 {
     if (e.Topic == "websitetitle")
     {
         Connection C = (Connection)sender;
         C.WriteLine("PRIVMSG " + e.Target + " :" + e.Nick + " :Sends to channel a title of website sent to channel."); // Yo dawg
     }
 }