mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2014
Posts: 7
A
Aler360 Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
A
Joined: Jul 2014
Posts: 7
i want a multistream command that uses http://multitwitch.tv/

to use it its like http://multitwitch.tv/user1/user2/ect

plz

Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
Your post makes no sense, at least to me. Can you assume that not everyone knows what multi streams are; it's not a standard IRC thing.

How do you want the command to be used and what should it do?

An example of a good question is:

How can I make a command where, when I say "!hey <nick>", my bot says "hey, <nick>" ?

Your post needs to make sense to the person reading it otherwise we're unable to help.

Joined: Aug 2014
Posts: 2
S
Bowl of petunias
Offline
Bowl of petunias
S
Joined: Aug 2014
Posts: 2
heres what i did for multitwitch:

on *:text:!dualstream * *:#: {
if ($nick isop #) {
msg $chan multitwitch.tv/ $+ $2 $+ / $+ $3
}
}

this example only works for 2 streams

Joined: Aug 2014
Posts: 3
F
Self-satisified door
Offline
Self-satisified door
F
Joined: Aug 2014
Posts: 3
Try something like this , It will automatically add you as the first user of the multitwitch link , so their is no need to add you name when doing the command ,just change YOURCHANNEL in the script

Example !multitwitch chingy1337 swiftor
Output : Multitwitch.tv/YOURCHANNEL/CHINGY1337/SWIFTOR

Code:
on *:TEXT:!multitwitch*:#: { 
  if (($nick isop $chan)) { 
    if (!$2) { msg $chan Must specify atleast one streamer name. | return }
    if ($2) && (!$3) { msg $chan Check this MultiTwitch: http://multitwitch.tv/ $+ YOURCHANNEL $+ /  $+ $2 $+ | return }
    if ($2) && ($3) && (!$4) { msg $chan Check this MultiTwitch: http://multitwitch.tv/ $+ YOURCHANNEL $+ /  $+ $2 $+ / $+ $3 $+ | return }
    if ($2) && ($3) && ($4) && (!$5) { msg $chan Check this MultiTwitch: http://multitwitch.tv/ $+ YOURCHANNEL $+ /  $+ $2 $+ / $+ $3 $+ / $+ $4 $+ | return }
  }


Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
If that's all it does you don't need to check for specific tokens, just replace spaces with slashes.

Code:
var %url = http://multitwitch.tv/yourchannel/ $+ $replace($1-,$chr(32),/)


Link Copied to Clipboard