Advertisement
heping4hao

config.yml

Sep 3rd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. # The absolute max length is 255 characters, including colour characters!
  2. # Specifying any larger number in this category will be ignored.
  3. maxlength:
  4. # The max length of a nickname including the colour characters
  5. # Example: &1&lNotch = 9
  6. withColour: 48
  7. # The max length of a nickname excluding the colour characters
  8. # Example: &1&lNotch = 5
  9. withoutColour: 24
  10.  
  11. # Maximum colors per nickname, there are 16 colors
  12. maxcolors: 16
  13.  
  14. # Maximum effects per nickname, there are 5 effects (bold, strikethrough, underline, italic, magic)
  15. maxeffects: 16
  16.  
  17. # Decide if players need to accept the rules first
  18. mustAcceptRules: true
  19.  
  20. # Player nicknames will also appear in the tab list.
  21. setTabListName: true
  22.  
  23. # Banned nicknames with regex syntax (not case sensitive)
  24. blacklist:
  25. - '[o0O]wn[e3]r' # owner
  26. - 'f[o0O]und[e3]r' # founder
  27. - '[Aa@]dm[i1]n' # admin
  28. - 'm[o0O]d([e3]r[a4]t[o0]r)?' # mod
  29. - 'h[e3]lp[e3]r' # helper
  30. - 'n[i1]g+[e3]r' # nigger
  31. - 'n[i1]g+[a4]r*' # nigga
  32. - 'f[a4]g+[o0]t' # faggot
  33. - 'r[a4]p[i1]st' # rapist
  34. - 'n[a4]z[i1]' # nazi
  35. - 'sh[i1]t' # shit
  36. - 'y[o0O]utub[e3]r?' # youtuber
  37. - 'str[e3][a4]m([e3]r)?' # streamer
  38. - 'n[o0O]tch' # notch
  39. - '[cC]reat[oe][Rr]' #CreatoR
  40.  
  41. # Cooldowns for changing your nickname
  42. # Format: years(y), months(mo), weeks(w), days(d), hours(h), minutes(m), seconds(s)
  43. cooldown:
  44. default: 1mo # Default cooldown
  45. VIP: 1w # If player has the permission 'nicknames.cooldown.VIP1'
  46. Donator: 1d # If player has the permission 'nicknames.cooldown.VIP2'
  47.  
  48. # Choose to save player data in YML files (local) or in MySQL (database)
  49. storage: YML
  50.  
  51. # Database to store the synced nicknames, if the storage is MySQL
  52. mysql:
  53. host: 127.0.0.1
  54. port: 3306
  55. database: Nicknames
  56. user: Derp
  57. password: MyUberPassWord
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement