mIRC Home    About    Download    Register    News    Help

Print Thread
#31928 24/06/03 01:43 PM
Joined: Jun 2003
Posts: 6
J
jtx Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
J
Joined: Jun 2003
Posts: 6
i am running windows xp pro no update packages using mirc 6.03 i found running the following script
joinchans {
var %o = 1
while ( %o <= $ini(mirc.ini, chanfolder, 0) ) {
join $readini(mirc.ini, chanfolder, $ini(mirc.ini, chanfolder, %o))
inc %o
}
}

gives [10053] Software caused connection abort after a few minutes of being connected to a server.

#31929 24/06/03 04:35 PM
Joined: Dec 2002
Posts: 2,809
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 2,809
Umm of course. That will potentially flood the server like crazy. What if your channel folder had 100+ channelsl in it? First off most servers only allow you to join ~10, and second, most servers are going to kill you for flooding if you send that many commands.

#31930 24/06/03 05:17 PM
Joined: Dec 2002
Posts: 774
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 774
Chan folder has feature join channel on connect? Why don't you use that?


Code:
//if ( khaled isgod ) echo yes | else echo no
#31931 25/06/03 01:01 AM
Joined: Jun 2003
Posts: 6
J
jtx Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
J
Joined: Jun 2003
Posts: 6
i have 5 channels in my list.

#31932 25/06/03 02:00 AM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
How is your ini set up?

Hopefully its something like:

[Chanfolder]
somevalue=#Chan1
someothervalue=#Chan2

Not:

[Chanfolder]
#chan1=somevalue
#chan2=someothervalue


-KingTomato
#31933 27/06/03 04:39 PM
Joined: May 2003
Posts: 32
Q
Ameglian cow
Offline
Ameglian cow
Q
Joined: May 2003
Posts: 32
my mIRC comes with 65 channels in [chanfolder]
section. its the default- mayb its in ur mIRC.ini file in different location than u checked- can u changle the [chanfolder] to something else?
try 2 double click on ur connection icon and use windows activity monitor 2 count how many packets mIRC sent.

try using:
alias join {
if ($1 == $null) return
echo -a *** Joining $1-
join $1-
}
so it will monitor how many 'join' commands ur script sends.

#31934 27/06/03 07:05 PM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
I don't use the channels dialog, so that may be the reason. I never have probably never will. >:D


-KingTomato

Link Copied to Clipboard