Sending whispers with my IRC bot

	ChatRaids bot = new ChatRaids();
	bot.setVerbose(true);
	ChatRaids wBot = new ChatRaids();
	wBot.setVerbose(true);
	bot.connect("irc.twitch.tv", 6667, "oauth:XXXXXXXXXXX");
	wBot.connect("199.9.253.119", 6667, "oauth:XXXXXXXXXXXXXX");
	bot.joinChannel("#twitchraidstwitch");
	wBot.joinChannel("#twitchraidstwitch");

	sendRawLine("CAP REQ :twitch.tv/membership\r\n");
	sendRawLine("CAP REQ :twitch.tv/tags\r\n");
	sendRawLine("CAP REQ :twitch.tv/commands\r\n");

        sendMessage("#twitchraidstwitch", "/w Murderouskirk Hi "+host+"! Test msg.");

still gets me

1452078840868 @msg-id=unrecognized_cmd :tmi.twitch.tv NOTICE #twitchraidstwitch :Unrecognized command: /w

I’m not sure how it would choose which bot to send from either…

:confused: