ShowHelp() public static method

public static ShowHelp ( string parameter, Channel channel ) : bool
parameter string
channel Channel
return bool
Ejemplo n.º 1
0
 private static void Help(CommandParams parameters)
 {
     if (!String.IsNullOrEmpty(parameters.Parameters))
     {
         Core.ShowHelp(parameters.Parameters, parameters.SourceChannel);
         return;
     }
     IRC.DeliverMessage("I am running http://meta.wikimedia.org/wiki/WM-Bot version "
                        + Configuration.System.Version + " my source code is licensed "
                        + "under GPL and located at https://github.com/benapetr/wikimedia-bot "
                        + "I will be very happy if you fix my bugs or implement new features",
                        parameters.SourceChannel);
 }