Advertisement
jontargaryen

Untitled

Mar 19th, 2018
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 1.49 KB | None | 0 0
  1. ## Descripcion:                                                  
  2. ## my simple try to delnet nickserv@services.librairc.net identify
  3. ## and my first try too
  4.  
  5.  
  6. # TCL by GoGers
  7.  
  8. # Goger Identify  TCL
  9. putlog "auto identify to nickserv tcl is loaded - \0034,1Go\00314G\0034ers"
  10.  
  11. ### Setup
  12.  
  13. # set nick n password to be identified - you must edit this
  14. set nickname "Leb"
  15. set password "nickpassword"
  16.  
  17. ### Code
  18.  
  19. # Change the m to another flag if you like.
  20. bind pub m .identify  do_identify
  21. bind pub m .release do_release
  22. bind pub m .ghost do_ghost
  23.  
  24.  
  25. #    # # # # ## do not edit below # ### # # ##
  26.  
  27. #identify  starts #
  28.  
  29. proc do_identify {nick host handle chan text} {
  30. global nickname password
  31. putquick "PRIVMSG nickserv@services.librairc.net :identify $nickname $password"
  32. putserv "NOTICE $nick :identifying to nickserv@services.librairc.net..."
  33. }
  34. #ends here #
  35.  
  36. # nick release starts here #
  37.  
  38. proc do_release {nick host handle chan text} {
  39. global nickname password
  40. putquick "PRIVMSG nickserv@services.librairc.net :release $nickname $password"
  41. putserv "NOTICE $nick :releasing nick from  nickserv@services.librairc.net..."
  42. }
  43. #ends here #
  44.  
  45. # nick Ghosting starts here #
  46.  
  47. proc do_ghost {nick host handle chan text} {
  48. global nickname password
  49. putquick "PRIVMSG nickserv@services.librairc.net :ghost $nickname $password"
  50. putserv "NOTICE $nick :Ghosting your Bot nick"
  51. }
  52. #ends here #
  53.  
  54. set init-server {  
  55. putquick "PRIVMSG nickserv@services.librairc.net :identify $nickname $password"
  56. putserv "MODE $nick +i"
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement