Advertisement
Guest User

Untitled

a guest
Jul 24th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. namespace eval crelay {
  2.  
  3. variable regg
  4. variable default
  5. variable userlist
  6.  
  7. set regg(Spy) {
  8. "chan" "#proba"
  9. "network" "CyberIRCD"
  10. "highlight" 0
  11. "log" "y"
  12. "oper" "y"
  13. }
  14.  
  15. set regg(RichKids) {
  16. "chan" "#proba"
  17. "network" "chknet"
  18. "highlight" 3
  19. "oper" "y"
  20. }
  21.  
  22. set regg(CC_Egg) {
  23. "chan" "#eggdrop.fr"
  24. "network" "Undernet"
  25. }
  26.  
  27. set default {
  28. "highlight" 1
  29. "snet" "y"
  30. "transmit" "y"
  31. "receive" "y"
  32. "log" "n"
  33. "oper" "n"
  34. }
  35.  
  36. # Fill this list with the nick of the users
  37. # who WON'T BE relayed, as services bot
  38. variable users_excluded {\[Guru\] Pan}
  39.  
  40. # Fill this list with the nick of the users
  41. # wich will be THE ONLY ONES to be relayed
  42. variable users_only {}
  43.  
  44. # transmission configuration
  45. set trans_pub "y"; # transmit the pub
  46. set trans_act "y"; # transmit the actions (/me)
  47. set trans_nick "y"; # transmit the nick changement
  48. set trans_join "y"; # transmit the join
  49. set trans_part "y"; # transmit the part
  50. set trans_quit "y"; # transmit the quit
  51. set trans_topic "y"; # transmit the topic changements
  52. set trans_kick "y"; # transmit the kicks
  53. set trans_mode "y"; #transmit the mode changements
  54. set trans_who "y"; # transmit the who list
  55.  
  56. # reception configuration
  57. set recv_pub "y"; # recept the pub
  58. set recv_act "y"; # recept the actions (/me)
  59. set recv_nick "y"; # recept the nick changement
  60. set recv_join "y"; # recept the join
  61. set recv_part "y"; # recept the part
  62. set recv_quit "y"; # recept the quit
  63. set recv_topic "y"; # recept the topic changements
  64. set recv_kick "y"; # recept the kicks
  65. set recv_mode "y"; # recept the mode changements
  66. set recv_who "y"; # recept the who list
  67.  
  68. set userlist(beg) "Beginning of userlist"
  69. set userlist(end) "End of userlist"
  70.  
  71. # Set the banmask to use in banning the IPs
  72. # Default banmask is set to 1
  73. # 1 - *!*@some.domain.com
  74. # 2 - *!*@*.domain.com
  75. # 3 - *!*ident@some.domain.com
  76. # 4 - *!*ident@*.domain.com
  77. # 5 - *!*ident*@some.domain.com
  78. # 6 - *nick*!*@*.domain.com
  79. # 7 - *nick*!*@some.domain.com
  80. # 8 - nick!ident@some.domain.com
  81. # 9 - nick!ident@*.host.com
  82. set bantype 1
  83. # The default (ban)kick reason.
  84. # %n will be replaced with the kicker name
  85. set breason "You have been kicked by %n"
  86.  
  87. # Path and name of the config file
  88. # %b will be replaced with the botnick
  89. variable config "databases/%b.chanrelay.db"
  90.  
  91. variable author "CrazyCat"
  92. variable version "3.9"
  93.  
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement