mIRC Home    About    Download    Register    News    Help

Print Thread
#34306 05/07/03 05:53 PM
Joined: Feb 2003
Posts: 7
T
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
T
Joined: Feb 2003
Posts: 7
Heil guys... sup?
Any1 can tell me how can i program my bot to get in on 2 diferent servers, and in each 1, it would identify itself and enter in my #s.
It can be made by Perform on Options menu or by Code.
Thx 4 every thing... wink


Stay Cool & Enjoy

....:::\\ '][' //:::....
T-Cypher
#34307 05/07/03 06:04 PM
Joined: Dec 2002
Posts: 774
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 774
on *:start: {
server irc.server.com
server -m irc.server2.com
}
on *:connect: {
if ( $server == irc.server.com ) {
auth
join #chan1
}
elseif ( $server == irc.server2,com ) {
auth
join #chan2
}
}


Code:
//if ( khaled isgod ) echo yes | else echo no
#34308 06/07/03 03:12 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
[code]
on *:start: {
server irc.server.com
server -m irc.server2.com
}
on *:connect: {
if ( $server == irc.server.com ) {
auth
join #chan1
}
elseif ( $server == irc.server2.com ) {
auth
join #chan2
}
}


Link Copied to Clipboard