Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 2.44 KB | None | 0 0
  1. #########################
  2. # Configuration Eggdrop #
  3. #########################
  4.  
  5. set admin "T3nS"
  6. set owner "T3nS"
  7. set nick "Bowser"
  8. set altnick "Revali"
  9. set username "Audio"
  10. set realname "Audio"
  11. set servers { irc.epiknet.org }
  12.  
  13. ############
  14. # Dossiers #
  15. ############
  16.  
  17. set mod-path "modules/"
  18. set help-path "help/"
  19. set temp-path "/tmp/"
  20.  
  21. ###########
  22. # Modules #
  23. ###########
  24.  
  25. loadmodule dns
  26. loadmodule channels
  27. loadmodule server
  28. loadmodule ctcp
  29. loadmodule irc
  30. loadmodule console
  31. checkmodule blowfish
  32.  
  33. ############
  34. # Fichiers #
  35. ############
  36.  
  37. set userfile "eggdrop.user"
  38. set chanfile "eggdrop.chan"
  39. set pidfile "eggdrop.pid"
  40.  
  41. ########
  42. # Logs #
  43. ########
  44.  
  45. logfile msbcox * "logs/eggdrop.log"
  46.  
  47. #############
  48. # Variables #
  49. #############
  50.  
  51. addlang "french"
  52. set net-type 5
  53. set timezone "GMT"
  54. set offset "+2"
  55. set must-be-owner 0
  56. set require-p 1
  57. set network "http://www.eXolia.fr"
  58. set sort-users 1
  59. set quiet-save 1
  60. set console "jkmcobxs"
  61. set strict-servernames 0
  62. set ctcp-mode 0
  63. set opchars "@&~"
  64. set nick-len 30
  65. set use-ssl 0
  66.  
  67. ##################
  68. # Telnet & Vhost #
  69. ##################
  70.  
  71. listen 3333 all
  72.  
  73. ##########
  74. # Global #
  75. ##########
  76.  
  77. set global-flood-chan 30:5
  78. set global-flood-deop 30:5
  79. set global-flood-kick 30:5
  80. set global-flood-join 30:5
  81. set global-flood-ctcp 30:5
  82. set global-flood-nick 30:5
  83. set global-aop-delay 30:5
  84. set global-idle-kick 0
  85. set global-chanmode "nt"
  86. set global-stopnethack-mode 0
  87. set global-revenge-mode 0
  88. set global-ban-time 0
  89. set global-exempt-time 0
  90. set global-invite-time 0
  91. set global-chanset { -autoop -autovoice -bitch -cycle -dontkickops -dynamicbans -dynamicexempts -dynamicinvites -enforcebans -greet -inactive +nodesynch -protectfriends -protectops -revenge -revengebot -secret +seen -shared -statuslog +userbans +userexempts +userinvites }
  92.  
  93. bind evnt - init-server evnt:init_server
  94. proc evnt:init_server {type} {
  95. global botnick
  96. putquick "MODE $botnick +ib-ws"
  97. }
  98. ###########
  99. # Sources #
  100. ###########
  101.  
  102. source scripts/nauth.tcl
  103. source scripts/bseen.tcl
  104. source scripts/BSeen_Extended.tcl
  105. source scripts/horoscope.tcl
  106. source scripts/dicoreverso.tcl
  107. source scripts/youtube.tcl
  108. source scripts/wiki.tcl
  109. source scripts/Duck_Hunt.tcl
  110. source scripts/spy.tcl
  111. source scripts/Need_Help.tcl
  112. source scripts/ctcpreply.tcl
  113. #source scripts/url.tcl
  114. source scripts/triggers.tcl
  115. source scripts/love.tcl
  116. source scripts/mediadico.tcl
  117. #source scripts/pub.tcl
  118. #source scripts/pub2.tcl
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement