Alright, so I recently asked about no one showing up in the user list in mIRC for a Twitch bot and got that I needed to type
Quote:
/raw CAP REQ :twitch.tv/membership
in order to populate the user list. My question now is how to go about creating a script that causes mIRC to do this on joining a channel. I've got a simple script here:
Code:
on me:*:join:#examplechannel: .timerme 1 2 msg $chan /raw CAP REQ :twitch.tv/membership

This however causes the bot to type the /raw command into the Twitch chat instead of the mIRC chat. What do I need to change in order to send the command to the mIRC chat instead of the channel (I'm assuming it's the 'msg $chan', I just don't know what to change it to.)