Advertisement
Guest User

config

a guest
May 8th, 2016
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.29 KB | None | 0 0
  1. #===============================================================
  2. # MineverseChat Config =
  3. # Author: Aust1n46 =
  4. #===============================================================
  5.  
  6. # - regex1,regex2
  7. # Simple regex tips: Use \b to "cut" a section of the word or phrase. Example: \bass,donuts
  8. # Example filtered sentence: You are an ass. Will become: You are an donuts.
  9. # Example filtered sentence: You caught a bass. Will stay: You caught a bass.
  10. # Example filtered sentence: You are an asshole. Will become: You are an donutshole.
  11. # Default filters by Jabelpeeps
  12. filters:
  13. - pmc,another dimension
  14.  
  15. # command without the /
  16. blockablecommands:
  17. - acommand
  18.  
  19. # blacklisted nicknames
  20. nicknames:
  21. - Notch
  22.  
  23. nickname-in-tablist: false
  24.  
  25. commandspy:
  26. worldeditcommands: true
  27.  
  28. antispam:
  29. enabled: false
  30.  
  31. # number of messages to be spam
  32. spamnumber: 5
  33.  
  34. # amount of time in seconds for it to be spam
  35. spamtime: 10
  36.  
  37. # amount of time in minutes for the mute to last, use 0 for untimed mute
  38. mutetime: 3
  39.  
  40. # Logging chat and commands to a mysql database
  41. mysql:
  42. enabled: false
  43. user: User
  44. port: 3306
  45. password: Password
  46. host: localhost
  47. database: Database
  48.  
  49. # Login and logout messages
  50. # Use Default for the vanilla login and logout messages
  51. login:
  52. enabled: true
  53. message: Default
  54. logout:
  55. enabled: true
  56. message: Default
  57.  
  58. # Loglevel feature is still in the works for adding of debug messages
  59. # Valid loglevels:
  60. # Info: Regular logging
  61. # Debug: Show extra messages and caught errors for debugging
  62. # Severe: Only show severe messages
  63. loglevel: info
  64.  
  65. # saveinterval is in minutes
  66. saveinterval: 30
  67.  
  68. # The time in seconds between each check to remove timed mutes
  69. unmuteinterval: 60
  70.  
  71. # The color of the private messages
  72. tellcolor: white
  73.  
  74. # Enables or disabled BungeeCord messaging
  75. bungeecordmessaging: true
  76.  
  77. # This will allow vanished players to be exempt from being sent private messages, and will act as if they aren't online
  78. vanishsupport: true
  79.  
  80. # {playerto} : player receivings name
  81. # {playerfrom} : player sendings name
  82. # use Default for the basic formatting
  83. tellformatto: {playerfrom} &e&l> &6&lYou&f:
  84. tellformatfrom: &6&lYou &e&l> &f{playerto}&f:
  85. tellformatspy: &0&l[&e&lSpy&0&l]&6&l {playerfrom} &e&l>&6&l &6&l{playerto}&f:
  86. replyformatto: {playerfrom} &e&l> &6&lYou&f:
  87. replyformatfrom: &6&lYou &e&l> &f{playerto}&f:
  88. replyformatspy: &0&l[&e&lSpy&0&l]&6&l {playerfrom} &e&l>&6&l &6&l{playerto}&f:
  89.  
  90. # {sender} : player sendings name
  91. # {player} : player receivings name
  92. # {time} : time mail was sent
  93. # use Default for the basic formatting
  94. mailformat: Default
  95.  
  96. # {host} : party hosts name
  97. # {player} : player name
  98. # use Default for the basic formatting
  99. partyformat: Default
  100.  
  101. broadcastafk: false
  102. formatcleaner: true
  103.  
  104. # If true, /ignore will block chat from the ignored player as well as PM's
  105. ignorechat: true
  106.  
  107. # The message shown to players alerting them no one is in the channel to hear them
  108. emptychannelalert: "&6No one is listening to you."
  109.  
  110. messageremovericon: '&c[x]'
  111. messageremovertext: '&cRemove Message'
  112. messageremoverpermissions: '&cYou need additional permissions to view this message!'
  113.  
  114. # The name of the group is the permissions node for the format
  115. # Example: mineversechat.json.Owner is the node for the group Owner
  116. # A lower priority overrides a higher priority if a player has more than 1 group
  117. # Possible options for click_name and click_prefix are suggest_command, run_command, and open_url
  118. jsonformatting:
  119. Default:
  120. priority: 2147483647 # Integer.MAX_VALUE
  121. hover_name:
  122. - '&6I have no rank!'
  123. click_name: 'suggest_command'
  124. click_name_text: '/msg {player_name}'
  125. hover_prefix:
  126. - '&dI am default!'
  127. click_prefix: 'run_command'
  128. click_prefix_text: '/help'
  129.  
  130. # The text is the message shown when hovering over the button
  131. # The icon is what is shown at the end of the chat message and can be clicked
  132. # Permissions automatically include "mineversechat."
  133. # Example: permissions: alert equals mineversechat.alert
  134. # Use "None" if you do not want permissions
  135. # Do not use a slash (/) before the command
  136. jsonbuttons:
  137. msg:
  138. text: ''
  139. icon: ''
  140. permission: 'muteplayer'
  141. click_action: 'run_command'
  142. command: 'mute {player}'
  143.  
  144. # All clickable URL's will be underlined if set to true
  145. underlineurls: true
  146.  
  147. # broadcast information
  148. broadcast:
  149. color: red
  150. permissions: mineversechat.adminchannel
  151. displaytag: '[Broadcast]'
  152.  
  153. # Use $ to include arguments into the message
  154. # Valid component types are:
  155. # Command: Sends a message or command in chat
  156. # Message: Sends a message to the player
  157. # Broadcast: Sends a broadcast to all players on the server
  158. # Permissions automatically include "mineversechat."
  159. # Example: permissions: alert equals mineversechat.alert
  160. # Use None for no permissions
  161. # The number of arguments is the minimum number of required arguments, use 0 for no required arguments
  162. alias:
  163. vote:
  164. arguments: 0
  165. permissions: None
  166. components:
  167. - 'Message: &6Vote here: www.votelinkhere.com'
  168.  
  169. # Valid modes are:
  170. # * Everyone
  171. # v Voice and up
  172. # h HalfOp and up
  173. # q Owner
  174. # o Op and up
  175. # Enter components like console commands
  176. # Arguments are accepted
  177. irc:
  178. enabled: false
  179. nick: 'MineverseChatBot'
  180. login: 'MineverseChatbot'
  181. server: 'irc.freenode.net'
  182. port: 6667
  183. channel: '#mineversechat'
  184. trustallcertificates: true
  185. # the delay before the bot logs into the channel in seconds
  186. # increase the time if the bot fails to login
  187. channeldelay: 60
  188. commands:
  189. mute:
  190. mode: 'v'
  191. components:
  192. - 'mute'
  193. ban:
  194. mode: 'o'
  195. components:
  196. - 'ban'
  197. kick:
  198. mode: 'v'
  199. components:
  200. - 'kick'
  201.  
  202. # color = [channel] color
  203. # chatcolor = text color
  204. # cooldown is in seconds
  205. # bungeecord overrides distance
  206. # channel permissions are configurable
  207. # channels can be changed, and new channels can be created
  208. # Permissions automatically include "mineversechat."
  209. # Example: permissions: staff equals mineversechat.staff
  210. # Use None for no permissions
  211.  
  212. # Legacy Placeholders:
  213. # Use PlaceholderAPI
  214. # {name} : player name
  215. # {nickname} : player nickname or name if they have no nickname
  216. # {prefix} : player prefix and color
  217. # {suffix} : player suffix and color
  218. # {servername} : name of the server in server.properties
  219. # {herolevel} : heroes hero level
  220. # {heroclass} : heroes hero class
  221. # {heroxp} : heroes hero xp
  222. # {herosecondclass} : heroes second class
  223. # {party} : heroes party
  224. # {herosecondmaster} : heroes second class master
  225. # {heromaster} : heroes class master
  226. # {herosecondlevel} : heroes second class level
  227. # {herosecondxp} : heroes second class xp
  228. # Use '' or "" around format, example: '[&2global&f] {prefix}{name}&2:'
  229. # You must have prefixes and suffixes set in a Vault compatible permissions plugin to avoid errors
  230. # Use "" as the prefix or suffix to have none
  231. # use Default for the basic formatting
  232. channels:
  233. Default:
  234. color: white
  235. chatcolor: white
  236. mutable: false
  237. filter: false
  238. autojoin: true
  239. default: true
  240. distance: 0
  241. cooldown: 0
  242. bungeecord: false
  243. alias: g
  244. permissions: None
  245. format: '{prefix} {name}&f:'
  246. irc: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement