Selling and auto-sell
Mined blocks are sold automatically, stored in the backpack or sent to the inventory. Every sale uses the same price calculation.
| Configuration | autosell.yml, prices.yml, market.yml |
Where each block goes
- Pickaxe auto-sell on: sold instantly.
- Backpack auto-sell on: sold as it enters the backpack.
- Otherwise: stored in the backpack.
- Backpack full: goes to the inventory, with a notice.
- Inventory full: dropped at the player's feet.
A block not listed in prices.yml uses default-price. With default-price: 0, those blocks are never sold automatically and continue from step 3.
Extra blocks from enchants, bombs and drills follow the same path and are sold in one batch per material.
Final price
price = base price (prices.yml)
× dynamic market multiplier
× rank and prestige multiplier (prices.yml)
× global, personal and permission multipliers
× (1 + sell stat)
× (1 + rebirth bonus)
× skill tree (SELL_BONUS)
× pet (SELL_BONUS)See Prices, Market, Multipliers and Stats.
Private mine visitors also pay the owner's tax on what they earn.
Commands
| Command | Aliases | Permission | Does |
|---|---|---|---|
/autosell [on|off] | /as, /autovender | pulseprison.autosell | Pickaxe auto-sell |
/sellall | /sa, /vendertodo | pulseprison.sellall | Sells everything priced in the inventory |
/bp sell | pulseprison.backpack.use | Sells the backpack | |
/bp autosell | pulseprison.backpack.use | Backpack auto-sell |
Auto-sell can also be toggled from the pickaxe menu and from /settings. The state of a new pickaxe is pickaxe.autosell-default in config.yml.
Sell summary
Every summary-interval-seconds, players who sold get a summary: blocks sold, top block, money, tokens, gems and income per minute.
enabled: true
summary-interval-seconds: 300
only-show-with-data: true
summary:
show-money: true
show-tokens: true
show-gems: true
show-blocks-sold: true
show-top-block: true
show-income-per-minute: true
messages:
title: " &e&l💰 SELL SUMMARY"
blocks-sold: " &7Blocks sold: &f{amount}"
money: " &a💵 Money: &f${amount}"Every summary text is in messages in autosell.yml.