mIRC Homepage
Posted By: Blinakk (TWITCH) Emote/Text combination command. - 20/08/16 12:12 PM
Hi, I want someone to make a script that will combine emotes and text, I don't know how to explain it so here is an example: http://imgur.com/tp2n6bi
http://imgur.com/tp2n6bi
http://imgur.com/tp2n6bi
Probably not possible :P
Feel free to use ascii art!
Good Luck!
Is this what you want?
Twitch converts normal text into emotes, so not sure what the problem is here.

Code:
on *:TEXT:kappa:#: {
  msg # Kappa K Kappa A Kappa P Kappa P Kappa A Kappa
}
Posted By: Deerayn Re: (TWITCH) Emote/Text combination command. - 31/08/16 08:03 PM
Well something like this

Quote:
on *:TEXT:!bot Kappa:#: {
msg # $2 K $2 A $2 P $2 P $2 A $2
}


But I don't know how to seperate Kappa letters between Kappa's
Posted By: Tulga Re: (TWITCH) Emote/Text combination command. - 01/09/16 03:12 PM
http://puu.sh/qWiy3/233012f1a5.png Here is pic

Code:
on *:text:!ab*:#:{

  if ($2 == $null) { msg # !ab <emote> <text> | return }  

  var %finaltext $2 
  var %j 1

  while (%j <= $len($3)) {
    %finaltext = %finaltext $+ $chr(32) $+ $mid($3,%j,1) $+ $chr(32) $+ $2
    inc %j
  }

  msg # %finaltext

}
Posted By: Blinakk Re: (TWITCH) Emote/Text combination command. - 05/09/16 01:38 PM
Exactly what I wanted, thanks!
Posted By: Tulga Re: (TWITCH) Emote/Text combination command. - 06/09/16 04:42 PM
You're welcome
Posted By: kikuchi Re: (TWITCH) Emote/Text combination command. - 04/02/17 11:07 AM
Code:
on *:text:!ab:#:{
  if !$2 { msg # !ab <emote> <text> | return }  
  msg # $regsubex($2,//g,$chr(32) $1 $chr(32))
}
© mIRC Discussion Forums