Advertisement
LoveAbleElf

kick ban

Aug 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. alias kb {
  2. if (!$1) {
  3. echo /kb - Nick missing
  4. return
  5. }
  6.  
  7. var %msg = $iif(#, $2-, $3-)
  8. var %chan = $iif(#, #, $2)
  9.  
  10. ; Set this for default ban reason, or remove for no default reason
  11. ; Can be shortened to %msg = $iif(%msg, %msg, GTFO)
  12. if (!%msg) %msg = Not wanted here
  13.  
  14. if ($me isop %chan) {
  15. MODE %chan +b $wildsite
  16. KICK %chan $1 %msg
  17. }
  18. else echo You are not oper on %chan
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement