mIRC Home    About    Download    Register    News    Help

Print Thread
#179021 17/06/07 09:40 AM
Joined: Jun 2007
Posts: 6
G
Griff67 Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
G
Joined: Jun 2007
Posts: 6
Allow us to set up a window that will send the same text to designated channels. We keep our team orgainize with status reports in mIRC. This would save us YEARS of time pasting to the 8-10 windows we work with all the time.

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
dosent /amsg work ? =) or are you on channels you dont want to show the text to? smile


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Dec 2002
Posts: 503
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Dec 2002
Posts: 503
What about an ON INPUT tied to a @window? Should be easily scriptable.

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
My first thought was, doesn't msg allow commas to seperate channels. I thought I saw that somewhere, where /msg #m,#I,#R,#C equals mIRC. Which would have sent a msg to those channels.

Code:
alias msg {
  var %x = 1
  while (%x <= $numtok($1,44)) {
    if (!$2) echo 2 -a * /msg: insufficient parameters
    else { !msg $gettok($1,%x,44) $2- }
    inc %x
  }
}

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Using comma separated channels will send to multiple channels. I use this for my Common Channel Message snippet on Hawkee.

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
I thought I saw it somewhere, but it doesnt seem to work for me still. confused

Joined: Dec 2002
Posts: 2,033
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 2,033
Some networks allow it, some don't. Most do I think.

Joined: Dec 2002
Posts: 503
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Dec 2002
Posts: 503
On the 005, there's a MAXTARGETS (I thin it's called), which is how many you can PRIVMSG/NOTICE to.


Link Copied to Clipboard