Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.77 KB | None | 0 0
  1. #===============================================================
  2. # VentureChat 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.  
  14. # command without the /
  15. blockablecommands:
  16. - vote
  17. - me
  18.  
  19. # blacklisted nicknames
  20. nicknames:
  21. - Notch
  22.  
  23. nickname-in-tablist: true
  24.  
  25. commandspy:
  26. worldeditcommands: true
  27.  
  28. antispam:
  29. enabled: true
  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: 10
  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: Default
  84. tellformatfrom: Default
  85. tellformatspy: Default
  86. replyformatto: Default
  87. replyformatfrom: Default
  88. replyformatspy: Default
  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: true
  102. formatcleaner: true
  103.  
  104. # If true, /ignore will block chat from the ignored player as well as PM's
  105. ignorechat: false
  106.  
  107. # The message shown to players alerting them no one is in the channel to hear them
  108. emptychannelalert: "&6No one else is in the channel."
  109.  
  110. messageremoverpermissions: '&cYou need additional permissions to view this message!'
  111.  
  112. # The name of the group is the permissions node for the format
  113. # Example: mineversechat.json.Owner is the node for the group Owner
  114. # A lower priority overrides a higher priority if a player has more than 1 group
  115. # Possible options for click_name and click_prefix are suggest_command, run_command, and open_url
  116. jsonformatting:
  117. Default: # This default format is required! Do not delete or rename it!
  118. priority: 2147483647 # Integer.MAX_VALUE
  119. hover_name:
  120. - '&6I have no rank!'
  121. click_name: 'suggest_command'
  122. click_name_text: '/msg {player_name}'
  123. hover_prefix:
  124. - '&dI am default!'
  125. click_prefix: 'run_command'
  126. click_prefix_text: '/help'
  127. hover_suffix:
  128. - '&dI am default suffix!'
  129. click_suffix: 'suggest_command'
  130. click_suffix_text: '/msg {player_name}'
  131. Owner:
  132. priority: 1 # Lowest Priority
  133. hover_name:
  134. - '&cOwner of the server!'
  135. - '&bMessage me for help!'
  136. click_name: 'suggest_command'
  137. click_name_text: '/msg {player_name}'
  138. hover_prefix:
  139. - '&dServer Owner'
  140. click_prefix: 'run_command'
  141. click_prefix_text: '/help'
  142. hover_suffix:
  143. - '&dI am Owner suffix!'
  144. click_suffix: 'suggest_command'
  145. click_suffix_text: '/msg {player_name}'
  146.  
  147. # The icon is the block shown in the GUI
  148. # The text is the display name of the block icon
  149. # Include a slash (/) before the command
  150. # Permissions are the name of the button and automatically include "venturechat."
  151. # Example: mute equals venturechat.mute
  152. venturegui:
  153. mute:
  154. icon: 'REDSTONE_BLOCK'
  155. durability: 0
  156. text: '&cMute {player_name}'
  157. permission: 'mute'
  158. command: '/mute {player_name} {channel} 10'
  159. slot: 1
  160. unmute:
  161. icon: 'DIAMOND_BLOCK'
  162. durability: 0
  163. text: '&bUnmute {player_name}'
  164. permission: 'mute'
  165. command: '/unmute {player_name} {channel}'
  166. slot: 2
  167. removemessage:
  168. icon: 'DIAMOND_AXE'
  169. durability: 0
  170. text: '&cRemove Message'
  171. permission: 'removemessage'
  172. command: '/removemessage {hash} true'
  173. slot: 7
  174.  
  175. guiicon: '&c [✓]'
  176. guitext: '&cOpen Moderation GUI'
  177. guirows: 1
  178.  
  179. # All clickable URL's will be underlined if set to true
  180. underlineurls: true
  181.  
  182. # broadcast information
  183. broadcast:
  184. color: red
  185. permissions: venturechat.adminchannel
  186. displaytag: '[Broadcast]'
  187.  
  188. # Use $ to include arguments into the message
  189. # Valid component types are:
  190. # Command: Sends a message or command in chat
  191. # Message: Sends a message to the player
  192. # Broadcast: Sends a broadcast to all players on the server
  193. # Permissions automatically include "venturechat."
  194. # Example: permissions: alert equals venturechat.alert
  195. # Use None for no permissions
  196. # The number of arguments is the minimum number of required arguments, use 0 for no required arguments
  197. alias:
  198. bane:
  199. arguments: 2
  200. permissions: bane
  201. components:
  202. - 'Command: /ban $ appeal at www.site.com'
  203. - 'Command: /st banned $'
  204. # color = [channel] color
  205. # chatcolor = text color
  206. # cooldown is in seconds
  207. # bungeecord overrides distance
  208. # channel permissions are configurable
  209. # channels can be changed, and new channels can be created
  210. # Permissions automatically include "venturechat."
  211. # Example: permissions: staff equals venturechat.staff
  212. # Use None for no permissions
  213.  
  214. # Legacy Placeholders:
  215. # Use PlaceholderAPI
  216. # {name} : player name
  217. # {nickname} : player nickname or name if they have no nickname
  218. # {prefix} : player prefix and color
  219. # {suffix} : player suffix and color
  220. # {servername} : name of the server in server.properties
  221. # {herolevel} : heroes hero level
  222. # {heroclass} : heroes hero class
  223. # {heroxp} : heroes hero xp
  224. # {herosecondclass} : heroes second class
  225. # {party} : heroes party
  226. # {herosecondmaster} : heroes second class master
  227. # {heromaster} : heroes class master
  228. # {herosecondlevel} : heroes second class level
  229. # {herosecondxp} : heroes second class xp
  230. # Use '' or "" around format, example: '[&2global&f] {prefix}{name}&2:'
  231. # You must have prefixes and suffixes set in a Vault compatible permissions plugin to avoid errors
  232. # Use "" as the prefix or suffix to have none
  233. # use Default for the basic formatting
  234. channels:
  235. Global:
  236. color: white
  237. chatcolor: white
  238. mutable: true
  239. filter: false
  240. autojoin: true
  241. default: true
  242. distance: 0
  243. cooldown: 0
  244. bungeecord: false
  245. alias: g
  246. permissions: None
  247. format: '&7[&r{factions_relcolor}{factions_nameforce|rpforce}&7]{prefix}{nickname}&7:'
  248. irc: false
  249. Staff:
  250. color: green
  251. chatcolor: green
  252. mutable: false
  253. filter: false
  254. autojoin: true
  255. default: false
  256. distance: 0
  257. cooldown: 0
  258. bungeecord: false
  259. alias: st
  260. permissions: staffchannel
  261. format: '&7[&aStaff&7]&7[&r{factions_relcolor}{factions_nameforce|rpforce}&7]{prefix}{nickname}&7:'
  262. irc: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement