Advertisement
Guest User

Untitled

a guest
Aug 14th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.23 KB | None | 0 0
  1. craftIRC:
  2. -------------------
  3.  
  4. settings:
  5. #### This node contains the global scope. Settings defined here are either global settings or defaults that apply to all
  6. #### bots and channels (unless overriden in the bot or channel scope).
  7.  
  8. #The prefix for the IRC-side bot commands; Can be overriden in the bot scope.
  9. command-prefix: '!'
  10.  
  11. #You probably don't need this.
  12. debug: false
  13.  
  14. console-commands: ['reload', 'save-all']
  15.  
  16. ignored-prefixes:
  17. irc: []
  18. game: []
  19.  
  20. #Delay in milliseconds for these game events to be ignored after the plugin is enabled (prevents initial flood burst).
  21. hold-after-enable:
  22. chat: 0
  23. joins: 0
  24. quits: 0
  25. kicks: 0
  26. bans: 0
  27.  
  28. formatting:
  29. #### Formatting for the messages relayed by the plugin. You can override all formatting strings in the bot or channel
  30. #### scope (within a formatting: block). In irc-to-irc, the target channel controls the format strings.
  31. #### VARIABLES (may be blank depending on the context): %sender% %message% %moderator% %srcChannel% %trgChannel% %world%
  32. #### IF YOU'RE RUNNING Permissions: %prefix% %suffix% %modPredix% %modSuffix% (game-to-irc only)
  33. #### IRC FORMATTING: %b% %u% %r% %o% %k% %kNUM% (NUM is 0 to 15); Do the same as CTRL+key in mIRC
  34. #### GAME COLORS: §NUM (NUM is 1 to f); Do not use in the end of a line
  35. #### EASY COLORS: Use the names defined in the colormap: block, such as %blue% %foreground% %yellow% etc.
  36. game-to-irc:
  37. chat: '(%sender%) %message%'
  38. action: '* %sender% %message%'
  39. joins: '[%sender% connected]'
  40. quits: '[%sender% disconnected]'
  41. kicks: '[%moderator% KICKED %sender% (%message%)]'
  42. bans: '[%moderator% BANNED %sender% (%message%)]'
  43. irc-to-game:
  44. chat: '[%srcChannel%] <%sender%> %message%'
  45. action: '[%srcChannel%] * %sender% %message%'
  46. joins: '[%srcChannel%] * Joins: %sender%'
  47. parts: '[%srcChannel%] * Parts: %sender%'
  48. quits: '[%srcChannel%] * Quits: %sender%'
  49. kicks: '[%srcChannel%] * %sender% was kicked by %moderator%'
  50. nicks: '[%srcChannel%] * %sender% is now known as %message%'
  51. irc-to-irc:
  52. chat: '[%srcChannel%] <%sender%> %message%'
  53. action: '[%srcChannel%] * %sender% %message%'
  54. joins: '[%srcChannel%] * Joins: %sender%'
  55. parts: '[%srcChannel%] * Parts: %sender%'
  56. quits: '[%srcChannel%] * Quits: %sender% (%message%)'
  57. kicks: '[%srcChannel%] * %sender% was kicked by %moderator% (%message%)'
  58. nicks: '[%srcChannel%] * %sender% is now known as %message%'
  59. custom:
  60. #Custom blocks define custom variables you can use within formatting strings
  61. botname: ''
  62. network: ''
  63.  
  64. # Optional: Bind to a non-default local address
  65. # bind-address: 127.0.0.1
  66.  
  67. events:
  68. #### Turn different types of messages on and off here. cancelled-chat only exists in the global scope; The remaining
  69. #### events can be redefined in the bot or channel scopes (within an events: block). In irc-to-irc, the source
  70. #### channel controls the events.
  71. game-to-irc:
  72. # If you use other chat plugins, you probably want to set cancelled-chat: true
  73. cancelled-chat: true
  74. all-chat: true
  75. joins: true
  76. quits: true
  77. kicks: false
  78. bans: false
  79. irc-to-game:
  80. all-chat: true
  81. joins: false
  82. parts: false
  83. quits: false
  84. kicks: false
  85. nicks: false
  86. irc-to-irc:
  87. all-chat: true
  88. joins: true
  89. parts: true
  90. quits: true
  91. kicks: true
  92. nicks: true
  93.  
  94. #Tags allow you to target messages to all the channels within a scope. The global scope contains all channels.
  95. tag: 'dcfire'
  96.  
  97. bots:
  98. #### A list of bots; You should only need one bot for each IRC server (the same bot can join multiple channels).
  99. #### Settings that apply to all channels of a bot should be defined in a bot's node. The dash in the third
  100. #### column starts a new bot.
  101.  
  102. - nickname: 'LavaCraft'
  103. server: 'irc.esper.net'
  104. port: 6667
  105. userident: 'aoa2003'
  106. serverpass: '' #This isn't the nickserv password
  107. ssl: false
  108.  
  109. #Delay between messages helps prevent triggering server-side flood protections (milliseconds)
  110. message-delay: 1000
  111.  
  112. #Types of IRC users that are considered admins within an admin channel (has no effect in normal channels)
  113. admin-prefixes: ['@', '%']
  114.  
  115. #Ignore users in this server by nickname
  116. ignored-users: []
  117.  
  118. #Tags allow you to target messages to all the channels within a scope.
  119. tag: 'esper'
  120.  
  121. formatting:
  122. custom:
  123. botname: 'LavaCraft'
  124. network: 'Esper'
  125.  
  126. #Services authentication of the bot's nickname goes here. The username may not be required.
  127. #Available methods: 'none', 'nickserv', 'gamesurge', 'quakenet'
  128. auth:
  129. method: 'nickserv'
  130. username: ''
  131. password: ''
  132.  
  133. #List here raw IRC commands you want the bot to perform after it connects to the server
  134. #on-connect:
  135.  
  136. channels:
  137. #### A list of channels; Define here all the channels you want this bot to join. Settings that apply to a single
  138. #### channel can be defined in the channel node. A dash in the 7th column starts a new channel.
  139.  
  140. - name: '#dcfire'
  141. password: 'pyromaniac'
  142.  
  143. #In admin channels, admins can use console commands (when this feature is supported) and be send emergency
  144. # notices from users.
  145. admin: true
  146.  
  147. #This tag targets only this channel.
  148. tag: ''
  149.  
  150. #Allow IRC color codes in messages to be converted to Minecraft colors; Set to false to just remove them.
  151. chat-colors: true
  152.  
  153. #Enables Permissions prefixes and suffixes for this channel (iChat-format colors are supported).
  154. name-colors: true
  155.  
  156. #List here raw IRC commands you want the bot to perform after it joins this channel.
  157. on-join:
  158. - 'PRIVMSG #dcfire :CraftIRC Loaded. LavaCraft is ready to go!'
  159.  
  160. colormap:
  161. #### Map colors to your taste here; Make sure each irc, game and name appears once and only once.
  162. #### The color 'foreground' *must* exist and will be used as the default by certain features.
  163.  
  164. - {irc: 0, game: '§0', name: 'background'}
  165. - {irc: 2, game: '§1', name: 'navy'}
  166. - {irc: 3, game: '§2', name: 'darkgreen'}
  167. - {irc: 10, game: '§3', name: 'teal'}
  168. - {irc: 5, game: '§4', name: 'maroon'}
  169. - {irc: 6, game: '§5', name: 'purple'}
  170. - {irc: 7, game: '§6', name: 'orange'}
  171. - {irc: 15, game: '§7', name: 'grey'}
  172. - {irc: 14, game: '§8', name: 'darkgrey'}
  173. - {irc: 12, game: '§9', name: 'blue'}
  174. - {irc: 9, game: '§a', name: 'green'}
  175. - {irc: 11, game: '§b', name: 'cyan'}
  176. - {irc: 4, game: '§c', name: 'red'}
  177. - {irc: 13, game: '§d', name: 'magenta'}
  178. - {irc: 8, game: '§e', name: 'yellow'}
  179. - {irc: 1, game: '§f', name: 'foreground'}
  180.  
  181. -----------------end CraftIRC------------------
  182.  
  183.  
  184. ---------begin HeroChat-----------
  185.  
  186. globals:
  187. separate-chat-log: false
  188. incoming-tell-format: '&8From {player}: &d'
  189. censors: []
  190. plugin-tag: '§e[HeroChat] '
  191. craftIRC-prefix: '#'
  192. outgoing-tell-format: '&8To {receiver}: &d'
  193. default-channel: Global
  194. default-message-format: '{color}[{nick}] &f{prefix}{player}{suffix}{color}: '
  195. craftIRC-message-format: '[{nick}] {player}: '
  196. channels:
  197. Staff:
  198. color: NAVY
  199. nickname: staff
  200. permissions:
  201. speak: []
  202. join: []
  203. message-format: '{default}'
  204. craftIRC:
  205. game-to-IRC: []
  206. IRC-to-game: []
  207. worlds: []
  208. password: dc4life!
  209. lists:
  210. bans: []
  211. moderators: []
  212. options:
  213. hidden: true
  214. shortcut-allowed: true
  215. auto-join: true
  216. local: false
  217. cross-world-chat: true
  218. join-messages: true
  219. forced: false
  220. Local:
  221. local-distance: 100
  222. color: YELLOW
  223. nickname: local
  224. permissions:
  225. speak: []
  226. join: []
  227. message-format: '&f{prefix}{player}{suffix}{color}: '
  228. craftIRC:
  229. game-to-IRC: []
  230. IRC-to-game: []
  231. worlds: []
  232. password: ''
  233. lists:
  234. bans: []
  235. moderators: []
  236. options:
  237. hidden: false
  238. shortcut-allowed: true
  239. auto-join: true
  240. local: true
  241. cross-world-chat: true
  242. join-messages: false
  243. forced: false
  244. Global:
  245. color: WHITE
  246. nickname: global
  247. permissions:
  248. speak: []
  249. join: []
  250. message-format: '{default}'
  251. craftIRC:
  252. game-to-IRC:
  253. - dcfire
  254. IRC-to-game:
  255. - dcfire
  256. worlds: []
  257. password: ''
  258. lists:
  259. bans: []
  260. moderators:
  261. - aoa2003
  262. options:
  263. hidden: false
  264. shortcut-allowed: true
  265. auto-join: true
  266. local: false
  267. cross-world-chat: true
  268. join-messages: true
  269. forced: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement