> For the complete documentation index, see [llms.txt](https://obey.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://obey.gitbook.io/wiki/dailypot/readme.md).

# Configuration

### Default config.yml

{% code title="CrownDailyPot/config.yml" overflow="wrap" lineNumbers="true" expandable="true" %}

```yaml
#
# Thank you for purchasing CrownDailyPot!
# If you have any questions, suggestions or need help, please do not hesitate and
# join our discord: https://dsc.gg/crowndevelopment to ask for help!
# We are there to assist you.
#
# By purchasing this plugin you are accepting the BBB terms as well as
# our terms that can be found in our discord.
#

# you can obtain your license in our discord! https://dsc.gg/crowndevelopment
# paste your license key in here
license: paste-here

debug-mode: false # toggle this to enable in depth debug output

##################################################################
#                      PLUGIN CONFIGURATION                      #
#                    dsc.gg/crowndevelopment                     #
##################################################################

time-format: "%mm%m %ss%s" # this format will be used for displaying all time displays

pot:
  ticket-price: 1000.0 # this is the ticket price players pay
  default-tax: 10.0 # this is the default tax percentage that is taken out of the pot
  permission-taxes: # permission based taxes (lower tax for ranked players). The plugin will check for permissions and take the lowest applicable tax
    - group.one: 15.0
    - group.two: 10.0

draw: # this is the draw time configuration
  time: "20:00" # the time the pot should be drawn
  time-zone: "Europe/Berlin" # the timezone for the above time
```

{% endcode %}

## What these values mean

### license

* `license`: Your license key. You can find everything you need to know about the license system [here](https://obey.gitbook.io/wiki/core/guides/our-license-system).

### debug-mode

* `debug-mode`: Either `true` or `false`. Toggles debug messages in the console.

### time-format

* `time-format`: This is the time format used for displaying time in the placeholders.

### pot

* `pot`:
  * `ticket-price`: This is the price for each ticket.
  * `default-tax`: This is the default tax percentage taken out of the pot.
  * `permission-taxes`: Permission based taxes. If wanted configured like this: - permission: value

### draw

* `draw`:
  * `time`: The time the pot should be opened.
  * `time-zone`: Timezone for the above time.
