I was wonder if someone had a code or could make one. That if I get disconnect from the rooms I'm in..it'll rejoin all. And when i start my script it'll automatically join preset channels. (not vincula or anything) thanks for the help in advance.
he said not vincula, what connecting are you using at the moment?
Edited Oct 13, 2004 10:53 PM by Absorbx_o
"Be more concerned with your character than your reputation
because your character is who you really are while your reputation is merely what others think of you."
DesolateMx 8.0
Yeah I know, but often people don't normally specify all the details. They do expect you to read minds lol
"Be more concerned with your character than your reputation
because your character is who you really are while your reputation is merely what others think of you."
DesolateMx 8.0
Another use for the new script I'm working on - compatability with all msn connections.
Spose I should know people's opinions of it in screenshots lol.
Clerix goes to post about it
Edited Oct 13, 2004 11:34 PM by Cleric xtx
Well its admin connection, I'm an guide on chat network. So I dont know if you guys can help with it. but thanks anyways. 
Edited Oct 14, 2004 1:27 AM by Molsonâ„¢
Custom Computer
AMD Athlon 64 x2 Dual Core 5200+
Asus M2N-SLI MOB
2GB DDR2 @ 800mhz
160GB Hard Drive
NVidia GeForce 8400GS 256
on *:START:{
if (%disconnected == on) { unset %disconnected }
}
on *:DISCONNECT:{ set %disconnected on | "put the command for connecting to the server here. For clearmsn connection to msnchat you would use "msn main" without the quotes" }
on *:connect:{
if (%disconnected == on) {
join %one
if ($chan == %one) && (%two) { join %two }
if ($chan == %two) && (%three) { join %three }
if ($chan == %three) && (%four) { join %four }
if ($chan == %four) && (%five) { join %five }
if ($chan == %five) && (%six) { join %six }
if ($chan == %six) && (%seven) { join %seven }
if ($chan == %seven) && (%eight) { join %eight }
if ($chan == %eight) && (%nine) { join %nine }
if ($chan == %nine) && (%ten) { join %ten }
}
}
on *:join:#:{
if ($nick == $me) {
if (!%one) && (!%two) && (!%three) && (!%four) && (!%five) && (!%six) && (!%seven) && (!%eight) && (!%nine) && (!%ten) { set %one $chan }
if (%one) && (!%two) { set %two $chan }
if (%one) && (%two) && (!%three) { set %three $chan }
if (%one) && (%two) && (%three) && (!%four) { set %four $chan }
if (%one) && (%two) && (%three) && (%four) && (!%five) { set %five $chan }
if (%one) && (%two) && (%three) && (%four) && (%five) && (!%six) { set %six $chan }
if (%one) && (%two) && (%three) && (%four) && (%five) && (%six) && (!%seven) { set %seven $chan }
if (%one) && (%two) && (%three) && (%four) && (%five) && (%six) && (%seven) && (!%eight) { set %eight $chan }
if (%one) && (%two) && (%three) && (%four) && (%five) && (%six) && (%seven) && (%eight) && (!%nine) { set %nine $chan }
if (%one) && (%two) && (%three) && (%four) && (%five) && (%six) && (%seven) && (%eight) && (%nine) && (!%ten) { set %ten $chan }
}
}
This code should work for up to ten rooms. If you want to add more rooms just add to the code. 
Edited Oct 14, 2004 2:53 PM by Warrior124