Configuration
Complete guide to configuring SigmaSellAxe.
Main Configurationโ
The main configuration file is located at plugins/SigmaSellAxe/config.yml.
Sell Axe Settingsโ
sell-axe:
name: '&6&lSigma Sell Axe'
lore:
- 'โค Right-click chests, barrels, or shulkers to sell contents.'
- 'โค Left-click to view all sellable items.'
durability:
enabled: true
lose-per-sell: 1
Options:
name- Display name of the Sell Axe (supports color codes with&)lore- List of lore lines shown on the Sell Axedurability.enabled- Enable/disable durability lossdurability.lose-per-sell- Amount of durability lost per sell operation
Featuresโ
features:
left-click-gui: true
prevent-enchanting: true
Options:
left-click-gui- Open sellable items GUI when left-clicking with Sell Axeprevent-enchanting- Prevent players from enchanting the Sell Axe
Loggingโ
logging:
enabled: true
file-logging: true
log-rotation: true
Options:
enabled- Enable transaction logging to consolefile-logging- Enable logging to fileslog-rotation- Automatically rotate log files
Debug Systemโ
debug:
enabled: false
level: BASIC
Levels:
BASIC- Essential debug informationDETAILED- More detailed debuggingVERBOSE- Maximum verbosity for troubleshooting
Economy Settingsโ
economy:
shop-plugin: 'auto' # 'auto', 'ExcellentShop', or 'EconomyShopGUI'
fallback-prices:
DIAMOND_ORE: 150.0
EMERALD_ORE: 200.0
# ... more items
Options:
shop-plugin- Which shop plugin to use (auto-detects if set to 'auto')fallback-prices- Prices for items not in shop plugins
Integrationsโ
integrations:
lands:
enabled: true
griefprevention:
enabled: true
worldguard:
enabled: true
Enable or disable protection plugin integrations.
Shop Configurationโ
Shop-specific configuration files are located in plugins/SigmaSellAxe/shops/.
Shop File Structureโ
shop:
id: 'farming'
name: 'Farming Shop'
enabled: true
priority: 1
global-boost: 0.0
items:
PUMPKIN:
boost: 1.0
enabled: true
MELON:
boost: 0.5
enabled: true
Options:
shop.id- Unique shop identifiershop.name- Display name of the shopshop.enabled- Enable/disable this shopshop.priority- Priority when multiple shops have the same itemglobal-boost- Global boost multiplier for all items in this shopitems- Item-specific settingsboost- Boost multiplier for this itemenabled- Enable/disable selling this item
Config Migrationโ
The plugin automatically migrates your configuration when updating versions. See the Config Migration Guide for details.
Manual Migrationโ
If you need to manually update your config:
- Backup your current
config.yml - Delete
config.yml - Restart server (new default config will be created)
- Copy your custom settings to the new config
Reloading Configurationโ
Reload the configuration without restarting:
/sigmasellaxe reload
This will:
- Reload main config
- Reload all shop configs
- Apply new settings immediately
Regenerating Shop Configsโ
If you've changed your shop plugin configuration, regenerate shop configs:
/sigmasellaxe regenerate
This will:
- Re-detect all shops
- Update shop configuration files
- Preserve your custom boosts and settings