Advertisement
xeRicker

UHCReloaded - config.yml

Aug 10th, 2022 (edited)
1,496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.84 KB | None | 0 0
  1. # ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  2. # ■ ░█─░█ ░█─░█ ░█▀▀█ ░█▀▀█ ░█▀▀▀ ░█─── ░█▀▀▀█ ─█▀▀█ ░█▀▀▄ ░█▀▀▀ ░█▀▀▄             ■
  3. # ■ ░█─░█ ░█▀▀█ ░█─── ░█▄▄▀ ░█▀▀▀ ░█─── ░█──░█ ░█▄▄█ ░█─░█ ░█▀▀▀ ░█─░█             ■
  4. # ■ ─▀▄▄▀ ░█─░█ ░█▄▄█ ░█─░█ ░█▄▄▄ ░█▄▄█ ░█▄▄▄█ ░█─░█ ░█▄▄▀ ░█▄▄▄ ░█▄▄▀ BY XERICKER ■
  5. # ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  6.  
  7. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  8. # check-for-updates: Whether the plugin checks for updates or not.
  9. # hook-into-vault: When turned on, the plugin will use Vault for Mystery Dust.
  10. # short-number-format: When turned on, all numbers will be shortened (1000 to 1k).
  11. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  12.  
  13. general-settings:
  14.   check-for-updates: true
  15.   hook-into-vault: false
  16.   short-number-format: true
  17.  
  18. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  19. # These settings determine whether the default files should be generated.
  20. # Once you load the plugin for the first time, these settings are automatically
  21. # turned off and may be turned on, which is useful when you accidentally delete
  22. # a file and want its template back.
  23. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  24.  
  25. default-config-generation:
  26.   generate-kits: true
  27.   generate-recipes: true
  28.  
  29. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  30. # Enable this feature to allow the plugin to connect to your MySQL database.
  31. # Keep in mind that player data is stored in one place at a time, so if you
  32. # disable this feature in the future, some data will be missing.
  33. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  34.  
  35. mysql-settings:
  36.   connection:
  37.     enabled: false
  38.     path: "jdbc:mysql://{HOST}:{PORT}/{NAME}?{VARIABLES}"
  39.     driver: "com.mysql.cj.jdbc.Driver"
  40.     variables: "autoReconnect=true&useSSL=false"
  41.   sync-delay:
  42.     load-delay: 60
  43.     save-delay: 0
  44.   credentials:
  45.     host: "value"
  46.     port: "3306"
  47.     name: "value"
  48.     user: "value"
  49.     pass: "value"
  50.  
  51. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  52. # General time-related settings, such as the time zone or date format.
  53. # Detailed Format: 20w 15d 10h 5m 1s
  54. # Compact Format: 20:15:10:05:01
  55. # Simple Format: 20 Weeks
  56. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
  57.  
  58. time-settings:
  59.   time-zone: "UTC"
  60.   date-format: "dd/MM/yyyy HH:mm:ss"
  61.   countdown-formats:
  62.     format: SIMPLE
  63.     detailed: "%dw %dd %dh %dm %ds"
  64.     compact: "%02d:%02d:%02d:%02d:%02d"
  65.     simple: "%d %s"
  66.   simple-formats:
  67.     weeks: "Weeks"
  68.     week: "Week"
  69.     days: "Days"
  70.     day: "Day"
  71.     hours: "Hours"
  72.     hour: "Hour"
  73.     minutes: "Minutes"
  74.     minute: "Minute"
  75.     seconds: "Seconds"
  76.     second: "Second"
  77.   ago-formats:
  78.     years: "{YEARS}y ago"
  79.     months: "{MONTHS}m {DAYS}d ago"
  80.     days: "{DAYS}d {HOURS}h ago"
  81.     hours: "{HOURS}h {MINUTES}m ago"
  82.     minutes: "{MINUTES}m {SECONDS}s ago"
  83.     seconds: "{SECONDS}s ago"
  84.  
  85. # ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement