Skip to content
MSN

Auto Connection on Startup

A TG007 community discussion started by Molson™.

Discussion 13 posts
Page 1 of 1
Open
Topic #1689 · 13 published posts · 737 views

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.smile.gif

Custom Computer

AMD Athlon 64 x2 Dual Core 5200+

Asus M2N-SLI MOB

2GB DDR2 @ 800mhz

160GB Hard Drive

NVidia GeForce 8400GS 256

alias rejoin {

$msn.recent(1,2)

}

on *:start: { .timer.rj 1 7 rejoin }

 

just threw this together seems to work started up my script and it joined the last room i was in..not sure if it will join more than one..didnt try it

 

 

#reconnect on

alias recon {

msn.relookcon

}

 

alias rejoin {

$msn.recent(1,2)

}

 

on *:Disconnect:{

.timer.rl 1 3 recon

.timer.rj 1 10 rejoin

.timer.2rl 1 33 recon

.timer.2rj 1 40 rejoin

.timer.3rl 1 43 recon

.timer.3rj 1 50 rejoin

}

 

on me:*:join:#: {

.timer.rl off

.timer.rj off

.timer.2rl off

.timer.2rj off

.timer.3rl off

.timer.3rj off

}

 

 

this one will reset lookup server connections and rejoin. not sure if it will work for more than one room though . both for vincula , i didnt understand what u meant by (not vincula or anything) so eh yeah

 

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.smile.gif

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

then he should said what " connection" i dont read minds.

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

White Widow connection in downloads will join several rooms using one status window and with a couple of clicks of the mouse after signing in and updating passport. Will even create rooms. Only down side so far is not many protections written for it as of late. whistle.gif Update Passport then click Connect then proceed to the rooms you want to add to favorites. Then look for favorites in popup menu and add $active rooms to favorites. Then it will join all by clicking Join All.

 

"Diplomacy is the art of saying 'Nice doggie' until you can find a rock".-Will Rogers

that rejoin thing is from kenobi, might be nice if you didnt claim to have made it lol

My code does NOT have bugs. It just develops random features.

offtopic.gif 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

 

alias rejoin {

$msn.recent(1,2)

}

on *:start: { .timer.rj 1 7 rejoin }[/b]

 

the part in bold is the part i " threw together" i meant lol

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. smile.gif

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. smile.gif

Edited Oct 14, 2004 2:53 PM by Warrior124

Alright thanks, I'll give it a test smile.gif

Custom Computer

AMD Athlon 64 x2 Dual Core 5200+

Asus M2N-SLI MOB

2GB DDR2 @ 800mhz

160GB Hard Drive

NVidia GeForce 8400GS 256

Well I tested it abit, it connects start and if I hit the disconnect button but doesnt join any rooms.

Custom Computer

AMD Athlon 64 x2 Dual Core 5200+

Asus M2N-SLI MOB

2GB DDR2 @ 800mhz

160GB Hard Drive

NVidia GeForce 8400GS 256