Simonmaribo | Plugins
  • Introduktion
  • Plugins
    • Bande
      • Installation
      • Konfiguration
        • Config.yml
        • Messages.yml
        • Levels
        • GUI
        • Permissions
        • Settings
        • Shop
        • Leaderboard
      • Addons
        • Create Addon
          • BandeAddon classen.
        • Add your own level
      • Skript-Reflect Snippet
      • Java Docs
      • Placeholders
        • PlaceholderAPI
        • Indbygget Placeholders
        • GUI Placeholders
    • PrisonCells
      • Installation
      • Konfiguration
        • Config
        • Messages
      • Java Docs
    • ItemFlip
      • Installation
      • Konfiguration
        • Config
        • Messages
        • Item Aliases
      • Citizens integration
      • Java Docs
    • End Crates
      • Installation
      • Konfiguration
        • Config
        • Messages
    • Discord Link
      • Installation
      • Konfiguration
        • Config
        • Messages
    • Quests
      • Installation
      • Konfiguration
        • Config.yml
        • Messages.yml
      • Quests (missioner)
      • Menu
        • Gui
  • Additional Information
    • Discord
Powered by GitBook
On this page

Was this helpful?

  1. Plugins
  2. PrisonCells
  3. Konfiguration

Config

config.yml
# License Key
license: Your License Key

# Groups that are automatically added to every cell.
added-groups:
  - inspektør
  - officer

# Debug mode?
debug: false

# Standard prisen, for alle nye celler, hvis prisen ikke er angivet.
defaultPrice: 300

# Standard maximum antal af dage, som man kan leje en celle i. Brug -1 for uendelig.
defaultMaxLength: 10

# Standard max medlemmer
defaultMaxMembers: 5

# Standard om ens celles blocks bliver sat til AIR, når du unrenter den.
defaultResetOnUnrent: false

# Om du modtager resterende dage i penge, når du sælger cellen.
refund: false

# Om der skal være cooldown på når man vil købe ny celle.
cooldown:
  enabled: false
  length: 3600 # Længden af cooldown i sekunder

# Hvilket design som celle skilte har, når vdu bruger placeholderen %timeLeft%
# Tegnet '||' viser hvordan det vil se ud med forskellige længder af tid tilbage.
# Designs:
#  > 1: 2d19t21m || 4t21m
#  > 2: 7 dage || 5 timer || 21 minutter
timeLeftDesign: 2

# Skilt design
sign:
  rented:
    - '&c&lSOLGT'
    - '&c%cell%'
    - '&c%owner%'
    - '&c%timeleft%'
  available:
    - '&3&lTIL SALG'
    - '&b%cell%'
    - '&b$%price%'
    - '&b1 dag'
  removed:
    - ''
    - '&cCelle fjernet'
    - ''
    - ''
#
locale:
  days:
    singular: dag
    plural: dage
    abbreviation: d
  hour:
    singular: time
    plural: timer
    abbreviation: h
  minute:
    singular: minut
    plural: minutter
    abbreviation: m
  second:
    singular: sekund
    plural: sekunder
    abbreviation: s
  and: og

Last updated 1 year ago

Was this helpful?