Advertisement
Guest User

Untitled

a guest
May 19th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.95 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ##########################################################################################################
  4. # commands
  5. #--------------------------------------------------------------------------------------------------------#
  6. # Custom IRC channel commands that will be mapped to Minecraft commands can be defined here.
  7. ##########################################################################################################
  8.  
  9. commands {
  10.  
  11. players {
  12. # The IRC command that will trigger this mapping. Example: !players [default: ]
  13. S:"IRC Command"=!players
  14.  
  15. # The Minecraft command run from this mapping. Example: /ircbridge players [default: ]
  16. S:"Minecraft Command"=/ircbridge players
  17.  
  18. # Should the command response only be sent to the user who ran the command? [default: false]
  19. B:"Private Response"=false
  20.  
  21. # Are users required to be authenticated with NickServ and added to the trusted users list in order to run this command? [default: false]
  22. B:"Require Trusted"=false
  23. }
  24.  
  25. op {
  26. # The IRC command that will trigger this mapping. Example: !players [default: ]
  27. S:"IRC Command"=!op
  28.  
  29. # The Minecraft command run from this mapping. Example: /ircbridge players [default: ]
  30. S:"Minecraft Command"=/ircbridge run
  31.  
  32. # Should the command response only be sent to the user who ran the command? [default: false]
  33. B:"Private Response"=false
  34.  
  35. # Are users required to be authenticated with NickServ and added to the trusted users list in order to run this command? [default: false]
  36. B:"Require Trusted"=true
  37. }
  38.  
  39. }
  40.  
  41.  
  42. format {
  43.  
  44. irc {
  45. S:Chat=§7》%u: %m
  46. S:Emote=§7》%u %m
  47. S:Join=§e%u has joined %c
  48. S:Leave=§e%u has left %c
  49. S:NickChange=§7%u is now known as %m
  50. S:NoUsers=[%c] No users online.
  51. S:Quit=§e%u has quit IRC (%m)
  52. S:Topic=§e%m
  53. S:UserList=[%c] %m users online: %u
  54. }
  55.  
  56. minecraft {
  57. S:Achievement=%u has just earned the achievement §a[%m]
  58. S:Broadcast=[%u] %m
  59. S:Chat=<%u> %m
  60. S:Death=%m
  61. S:Emote=* %u %m
  62. S:Join=§e%u joined the game
  63. S:JoinRenamed=§e%u (formerly known as %m) joined the game
  64. S:Leave=§e%u left the game
  65. S:NoPlayers=§3No players online.
  66. S:PlayerList=§3%m players online§r: %u
  67. }
  68.  
  69. }
  70.  
  71.  
  72. general {
  73. # Should formatting be converted between Minecraft <-> IRC? [default: true]
  74. B:"Convert Formatting"=true
  75. B:"Display IRC Joins and Leaves"=false
  76. B:"Display IRC Nick Changes"=false
  77. B:"Display IRC Topic"=false
  78. B:"Display Minecraft Achievements"=false
  79. B:"Display Minecraft Broadcasts"=false
  80. B:"Display Minecraft Deaths"=false
  81. B:"Display Minecraft Joins and Leaves"=false
  82.  
  83. # Should an invisible character be inserted into names coming from Minecraft to prevent pinging IRC users with the same name? [default: true]
  84. B:"Prevent User Ping"=true
  85.  
  86. # A list of NickServ authenticated names that are able to run commands with the requireTrusted flag set to true. [default: ]
  87. S:"Trusted Users" <
  88. >
  89.  
  90. # Set this to true to enable debug mode. [default: false]
  91. B:debug=false
  92. }
  93.  
  94.  
  95. irc {
  96. # This is a list of channels to connect to. You can also specify a channel password by adding it to the end of the name, separated by a colon. [default: [#ChangeMe]]
  97. S:channels <
  98. #general
  99. >
  100.  
  101. # The name of this server to use as a nickname in IRC. [default: ChangeMe]
  102. S:nick=Exp
  103.  
  104. # The port of the IRC server to connect to. [range: 0 ~ 65536, default: 6667]
  105. I:port=6667
  106.  
  107. # The address of the IRC server to connect to. [default: ]
  108. S:server=requiemofapickaxe.com
  109.  
  110. advanced {
  111. # Set this to true to disable Diffie Helman for secure connections to work around a bug prior to Java 8 [default: false]
  112. B:disableDiffieHellman=false
  113.  
  114. # The encoding to use for this IRC connection. [default: UTF-8]
  115. S:encoding=UTF-8
  116.  
  117. # The local address the IRC connection should be bound to. [default: ]
  118. S:localAddress=
  119.  
  120. # The delay between messages to prevent accidental flooding. [range: 33 ~ 1000, default: 33]
  121. I:messageDelay=33
  122.  
  123. # The server password for the IRC server (empty for no password). [default: ]
  124. S:password=
  125.  
  126. # The name to show in WHOIS requests. [default: IRCBridge]
  127. S:realName=IRCBridge
  128.  
  129. # Set this to true to enable secure connections through SSL. [default: false]
  130. B:secure=false
  131.  
  132. # Set this to true to accept self-signed certificates in secure connections (required for many IRC servers) [default: false]
  133. B:selfSigned=false
  134.  
  135. # The username for this IRC connection (this is *not* for NickServ) [default: IRCBridge]
  136. S:username=IRCBridge
  137. }
  138.  
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement