Ok, so I've asked this same type of question before in the forums about having multiple sub lines for whenever a person were to subscribe/resubscribe and nothing actually seems to be working properly. The code I have here needs extra lines added so it'll type one part of the message then on different chat lines say different things. Here's the script:

Code:
 on 1:connect: { raw CAP REQ :twitch.tv/membership }

on 1:text:*subscribed*:#mlgjrated:{
  if ( $nick == twitchnotify ) && ($istok($1-,subscribed to,32)) halt
  elseif ($nick == twitchnotify) && ( $4 == $null ) { describe $msg jrateLove $1 has just subscribed!! Welcome to the PEARdise!! jrateCool }
}

raw USERNOTICE:*:{
  if ($msgtags(room-id).key == 47456875) {
    if ($2- == $null) && (resub isin $msgtags) {
      describe $msg $1 jrateLove $msgtags(display-name).key has just resubscribed for $msgtags(msg-param-months).key months in a row!! Welcome back to the PEARadise!! jrateCool
    }
    else {
      describe $msg $1 jrateLove $msgtags(display-name).key has just resubscribed for $msgtags(msg-param-months).key months in a row!! Welcome back to the PEARadise!! jrateCool Message: $2-
    }
  }
} 


What I'm trying to add is the following lines to the sub script:

jrateLove jrateHype jrateCool jrateLove jrateHype jrateCool (3x of lines)

Help would mean alot, thanks