Welcome to the Hangar Open Beta. Please report any issue you encounter on GitHub!
Configuration Guide
OlaEconomy is designed to give you absolute granular control over every aspect of your economy. Below is an explanation of the core technical systems.
Multipliers (VIP Perks)
Multipliers mathematically amplify incoming deposits! The engine dynamically scans your config based on the currency being deposited.
multipliers:
enabled: true
currencies:
# Applies to ALL currencies on the server
global:
olaeconomy.multiplier.vip: 1.5
# Applies ONLY when the "gems" currency is deposited
gems:
olaeconomy.multiplier.gems_boost: 2.0
Performance & Caching
OlaEconomy uses Caffeine to cache balances in RAM so the database never lags the server.
performance:
cache:
max_size: 10000 # Increase to 50000+ for massive networks!
expire_after_access_minutes: 10
Automated SQL Purging
The plugin permanently logs every transaction to the ola_transactions table for auditing. To prevent infinite storage bloat:
database:
# Deletes logs older than 30 days every time the server starts!
purge_transactions_older_than_days: 30