@Gusify

This is for resubscribers, it will check does resubscriber have a message with it or not. Make sure you change #CHANNELNAME and edit <ENTER MESSAGE HERE> as which one you want.

Example: msg $1 Thank you, $msgtags(display-name).key for $msgtags(msg-param-months).key months in a row!

Additionally, change msg to describe if you want to change your message into color of your nick color.

Code:
on *:LOGON:*:{
  raw CAP REQ :twitch.tv/membership
  raw CAP REQ :twitch.tv/tags
  raw CAP REQ :twitch.tv/commands
  /debug @raw
}
raw USERNOTICE:*:{
  if ($1 == #CHANNELNAME ) {
    if ($2- == $null) && (resub isin $msgtags) {
      msg $1 <ENTER MESSAGE HERE> $msgtags(display-name).key for $msgtags(msg-param-months).key months in a row!
    }
    else {
      msg $1 <ENTER MESSAGE HERE>  $msgtags(display-name).key for $msgtags(msg-param-months).key months in a row with the message: " $2- "!
    }
  }
}

Last edited by Furiny; 12/10/16 11:56 PM.