Пример #1
0
        public override void Init()
        {
            CommandHook meow = CreateCommandHook("meow", Meow, "Usage: /meow");
            CommandHook woof = CreateCommandHook("woof", Woof, "Usage: /woof");

            HexChat.Print("Example .NET plugin loaded!");
        }
Пример #2
0
 public Eat Meow(string[] words, string[] wordsEol)
 {
     HexChat.Print("meow!");
     return(Eat.All);
 }