public static void SendGlobalMessage(this IrinaBotService client, string text) { client.SendMessage("", "chat", text); }
public static void SendPrivateMessage(this IrinaBotService client, string toUser, string text) { client.SendMessage(toUser, "whisper", text); }