VillagerTradeLimiter/src/main/resources/config.yml

59 lines
2.2 KiB
YAML

#---------------------------------------------------------------------------------#
# VTL ~ VillagerTradeLimiter #
# By: PretzelJohn #
#---------------------------------------------------------------------------------#
#-------------------------------- GLOBAL SETTINGS --------------------------------#
# Database connection settings
Database:
mysql: false
host: 127.0.0.1
port: 3306
database: villagertradelimiter
username: root
password: root
encoding: utf8
useSSL: false
# This helps me keep track of what server versions are being used. Please leave this set to true.
bStats: true
# VTL doesn't change trades for Citizens NPC and/or Shopkeeper NPCs if set to true
IgnoreCitizens: true
IgnoreShopkeepers: true
# VTL doesn't change trades when players are holding these items in their hand
IgnoreHeldItems:
- name_tag
- ghast_spawn_egg
# VTL doesn't change trades for villagers in these worlds. Set to [] to disable this feature.
IgnoreWorlds:
- world_the_end
# Completely prevents trading with villagers in these worlds. Set to [] to disable this feature.
DisableTrading:
- world_nether
# Completely prevents trading with villagers that have these professions. Set to [] to disable this feature.
DisableProfessions: []
# The restock cooldown for all villagers, in real-world time
# * Set to 0 to disable this feature and keep vanilla behavior (about 1 restock every 10 minutes)
# * Set to a <number><interval> format to add a per-villager, per-trade cooldown for all trades (see below)
#
# Format: A valid cooldown follows the <number><interval> format, where you replace <number> with any number,
# and you replace <interval> with one of the following intervals:
# s = seconds ("30s" = 30 seconds)
# m = minutes ("10m" = 10 minutes)
# h = hours ("1h" = 1 hour)
# d = days ("3d" = 3 days)
# w = weeks ("2w" = 2 weeks)
Restock: 0h
# Set this to true to allow multiple players to trade with the same villager at the same time
MultipleTraders: false
# Setting this to 0 or 1 may fix some issues with discounts not showing up. Set to -1 to disable
TradeDelay: -1