mIRC Home    About    Download    Register    News    Help

Print Thread
#58443 30/10/03 04:20 PM
Joined: Sep 2003
Posts: 98
N
neznani Offline OP
Babel fish
OP Offline
Babel fish
N
Joined: Sep 2003
Posts: 98
when i do /ame command i get this notice for some channels:
Too many #channel recipients. No Message Delivered
how can i avoid this and still do the /me thing on all channels (and with as lowest possibile lag) ?


www.stwar.us.to
IRCnet - #stwar
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
The simplest answer is: be in less channels.


DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
Joined: Sep 2003
Posts: 98
N
neznani Offline OP
Babel fish
OP Offline
Babel fish
N
Joined: Sep 2003
Posts: 98
wink
thx for ansver but i already found a way
Code:
  var %i 1
  while ( $chan(%i) ) {
    /describe $chan(%i) text here
    inc %i 
  }
  


www.stwar.us.to
IRCnet - #stwar
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
did you want it to go to all servers or just 1?


new username: tidy_trax
Joined: Sep 2003
Posts: 98
N
neznani Offline OP
Babel fish
OP Offline
Babel fish
N
Joined: Sep 2003
Posts: 98
just 1


www.stwar.us.to
IRCnet - #stwar
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
You wanted the least lag possible, so I made this:
Code:
alias ame2 {
  var %i = 1,%t
  while ( $chan(%i) ) {
    var %t = $+(%t,$chan(%i),$chr(44))
    if ( $numtok(%t,44) == 5 ) {
      describe $left(%t,-1) $1-
      var %t
    }
    inc %i
  }
  $iif(%t,describe $left(%t,-1) $1-)
}

Messages 5 channels at a time, the limit on the IRCnet I believe.

There is probably a faster way of doing it, though.


Link Copied to Clipboard