Advertisement
Guest User

Untitled

a guest
Jan 29th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.87 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. - (\b.?anus),donuts
  14.  
  15. # command without the /
  16. blockablecommands:
  17. - ?
  18. - plugins
  19.  
  20. # blacklisted nicknames
  21. nicknames:
  22. - Katniss
  23.  
  24. nickname-in-tablist: true
  25.  
  26. commandspy:
  27. worldeditcommands: true
  28.  
  29. antispam:
  30. enabled: false
  31.  
  32. # number of messages to be spam
  33. spamnumber: 5
  34.  
  35. # amount of time in seconds for it to be spam
  36. spamtime: 10
  37.  
  38. # amount of time in minutes for the mute to last, use 0 for untimed mute
  39. mutetime: 10
  40.  
  41. # Logging chat and commands to a mysql database
  42. mysql:
  43. enabled: false
  44. user: User
  45. port: 3306
  46. password: Password
  47. host: localhost
  48. database: Database
  49.  
  50. # Login and logout messages
  51. # Use Default for the vanilla login and logout messages
  52. login:
  53. enabled: true
  54. message: Default
  55. logout:
  56. enabled: true
  57. message: Default
  58.  
  59. # Loglevel feature is still in the works for adding of debug messages
  60. # Valid loglevels:
  61. # Info: Regular logging
  62. # Debug: Show extra messages and caught errors for debugging
  63. # Severe: Only show severe messages
  64. loglevel: info
  65.  
  66. # saveinterval is in minutes
  67. saveinterval: 30
  68.  
  69. # The time in seconds between each check to remove timed mutes
  70. unmuteinterval: 60
  71.  
  72. # The color of the private messages
  73. tellcolor: white
  74.  
  75. # Enables or disabled BungeeCord messaging
  76. bungeecordmessaging: true
  77.  
  78. # This will allow vanished players to be exempt from being sent private messages, and will act as if they aren't online
  79. vanishsupport: true
  80.  
  81. # {playerto} : player receivings name
  82. # {playerfrom} : player sendings name
  83. # use Default for the basic formatting
  84. tellformatto: Default
  85. tellformatfrom: Default
  86. tellformatspy: Default
  87. replyformatto: Default
  88. replyformatfrom: Default
  89. replyformatspy: Default
  90.  
  91. # {sender} : player sendings name
  92. # {player} : player receivings name
  93. # {time} : time mail was sent
  94. # use Default for the basic formatting
  95. mailformat: Default
  96.  
  97. # {host} : party hosts name
  98. # {player} : player name
  99. # use Default for the basic formatting
  100. partyformat: Default
  101.  
  102. broadcastafk: false
  103. formatcleaner: true
  104.  
  105. # If true, /ignore will block chat from the ignored player as well as PM's
  106. ignorechat: false
  107.  
  108. # The message shown to players alerting them no one is in the channel to hear them
  109. emptychannelalert: "&6No one is listening to you."
  110.  
  111. messageremoverpermissions: '&cYou need additional permissions to view this message!'
  112.  
  113. # The name of the group is the permissions node for the format
  114. # Example: mineversechat.json.Owner is the node for the group Owner
  115. # A lower priority overrides a higher priority if a player has more than 1 group
  116. # Possible options for click_name and click_prefix are suggest_command, run_command, and open_url
  117. jsonformatting:
  118. Default: # This default format is required! Do not delete or rename it!
  119. priority: 2147483647 # Integer.MAX_VALUE
  120. hover_name:
  121. - ''
  122. click_name: 'suggest_command'
  123. click_name_text: '/m'
  124. hover_prefix:
  125. - 'real name: '
  126. click_prefix: 'run_command'
  127. click_prefix_text: ''
  128. hover_suffix:
  129. - ''
  130. click_suffix: 'suggest_command'
  131. click_suffix_text: '/m'
  132. Owner:
  133. priority: 1 # Lowest Priority
  134. hover_name:
  135. - '&cI am a god'
  136. - '&bMessage me for help!'
  137. click_name: 'suggest_command'
  138. click_name_text: '/m'
  139. hover_prefix:
  140. - ''
  141. click_prefix: 'run_command'
  142. click_prefix_text: ''
  143. hover_suffix:
  144. - '&dI am Owner suffix!'
  145. click_suffix: 'suggest_command'
  146. click_suffix_text: '/m'
  147.  
  148. # The icon is the block shown in the GUI
  149. # The text is the display name of the block icon
  150. # Include a slash (/) before the command
  151. # Permissions automatically include "mineversechat."
  152. # Example: permissions: alert equals mineversechat.alert
  153. venturegui:
  154. mute:
  155. icon: 'REDSTONE_BLOCK'
  156. durability: 0
  157. text: '&cMute {player_name}'
  158. permission: 'mute'
  159. command: '/mute {player_name} {channel} 10'
  160. slot: 1
  161. unmute:
  162. icon: 'DIAMOND_BLOCK'
  163. durability: 0
  164. text: '&bUnmute {player_name}'
  165. permission: 'mute'
  166. command: '/unmute {player_name} {channel}'
  167. slot: 2
  168. removemessage:
  169. icon: 'DIAMOND_AXE'
  170. durability: 0
  171. text: '&cRemove Message'
  172. permission: 'removemessage'
  173. command: '/removemessage {hash} true'
  174. slot: 7
  175.  
  176. guiicon: '&8 [✓]'
  177. guitext: '&cOpen Moderation GUI'
  178. guirows: 1
  179.  
  180. # All clickable URL's will be underlined if set to true
  181. underlineurls: true
  182.  
  183. # broadcast information
  184. broadcast:
  185. color: red
  186. permissions: mineversechat.adminchannel
  187. displaytag: '[Capitol TV]'
  188.  
  189. # Use $ to include arguments into the message
  190. # Valid component types are:
  191. # Command: Sends a message or command in chat
  192. # Message: Sends a message to the player
  193. # Broadcast: Sends a broadcast to all players on the server
  194. # Permissions automatically include "mineversechat."
  195. # Example: permissions: alert equals mineversechat.alert
  196. # Use None for no permissions
  197. # The number of arguments is the minimum number of required arguments, use 0 for no required arguments
  198. alias:
  199. alert:
  200. arguments: 1
  201. permissions: alert
  202. components:
  203. - 'Broadcast: &c<Alert> $'
  204. donate:
  205. arguments: 0
  206. permissions: None
  207. components:
  208. - 'Message: &bDonate here: http://panemrebellion.enjin.com'
  209. website:
  210. arguments: 0
  211. permissions: None
  212. components:
  213. - 'Message: &aThis is our website: http://panemrebellion.enjin.com'
  214. mail:
  215. arguments: 0
  216. permissions: None
  217. components:
  218. - 'Command: /mail$'
  219. tell:
  220. arguments: 0
  221. permissions: None
  222. components:
  223. - 'Command: /vtell$'
  224. whisper:
  225. arguments: 0
  226. permissions: None
  227. components:
  228. - 'Command: /vwhisper$'
  229. w:
  230. arguments: 0
  231. permissions: None
  232. components:
  233. - 'Command: /vwhisper$'
  234. msg:
  235. arguments: 0
  236. permissions: None
  237. components:
  238. - 'Command: /vmessage$'
  239. message:
  240. arguments: 0
  241. permissions: None
  242. components:
  243. - 'Command: /vmessage$'
  244.  
  245. # Valid modes are:
  246. # * Everyone
  247. # v Voice and up
  248. # h HalfOp and up
  249. # q Owner
  250. # o Op and up
  251. # Enter components like console commands
  252. # Arguments are accepted
  253. irc:
  254. enabled: false
  255. nick: 'MineverseChatBot'
  256. login: 'MineverseChatbot'
  257. server: 'irc.freenode.net'
  258. port: 6667
  259. channel: '#mineversechat'
  260. trustallcertificates: true
  261. # the delay before the bot logs into the channel in seconds
  262. # increase the time if the bot fails to login
  263. channeldelay: 60
  264. commands:
  265. mute:
  266. mode: 'v'
  267. components:
  268. - 'mute'
  269. ban:
  270. mode: 'o'
  271. components:
  272. - 'ban'
  273. kick:
  274. mode: 'v'
  275. components:
  276. - 'kick'
  277.  
  278. # color = [channel] color
  279. # chatcolor = text color
  280. # cooldown is in seconds
  281. # bungeecord overrides distance
  282. # channel permissions are configurable
  283. # channels can be changed, and new channels can be created
  284. # Permissions automatically include "mineversechat."
  285. # Example: permissions: staff equals mineversechat.staff
  286. # Use None for no permissions
  287.  
  288. # Legacy Placeholders:
  289. # Use PlaceholderAPI
  290. # {name} : player name
  291. # {nickname} : player nickname or name if they have no nickname
  292. # {prefix} : player prefix and color
  293. # {suffix} : player suffix and color
  294. # {servername} : name of the server in server.properties
  295. # {herolevel} : heroes hero level
  296. # {heroclass} : heroes hero class
  297. # {heroxp} : heroes hero xp
  298. # {herosecondclass} : heroes second class
  299. # {party} : heroes party
  300. # {herosecondmaster} : heroes second class master
  301. # {heromaster} : heroes class master
  302. # {herosecondlevel} : heroes second class level
  303. # {herosecondxp} : heroes second class xp
  304. # Use '' or "" around format, example: '[&2global&f] {prefix}{name}&2:'
  305. # You must have prefixes and suffixes set in a Vault compatible permissions plugin to avoid errors
  306. # Use "" as the prefix or suffix to have none
  307. # use Default for the basic formatting
  308. channels:
  309. Global:
  310. color: dark_green
  311. chatcolor: gray
  312. mutable: true
  313. filter: true
  314. autojoin: true
  315. default: true
  316. distance: 0
  317. cooldown: 0
  318. bungeecord: false
  319. alias: g
  320. permissions: None
  321. format: '{prefix} {feudal_profession} &f&l{nickname} &f&l{feudal_kingdom}&7&l'
  322. irc: false
  323. Staff:
  324. color: light_red
  325. chatcolor: light_red
  326. mutable: false
  327. filter: false
  328. autojoin: true
  329. default: false
  330. distance: 0
  331. cooldown: 0
  332. bungeecord: false
  333. alias: s
  334. permissions: staff
  335. format: '&f[&cStaff&f] {nickname}&a:'
  336. irc: false
  337. Admin:
  338. color: red
  339. chatcolor: red
  340. mutable: false
  341. filter: false
  342. autojoin: true
  343. default: false
  344. distance: 0
  345. cooldown: 0
  346. bungeecord: false
  347. alias: a
  348. permissions: admin
  349. format: '&f[&cAdmin&f] {nickname}&c:'
  350. irc: false
  351. Local:
  352. color: yellow
  353. chatcolor: yellow
  354. mutable: true
  355. filter: true
  356. autojoin: true
  357. default: false
  358. distance: 230
  359. cooldown: 0
  360. bungeecord: false
  361. alias: l
  362. permissions: None
  363. format: '&f[&eLocal&f] {nickname}&e:'
  364. irc: false
  365. Network:
  366. color: gold
  367. chatcolor: gold
  368. mutable: true
  369. filter: true
  370. autojoin: true
  371. default: false
  372. distance: 0
  373. cooldown: 60
  374. bungeecord: true
  375. alias: shout
  376. permissions: None
  377. format: '&f[&6Shout&f] {nickname}&6:'
  378. irc: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement