Guest User

Untitled

a guest
May 18th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 1.21 KB | None | 0 0
  1. ## This sets your channel password. Replace xxxxxx for your channel password.
  2. set chanpass "xxxxxxx"
  3.  
  4. ## This sets your nick password. Replace xxxxxxx for your nick password.
  5. set nickpass "xxxxxxxx"
  6.  
  7. ## This sets your bot nick. Replace lamesbot for your bt nick.
  8. set eggnick "CuntPunt"
  9.  
  10. ## You must comment the line below. :)
  11. #die (Are you sure you've configured the script correctly mother fucker?) ( bot_identifyer.tcl )
  12.  
  13.  
  14. ################# YOU DON'T NEED TO EDIT THE SCRIPT BELOW #################
  15.  
  16. bind notc B "*denied." chanserv_sux
  17. bind notc B "*This nickname is registered and protected.*" nickserv_sux
  18.  
  19. proc chanserv_sux { nick uhost hand text } {
  20.  global channame chanpass
  21.   putserv "PRIVMSG chanserv :identify $channame $chanpass"
  22.   putlog "Sending Identify to ChanServ"
  23. }
  24.    
  25. proc nickserv_sux { nick uhost hand text } {
  26.  global botnick eggnick nickpass
  27.   if { $botnick == "$eggnick" } {
  28.    putserv "PRIVMSG nickserv :identify $nickpass"
  29.    putlog "Sending Identify to NickServ"
  30.   } else {
  31.    putlog "$eggnick is using a nick owned by someone else"
  32.   }
  33. }
  34.  
  35. bind dcc o nickserv nickserv
  36.  
  37. proc nickserv { hand idx mascara } {
  38.  global nickpass
  39.  putserv "PRIVMSG nickserv :identify $nickpass"  
  40. }
Add Comment
Please, Sign In to add comment