{"id":137034,"date":"2026-06-08T05:21:09","date_gmt":"2026-06-08T02:21:09","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/"},"modified":"2026-06-08T05:21:09","modified_gmt":"2026-06-08T02:21:09","slug":"sellboost","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/","title":{"rendered":"SellBoost"},"content":{"rendered":"<p># \ud83d\ude80 SellBoost<br \/>\nA Paper plugin that integrates with **EconomyShopGUI** to run automatic randomized sell price boost events. At a configurable interval, the plugin picks random items from your shop and applies individual multipliers to their sell price \u2014 keeping your economy fresh and giving players a reason to stay active.<\/p>\n<p>![Discord](https:\/\/discord.gg\/tFXhkPVpxG)<br \/>\n![Modrinth](https:\/\/modrinth.com\/user\/Treamhiler)<br \/>\n![GitHub](https:\/\/github.com\/Treamhilerjava)<\/p>\n<p>&#8212;<\/p>\n<p>## \u2728 Features<br \/>\n&#8211; Automatic boost rotation at a configurable interval (hours, minutes, or seconds)<br \/>\n&#8211; **MULTIPLE** mode \u2014 several items boosted at once, each with its own multiplier<br \/>\n&#8211; **SINGLE** mode \u2014 one item boosted at a time<br \/>\n&#8211; Per-item `min_multiplier_only` flag \u2014 forces an item to always use the base minimum, never the rolling range (useful for rare\/valuable items like diamonds)<br \/>\n&#8211; **Rolling multiplier** \u2014 the multiplier window gradually escalates each cycle up to a configurable ceiling, then wraps back. Epoch and roll time persist across restarts<br \/>\n&#8211; **Live shop tooltip updates** \u2014 boosted sell prices are written directly into the EconomyShopGUI shop files on boost start and restored automatically on boost end; no manual reload needed<br \/>\n&#8211; **Server-wide boss bar** \u2014 shows boosted items, their multipliers, and a live countdown during a boost; shows time until the next boost while idle<br \/>\n&#8211; Live actionbar display showing boosted items and multipliers<br \/>\n&#8211; Chat and title screen announcements \u2014 each independently toggleable<br \/>\n&#8211; `no_repeat_last` \u2014 prevents the same items from being picked in back-to-back boosts<br \/>\n&#8211; Boost state (active items, multipliers, timers, rolling epoch) persists across server restarts via `data.yml`<br \/>\n&#8211; Manual controls with `\/sellboost start | stop | status | reload`<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83c\udfae How It Works<br \/>\nWhen a boost fires, SellBoost picks random items from your configured list and assigns each a random multiplier. Players see it live on the boss bar and actionbar:<\/p>\n<p>&#8220;`<br \/>\n\u26a1 SELL BOOST | Wheat (3x) | Coal (2.5x) | String (4x) | 13m 34s<br \/>\n&#8220;`<\/p>\n<p>The sell price shown in `\/shop` updates instantly to reflect the boost. When the boost ends, all prices are restored automatically. Only boosted items get the multiplier \u2014 everything else sells at normal price.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udcbb Commands<br \/>\nPermission node: `sellboost.admin` \u2014 OP only by default<\/p>\n<p>| Command | Description |<br \/>\n|&#8212;|&#8212;|<br \/>\n| `\/sellboost start` | Trigger a boost manually |<br \/>\n| `\/sellboost stop` | Stop the current active boost |<br \/>\n| `\/sellboost status` | Show boosted items, multiplier range, rolling epoch, and countdown |<br \/>\n| `\/sellboost reload` | Reload config without restarting |<\/p>\n<p>&#8212;<\/p>\n<p>## \u2699\ufe0f Configuration<br \/>\nFile: `plugins\/SellBoost\/config.yml`<\/p>\n<p>&#8220;`yaml<br \/>\nmode:<br \/>\n  type: MULTIPLE        # MULTIPLE | SINGLE<br \/>\n  multiple:<br \/>\n    count: 3<br \/>\n    no_repeat_last: true<\/p>\n<p>rotation:<br \/>\n  unit: MINUTES         # HOURS | MINUTES | SECONDS<br \/>\n  value: 60<\/p>\n<p>boost:<br \/>\n  duration:<br \/>\n    unit: MINUTES<br \/>\n    value: 15<\/p>\n<p>multiplier:<br \/>\n  min: 2.0<br \/>\n  max: 4.0<br \/>\n  step: 0.5<br \/>\n  rolling:<br \/>\n    enabled: true<br \/>\n    interval:<br \/>\n      unit: HOURS<br \/>\n      value: 2<br \/>\n    ceiling: 6.0        # range stops escalating here, then wraps back to base<\/p>\n<p>autosave:<br \/>\n  enabled: true<br \/>\n  interval_ticks: 200<\/p>\n<p>notifications:<br \/>\n  actionbar: true<br \/>\n  chat: true<br \/>\n  title: true<br \/>\n  bossbar: true<\/p>\n<p>display:<br \/>\n  bossbar:<br \/>\n    active_format: &#8220;&#038;6\u26a1 SELL BOOST &#038;8| &#038;e{items} &#038;8| &#038;a{remaining}&#8221;<br \/>\n    idle_format: &#8220;&#038;7Next boost in &#038;e{next}&#8221;<br \/>\n    show_idle: true<\/p>\n<p>items:<br \/>\n  &#8211; path: &#8220;Farming.page1.items.28&#8221;<br \/>\n    display: &#8220;Wheat&#8221;<br \/>\n  &#8211; path: &#8220;Ores.page1.items.9&#8221;<br \/>\n    display: &#8220;Diamond&#8221;<br \/>\n    min_multiplier_only: true<br \/>\n&#8220;`<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udd0d Finding Item Paths<br \/>\nOpen your EconomyShopGUI shop config files in `plugins\/EconomyShopGUI\/shops\/`. The path format is:<br \/>\n&#8220;`<br \/>\nShopFileName.page1.items.SLOT<br \/>\n&#8220;`<br \/>\nExample \u2014 shop file `Ores.yml`, Iron Ingot in slot 16:<br \/>\n&#8220;`yaml<br \/>\n&#8211; path: &#8220;Ores.page1.items.16&#8221;<br \/>\n  display: &#8220;Iron Ingot&#8221;<br \/>\n&#8220;`<br \/>\n> If a path is invalid or the item is not sellable, SellBoost logs a warning and skips it on boot.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udce6 Installation<br \/>\n1. Drop `SellBoost.jar` into your server&#8217;s `plugins\/` folder<br \/>\n2. Ensure **EconomyShopGUI** (free or premium) is already installed<br \/>\n3. Restart the server<br \/>\n4. Edit `plugins\/SellBoost\/config.yml` \u2014 set your item paths and multiplier settings<br \/>\n5. Run `\/sellboost reload`<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udd27 Requirements<br \/>\n&#8211; Paper \/ Spigot 1.21.x \u00b7 Java 21+<br \/>\n&#8211; EconomyShopGUI (free or premium)<\/p>\n<p>&#8212;<\/p>\n<p>\ud83d\udcac **Join our Discord** for support, downloads, and updates<br \/>\n\ud83d\udd17 **More plugins by Treamhiler**<br \/>\n\ud83d\udc19 **GitHub**<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Randomized sell price boost events for EconomyShopGUI. Automatically triggers timed boosts on configurable items with custom multipliers, actionbar display, and restart persistence.<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"sellboost","_minecraft_project_id":"iMZeHt6P","_minecraft_author":"Treamhiler","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":143,"_minecraft_follows":1,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"sellboost.zip","_minecraft_size_bytes":33863,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T18:43:03.031023Z","_minecraft_date_created":"2026-03-09T23:45:59.802004Z","_minecraft_date_modified":"2026-03-10T06:05:55.112655Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/sellboost","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-08T02:21:10+00:00","_minecraft_import_hash":"949ee820a779038a0422455a25f635b0","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[126,127,129,92],"mod_loader":[132,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-137034","mod","type-mod","status-publish","hentry","mod_category-management","mod_category-paper","mod_category-spigot","mod_category-utility","mod_loader-paper","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SellBoost - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SellBoost - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Randomized sell price boost events for EconomyShopGUI. Automatically triggers timed boosts on configurable items with custom multipliers, actionbar display, and restart persistence.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sellboost\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sellboost\\\/\",\"name\":\"SellBoost - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-08T02:21:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sellboost\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sellboost\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sellboost\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SellBoost\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SellBoost - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/","og_locale":"en_US","og_type":"article","og_title":"SellBoost - Minecraft","og_description":"Randomized sell price boost events for EconomyShopGUI. Automatically triggers timed boosts on configurable items with custom multipliers, actionbar display, and restart persistence.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/","name":"SellBoost - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-08T02:21:09+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/sellboost\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"SellBoost"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/137034","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=137034"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=137034"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=137034"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=137034"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}