Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.85 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. - (\b.?anus),donuts
  14.  
  15. # command without the /
  16. blockablecommands:
  17. - vote
  18. - me
  19.  
  20. # blacklisted nicknames
  21. nicknames:
  22. - Notch
  23.  
  24. nickname-in-tablist: true
  25.  
  26. commandspy:
  27. worldeditcommands: true
  28.  
  29. antispam:
  30. enabled: true
  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. - '&6I have no rank!'
  122. click_name: 'suggest_command'
  123. click_name_text: '/msg {player_name}'
  124. hover_prefix:
  125. - '&dI am default!'
  126. click_prefix: 'run_command'
  127. click_prefix_text: '/help'
  128. hover_suffix:
  129. - '&dI am default suffix!'
  130. click_suffix: 'suggest_command'
  131. click_suffix_text: '/msg {player_name}'
  132. Owner:
  133. priority: 1 # Lowest Priority
  134. hover_name:
  135. - '&cOwner of the server!'
  136. - '&bMessage me for help!'
  137. click_name: 'suggest_command'
  138. click_name_text: '/msg {player_name}'
  139. hover_prefix:
  140. - '&dServer Owner'
  141. click_prefix: 'run_command'
  142. click_prefix_text: '/help'
  143. hover_suffix:
  144. - '&dI am Owner suffix!'
  145. click_suffix: 'suggest_command'
  146. click_suffix_text: '/msg {player_name}'
  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 are the name of the button and automatically include "venturechat."
  152. # Example: mute equals venturechat.mute
  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: ' '
  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: venturechat.adminchannel
  187. displaytag: '&7[CapitolTV]'
  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 "venturechat."
  195. # Example: permissions: alert equals venturechat.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. vote:
  200. arguments: 0
  201. permissions: None
  202. components:
  203. - 'Message: &6Vote here: www.votelinkhere.com'
  204. bane:
  205. arguments: 2
  206. permissions: bane
  207. components:
  208. - 'Command: /ban $ appeal at www.site.com'
  209. - 'Command: /st banned $'
  210. alert:
  211. arguments: 1
  212. permissions: alert
  213. components:
  214. - 'Broadcast: &c<Alert> $'
  215. donate:
  216. arguments: 0
  217. permissions: None
  218. components:
  219. - 'Message: &bDonate here: www.mywebsite.com'
  220. website:
  221. arguments: 0
  222. permissions: None
  223. components:
  224. - 'Message: &aThis is our website: www.site.net'
  225. tell:
  226. arguments: 0
  227. permissions: None
  228. components:
  229. - 'Command: /vtell$'
  230. whisper:
  231. arguments: 0
  232. permissions: None
  233. components:
  234. - 'Command: /vwhisper$'
  235. w:
  236. arguments: 0
  237. permissions: None
  238. components:
  239. - 'Command: /vwhisper$'
  240. msg:
  241. arguments: 0
  242. permissions: None
  243. components:
  244. - 'Command: /vmessage$'
  245. message:
  246. arguments: 0
  247. permissions: None
  248. components:
  249. - 'Command: /vmessage$'
  250.  
  251. # Valid modes are:
  252. # * Everyone
  253. # v Voice and up
  254. # h HalfOp and up
  255. # q Owner
  256. # o Op and up
  257. # Enter components like console commands
  258. # Arguments are accepted
  259. irc:
  260. enabled: false
  261. nick: 'VentureChatBot'
  262. login: 'VentureChatbot'
  263. server: 'irc.freenode.net'
  264. port: 6667
  265. channel: '#venturechat'
  266. trustallcertificates: true
  267. # the delay before the bot logs into the channel in seconds
  268. # increase the time if the bot fails to login
  269. channeldelay: 60
  270. commands:
  271. mute:
  272. mode: 'v'
  273. components:
  274. - 'mute'
  275. ban:
  276. mode: 'o'
  277. components:
  278. - 'ban'
  279. kick:
  280. mode: 'v'
  281. components:
  282. - 'kick'
  283.  
  284. # color = [channel] color
  285. # chatcolor = text color
  286. # cooldown is in seconds
  287. # bungeecord overrides distance
  288. # channel permissions are configurable
  289. # channels can be changed, and new channels can be created
  290. # Permissions automatically include "venturechat."
  291. # Example: permissions: staff equals venturechat.staff
  292. # Use None for no permissions
  293.  
  294. # Legacy Placeholders:
  295. # Use PlaceholderAPI
  296. # {name} : player name
  297. # {nickname} : player nickname or name if they have no nickname
  298. # {prefix} : player prefix and color
  299. # {suffix} : player suffix and color
  300. # {servername} : name of the server in server.properties
  301. # {herolevel} : heroes hero level
  302. # {heroclass} : heroes hero class
  303. # {heroxp} : heroes hero xp
  304. # {herosecondclass} : heroes second class
  305. # {party} : heroes party
  306. # {herosecondmaster} : heroes second class master
  307. # {heromaster} : heroes class master
  308. # {herosecondlevel} : heroes second class level
  309. # {herosecondxp} : heroes second class xp
  310. # Use '' or "" around format, example: '[&2global&f] {prefix}{name}&2:'
  311. # You must have prefixes and suffixes set in a Vault compatible permissions plugin to avoid errors
  312. # Use "" as the prefix or suffix to have none
  313. # use Default for the basic formatting
  314. channels:
  315. Global:
  316. color: dark_green
  317. chatcolor: white
  318. mutable: true
  319. filter: true
  320. autojoin: true
  321. default: true
  322. distance: 0
  323. cooldown: 0
  324. bungeecord: false
  325. alias: g
  326. permissions: None
  327. format: '&f[&2G&f]{prefix} {nickname}&f:'
  328. irc: false
  329. Admin:
  330. color: blue
  331. chatcolor: blue
  332. mutable: false
  333. filter: false
  334. autojoin: false
  335. default: false
  336. distance: 0
  337. cooldown: 0
  338. bungeecord: false
  339. alias: a
  340. permissions: adminchat
  341. format: '&f[&bAdmin&f] {prefix} {nickname}&b:'
  342. irc: false
  343. Local:
  344. color: yellow
  345. chatcolor: yellow
  346. mutable: true
  347. filter: true
  348. autojoin: true
  349. default: false
  350. distance: 230
  351. cooldown: 0
  352. bungeecord: false
  353. alias: l
  354. permissions: None
  355. format: '&f[&eL&f] {prefix} {nickname}&e:'
  356. irc: false
  357. Chanel:
  358. color: pink
  359. chatcolor: pink
  360. mutable: false
  361. filter: false
  362. autojoin: false
  363. default: false
  364. distance: 0
  365. cooldown: 0
  366. bungeecord: false
  367. alias: c
  368. permissions: chanelchat
  369. format: '&f[&dChanels&f] {prefix} {nickname}&b:'
  370. irc: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement