mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2016
Posts: 6
B
Blinakk Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
B
Joined: Aug 2016
Posts: 6
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

Joined: Feb 2015
Posts: 243
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Feb 2015
Posts: 243
Probably not possible :P
Feel free to use ascii art!
Good Luck!

Joined: May 2016
Posts: 50
T
Babel fish
Offline
Babel fish
T
Joined: May 2016
Posts: 50
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
}


Life is potato.
Joined: Sep 2015
Posts: 33
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Sep 2015
Posts: 33
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

Joined: Sep 2016
Posts: 15
T
Pikka bird
Offline
Pikka bird
T
Joined: Sep 2016
Posts: 15
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

}

Last edited by Tulga; 01/09/16 03:15 PM.
Joined: Aug 2016
Posts: 6
B
Blinakk Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
B
Joined: Aug 2016
Posts: 6
Exactly what I wanted, thanks!

Joined: Sep 2016
Posts: 15
T
Pikka bird
Offline
Pikka bird
T
Joined: Sep 2016
Posts: 15
You're welcome

Joined: Jul 2013
Posts: 27
K
Ameglian cow
Offline
Ameglian cow
K
Joined: Jul 2013
Posts: 27
Code:
on *:text:!ab:#:{
  if !$2 { msg # !ab <emote> <text> | return }  
  msg # $regsubex($2,//g,$chr(32) $1 $chr(32))
}


Link Copied to Clipboard