Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #set-nete si pass za bota
  2. set password "bobo123"
  3. # tezi po princip sa ok, ne tryabva da se pipat...
  4. set nsnick "NS"
  5. set csnick "CS"
  6. set nsserv "NS!NickServ@Services"
  7. set csserv "CS!ChanServ@Services"
  8.  
  9. #ottuk nadolu ne pipai, ili ne plachi ako go razvalish :)
  10. #end of cfgable lines
  11.  
  12. bind raw -|- NOTICE ident:NickServ
  13.  
  14. proc ident:NickServ {from keyword arg} {
  15. global nsnick csnick password nsserv csserv
  16. set servresp [lindex $arg 1]
  17. set msg [lrange $arg 0 end]
  18. if {$from==$nsserv || $from ==$csserv} {
  19. if {[lindex $arg 2]=="nickname" || [lindex $arg 2]=="identification"} {
  20. putquick "PRIVMSG $nsnick :IDENTIFY $password"
  21. putlog "Services requested IDENTIFY.."
  22. }
  23. }
  24. }
  25.  
  26. putlog "TCL | NS IDENTIFY by SmasHinG"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement