So now I have
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! }
  }
}

But I get The stream is over everyone. Let's raid someone! Go to http://www.twitch.tv/$2 and say in the chat 'FlyingPotatoes Mini-Raid!!!'. How can I include $2 and still make it a link?



Did it, if anyone wants the code, here you go:
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! }
  }
}

Last edited by FlyingPotatoes; 20/05/14 02:29 PM.