Exemplo n.º 1
0
 public override bool Hook_UserPart(Network network, User user, Channel channel, string message, bool updated)
 {
     if (!updated)
     {
         return true;
     }
     Message(channel.retrieveWindow(), user.Nick + " parted");
     return false;
 }
Exemplo n.º 2
0
 public override bool Hook_UserJoin(Network network, User user, Channel channel, bool updated)
 {
     if (!updated)
     {
         return true;
     }
     Message(channel.retrieveWindow(), user.Nick + " joined");
     return false;
 }