🚧Limits on Prices
Prices can have two types of limits:
Hard limits: Prices can't go beyond these limits. They can be changed in the config.yml, and are a property of each currency.
Soft limits: Prices can go beyond the limits, but will tend to stay within them if noise is enabled. Those limits are known as "Supports" (For the bottom limit) and "Resistances" (For the top limit)
Hard limits (Per currency):
currencies:
# ...
vault:
# Other options...
# In this example, all items with 'vault' as currency will have these limits.
# Prices can't go above 9999 or below 0.05 no matter what.
top-limit: 9999
low-limit: 0.05
# Other options...
Soft limits (Per item):
items:
cobblestone:
# Other properties...
support: 0.01
resistance: 0.1
Last updated