Guest User

Untitled

a guest
Nov 25th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. settings:
  2.  
  3. #These tags identify built-in endpoints (for the paths: section). Other endpoints may be provided by plugins.
  4. minecraft-tag: 'minecraft' #A basic game-side endpoint (a chat plugin may provide better functionality).
  5. cancelled-tag: 'cancelled' #Cancelled chat is sent here (and nothing else).
  6. console-tag: 'console' #The minecraft server console.
  7. cancel-chat: false
  8. command-prefix: '.'
  9. debug: false
  10. console-commands: ['reload', 'save-all', 'kick', 'ban', 'mute']
  11. hold-after-enable: {chat: 0, joins: 0, quits: 0, kicks: 0, bans: 0}
  12. retry-delay: 10
  13.  
  14. #Default formatting templates used in all messages. Plugins may require you to add more.
  15. formatting:
  16. #### VARIABLES AND COLORS (from colormap): %name% (as in %message% or %yellow%). Different events provide different variables.
  17. #### IRC FORMATTING: %b% %u% %r% %o% %k% %kNUM% (NUM is 0 to 15); Do the same as CTRL+key in mIRC (%o% uses'foreground')
  18.  
  19. #==========Classic formatting==========
  20. from-game:
  21. chat: '%o%(%sender%%o%) %message%'
  22. private: '%o%(%sender%%o%) %message%'
  23. action: '* %sender%%o% %message%'
  24. join: '%o%[%sender%%o% connected]'
  25. quit: '%o%[%sender%%o% disconnected]'
  26. kick: '%o%[%moderator% %o%KICKED %sender%%o% (%message%%o%)]'
  27. admin: '%sender%%o% to online admins ->- %message%'
  28. generic: '%message%'
  29.  
  30. from-irc:
  31. chat: '§7[IRC]§f <%sender%> %message%'
  32. private: '§7[IRC]§f %sender% whispers> %message%'
  33. action: '§7[IRC]§f * %sender% %message%'
  34. join: '%darkgreen% * %sender% joined IRC'
  35. part: '%darkgreen% * %sender% parted the IRC channel'
  36. quit: '%darkgreen% * %sender% quit IRC (%message%)'
  37. kick: '%darkgreen% * %sender% was kicked from the IRC channel by %moderator% (%message%)'
  38. nick: '%darkgreen% * %sender% is now known as %message% on IRC'
  39.  
  40. from-plain:
  41.  
  42.  
  43. bots:
  44. - nickname: 'M1necraft'
  45. server: 'irc.shoutcast.com'
  46. port: 6667
  47. userident: 'minecraft' #Username/ident, anything you want
  48. serverpass: '' #This isn't the nickserv password
  49. ssl: false
  50.  
  51. message-delay: 750
  52. queue-size: 5
  53. admin-prefixes: ['@', '%', '~']
  54. ignored-users: [ep0ch]
  55.  
  56. auth:
  57. method: 'none' #Available methods: 'none', 'nickserv', 'gamesurge', 'quakenet'
  58. username: ''
  59. password: ''
  60.  
  61. on-connect:
  62. channels:
  63.  
  64. - name: '#gp.minecraft'
  65. password: ''
  66.  
  67. #Identifies this channel's endpoint (for the paths: section).
  68. tag: 'changeme'
  69. on-join:
  70.  
  71. paths:
  72.  
  73. - source: 'minecraft'
  74. target: 'changeme'
  75.  
  76. - source: 'changeme' # These are endpoint tags
  77. target: 'minecraft' #
  78.  
  79. filters:
  80. - message: '^\.[^ ]+'
  81.  
  82. # formatting:
  83.  
  84. attributes:
  85. admin: true
  86. disable: false
  87.  
  88. default-attributes:
  89. disable: false
  90. attributes:
  91. chat: true
  92. action: true
  93. join: true
  94. part: true
  95. nick: true
  96. quit: true
  97. kick: true
  98. private: true
  99. command: true
  100. say: true
  101. generic: true
  102.  
  103. #Admin commands and /admins! can only be sent through a path where admin is set to true
  104. admin: true
  105.  
  106. #True: Colors will be converted. False: Colors will be stripped.
  107. colors: true
  108. # Use %colorname% in a formatting string to have the correct color show up in the message.
  109.  
  110. colormap:
  111. - {irc: 0, game: "\u00A70", name: 'background'}
  112. - {irc: 2, game: "\u00A71", name: 'navy'}
  113. - {irc: 3, game: "\u00A72", name: 'darkgreen'}
  114. - {irc: 10, game: "\u00A73", name: 'teal'}
  115. - {irc: 5, game: "\u00A74", name: 'maroon'}
  116. - {irc: 6, game: "\u00A75", name: 'purple'}
  117. - {irc: 7, game: "\u00A76", name: 'orange'}
  118. - {irc: 15, game: "\u00A77", name: 'grey'}
  119. - {irc: 14, game: "\u00A78", name: 'darkgrey'}
  120. - {irc: 12, game: "\u00A79", name: 'blue'}
  121. - {irc: 9, game: "\u00A7a", name: 'green'}
  122. - {irc: 11, game: "\u00A7b", name: 'cyan'}
  123. - {irc: 4, game: "\u00A7c", name: 'red'}
  124. - {irc: 13, game: "\u00A7d", name: 'magenta'}
  125. - {irc: 8, game: "\u00A7e", name: 'yellow'}
  126. - {irc: 1, game: "\u00A7f", name: 'foreground'}
Add Comment
Please, Sign In to add comment