mIRC Home    About    Download    Register    News    Help

Print Thread
#137777 18/12/05 11:06 PM
Joined: Dec 2005
Posts: 6
C
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: Dec 2005
Posts: 6
on *:text:*-o Crazy0ne*:#:{ /msg chanserv op #}
on *:DEOP:#:if ($me isin $1-){ /msg chanserv op $chan}
on *:KICK:#:if ($me isin $1-) { /msg chanserv unban #channel | /timer1 1 3 /j #channel }

it works fine on deop, but when i am kickbanned it doesnt seem to want to unban me then rejoin, please help.

Thanks,
Crazy0ne

#137778 18/12/05 11:10 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
You're using the wrong event. Remove the ON TEXT event and use ON BAN instead

/help ON BAN

#137779 18/12/05 11:13 PM
Joined: Dec 2005
Posts: 6
C
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: Dec 2005
Posts: 6
on *:BAN:#:if ($me isin $1-) { /msg chanserv unban #channel | /timer1 1 3 /j #channel }

so something like that?

#137780 18/12/05 11:22 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Code:
on *:ban:#:{
 if ($bnick == $me) || ($banmask iswm $address($me,5)) {
 /msg chanserv unban #channel
 timer 1 3 /j #channel
 }
}
  


Last edited by RusselB; 19/12/05 12:17 AM.
#137781 18/12/05 11:41 PM
Joined: Dec 2005
Posts: 6
C
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: Dec 2005
Posts: 6
hmm still aint working frown

#137782 19/12/05 12:17 AM
Joined: Oct 2005
Posts: 75
C
Babel fish
Offline
Babel fish
C
Joined: Oct 2005
Posts: 75
aren't you suppose to have

/msg chanserv unban #channel

as

Code:
on *:ban:#: if ($bnick == $me) { [color:red]/msg chanserv unban #channel me/all/mask[/color] | /timer1 1 3 /j #channel }
?

#137783 19/12/05 12:18 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Try the edited code. If it still doesn't work, ensure that you have the unban command for chanserv formatted correctly.


Link Copied to Clipboard