mIRC Home    About    Download    Register    News    Help

Print Thread
R
ripp3r
ripp3r
R
scripting never was strong side of mine.so, i need a script to recover dropped channel. so, there's is what i want: when the action "ChanServ sets mode: -r" occurs in the specific channel, then the command "/msg chanserv #channel password description" must be written at that time. i hope you understood me. Please write the code. Thank you in advance.

I
inti
inti
I
Hi.

Code:
on 1:MODE:#channel:{
if ($nick == ChanServ) && ($1 == -r) {
msg chanserv #channel password description
}
}


This would write "#channel pw ..." to Chanserv, when it changes the mode to "-r".
This is what you want?
I hope, that I could help u.

Kathy

R
ripp3r
ripp3r
R
yup, everything works fine, thank you


Link Copied to Clipboard