Advertisement
Guest User

Untitled

a guest
Jun 12th, 2013
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. #######################################
  2. #### CraftIRC 3 configuration file ####
  3. #######################################
  4.  
  5. <snipped lines...>
  6.  
  7. #Default formatting templates used in all messages. Plugins may require you to add more.
  8. formatting:
  9. #### VARIABLES AND COLORS (from colormap): %name% (as in %message% or %yellow%). Different events provide different variables.
  10. #### IRC FORMATTING: %b% %u% %r% %o% %k% %kNUM% (NUM is 0 to 15); Do the same as CTRL+key in mIRC (%o% uses'foreground')
  11.  
  12. #==========Classic formatting==========
  13. from-game:
  14. chat: '(%sender%) %message%'
  15. private: '(%sender%) %message%'
  16. action: '* %sender% %message%'
  17. join: '[%sender% connected]'
  18. quit: '[%sender% disconnected]'
  19. kick: '[%sender% was KICKED (%message%)]'
  20. admin: '%sender% to online admins ->- %message%'
  21. generic: '%message%'
  22. dynmap: '([WEB] %ip%) %message%'
  23. say: '[Server] %message%'
  24. death: '%message%'
  25.  
  26. <snipped lines...>
  27.  
  28. # ******************* IRC BOTS/SERVERS AND CHANNELS ******************* [CHANGES REQUIRED]
  29. # Every bot connects to one IRC server and can contain any amount of channels.
  30. # Every channel is a communication endpoint.
  31. bots:
  32.  
  33. channels:
  34.  
  35. - name: '#c14minecraft'
  36. password: ''
  37.  
  38. #Identifies this channel's endpoint (for the paths: section).
  39. tag: 'c14minecraft'
  40.  
  41. #Send raw IRC commands to the server every time I join this channel.
  42. on-join:
  43. # - 'PRIVMSG:Howdy don't.'
  44.  
  45. # Ignore the +c mode and try sending colors anyway if there are colors in a message
  46. force-colors: false
  47.  
  48. #- name: '#anotherchannel'
  49. # ...
  50.  
  51. <snipped lines...>
  52.  
  53. # ******************* COMMUNICATION PATHS *******************
  54. # (For most uses, only needed if settings.auto-paths is false)
  55. # Declare here a path for every pair of endpoints between which you want messages to flow.
  56. # For each path you can filter the messages sent by event type or contents.
  57. # Paths are one-way, so you must declare A to B and B to A if you want a two-way channel.
  58. paths:
  59.  
  60. - source: 'minecraft'
  61. target: 'c14minecraft'
  62.  
  63. - source: 'c14minecraft' # These are endpoint tags
  64. target: 'minecraft' #
  65.  
  66. - source: 'dynmap'
  67. target: 'c14minecraft'
  68.  
  69. - source: 'c14minecraft'
  70. target: 'dynmap'
  71.  
  72. <snipped lines...>
  73.  
  74. # ******************* DEFAULT PATH ATTRIBUTES ******************* [CHANGES REQUIRED]
  75. # If an attribute isn't defined in a path, these are used.
  76. # If an attribute isn't defined here either, it defaults to 'false'.
  77. default-attributes:
  78.  
  79. #Disables all communication paths. No message will be sent anywhere.
  80. #If you don't set this to false, CraftIRC may not work!
  81. disable: false
  82.  
  83. #Every event type (they're the same as the names in settings.formatting) can be enabled or disabled here.
  84. #In addition, commands (such as those handled by other plugins) may require you to define extra attributes.
  85. attributes:
  86.  
  87. chat: true
  88. action: true
  89. join: true
  90. part: true
  91. nick: true
  92. quit: true
  93. kick: true
  94. private: true
  95. command: true
  96. say: true
  97. generic: true
  98. death: true
  99. dynmap: true
  100.  
  101. #Admin commands and /admins! can only be sent through a path where admin is set to true
  102. admin: false
  103.  
  104. #True: Colors will be converted. False: Colors will be stripped.
  105. colors: true
  106.  
  107. <snipped lines...>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement