mIRC Home    About    Download    Register    News    Help

Print Thread
#235590 29/12/11 08:55 AM
Joined: Nov 2011
Posts: 30
A
arc123 Offline OP
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Nov 2011
Posts: 30
how to fix that when i join at mirc and have many rooms it give me dc and tell me excess flood


its 6 rooms i have at auto join in connect how i can still have them and dont take dc

Joined: Mar 2004
Posts: 526
Fjord artisan
Offline
Fjord artisan
Joined: Mar 2004
Posts: 526
joining 6 channels on connect should not (on most networks) cause you to flood off the network. Are you running any scripts that send something to the channel(s) when you join them?



Help others! It makes the world a better place, Makes you feel good, and makes you Healthy!
Joined: Nov 2011
Posts: 30
A
arc123 Offline OP
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Nov 2011
Posts: 30
i use /cs invite #channel for 2 rooms so that i join them in connect as they are +i

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Certain networks *may* not allow you to send more than one command at a time immediately after connecting to the network. So if you are sending /cs twice at once right when you connect, that may be your problem. Try adding a 2-3 second delay on one of those using /timer and see if it helps.


Invision Support
#Invision on irc.irchighway.net
Joined: Sep 2011
Posts: 37
C
Ameglian cow
Offline
Ameglian cow
C
Joined: Sep 2011
Posts: 37
how can i make that can u show me with example pls as i did

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Code:
alias ajoin {
 join #channel1
 .timerjoin 1 2 join #channel2
 .timerjoin 2 4 join #channel3
 .timerjoin 3 6 join #channel4
}

goes in to remote ALT + R in mirc. /ajoin <- trigger it.

Replace the #channel1-4 to your channel. Maybe you need to edit the numbers 2 - 4 - 6 in the timers to fit your needs.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358

Those timers overwrite each other and have repetitions.

Code:
alias ajoin {
  join #chan1
  .timer 1 2 join #chan2
  .timer 1 4 join #chan3
  .timer 1 6 join #chan4
}

Joined: Nov 2011
Posts: 30
A
arc123 Offline OP
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Nov 2011
Posts: 30
but i just use the auto join of the mirc script which on the favorite and for the invite channel i put the command at the perform on the options


Link Copied to Clipboard