So I want to create this command so I can redirect my viewers to another channel. I want to make it so when I type !raid channel it will show up with a message. I just can't get that channel name to show when doing the command.

Code:
on *:TEXT:!raid:#: {
  if ($nick == flyingpotatos) { if ($$0 < 2) { msg # Insufficient parameters, use !raid [channel name] }
    else { msg # The stream is over everyone. Let's raid someone! Go to http://www.twitch.tv/ $2 and say in the chat 'FlyingPotatoes Mini-Raid!!!' }
    else { msg # Only the streamer has acces to the raid command! }
  }
}