Docs

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.

Configurationautosell.yml, prices.yml, market.yml

Where each block goes

  1. Pickaxe auto-sell on: sold instantly.
  2. Backpack auto-sell on: sold as it enters the backpack.
  3. Otherwise: stored in the backpack.
  4. Backpack full: goes to the inventory, with a notice.
  5. 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

text
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

CommandAliasesPermissionDoes
/autosell [on|off]/as, /autovenderpulseprison.autosellPickaxe auto-sell
/sellall/sa, /vendertodopulseprison.sellallSells everything priced in the inventory
/bp sellpulseprison.backpack.useSells the backpack
/bp autosellpulseprison.backpack.useBackpack 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.

yaml
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.

Selling and auto-sell | PulsePrison Core Docs