{"id":40530,"date":"2026-06-02T00:50:33","date_gmt":"2026-06-01T21:50:33","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/"},"modified":"2026-06-02T00:50:33","modified_gmt":"2026-06-01T21:50:33","slug":"claimsystem","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/","title":{"rendered":"ClaimSystem"},"content":{"rendered":"<p># TebexClaimSystem<\/p>\n<p>TebexClaimSystem is a Minecraft 1.8 Bukkit\/Spigot plugin that lets players claim Tebex purchases in-game through a custom GUI and allows players to collect their purchases the next time they are online.<\/p>\n<p>## What it does<\/p>\n<p>&#8211; Accepts Tebex-delivery style commands from console: `tebexclaimsystem add <username> <productName> <quantity>`<br \/>\n&#8211; Stores pending claims in a flat YAML file so claims survive restarts<br \/>\n&#8211; Notifies players on join when they have pending items<br \/>\n&#8211; Sends online reminder messages every 30 minutes to players with pending claims<br \/>\n&#8211; Opens a GUI with one entry per pending product plus a **Claim All** button<br \/>\n&#8211; Checks free inventory space before claiming<br \/>\n&#8211; Executes configurable product commands with `{player}` placeholders<br \/>\n&#8211; Logs each claim with timestamp, player, product, and quantity<\/p>\n<p>## Installation<\/p>\n<p>1. Build the plugin jar.<br \/>\n2. Put the jar in your server&#8217;s `plugins\/` folder.<br \/>\n3. Start\/restart the server.<br \/>\n4. Edit `plugins\/TebexClaimSystem\/config.yml` to match your products\/commands.<br \/>\n5. Reload\/restart after config changes.<\/p>\n<p>## Commands<\/p>\n<p>&#8211; `\/tebexclaimsystem` &#8211; Opens the claim GUI for players.<br \/>\n&#8211; Aliases: `\/tcs`, `\/claimstore`, `\/claims`, `\/webstoreclaim`, `\/wsc`.<br \/>\n&#8211; `tebexclaimsystem add <username> <productName> <quantity>` &#8211; Console-only command (intended for Tebex delivery).<br \/>\n&#8211; `\/tebexclaimsystem reload` &#8211; Reloads `config.yml` without restarting the server (`tebexclaimsystem.reload`, default `op`).<\/p>\n<p>### Tebex example<\/p>\n<p>&#8220;`text<br \/>\ntebexclaimsystem add Notch vip_rank 1<br \/>\ntebexclaimsystem add Notch starter_kit 2<br \/>\n&#8220;`<\/p>\n<p>## Configuration<\/p>\n<p>Main config file: `plugins\/TebexClaimSystem\/config.yml`<\/p>\n<p>### `products`<\/p>\n<p>Define each claimable product by ID. The ID must match what Tebex sends as `<productName>`.<\/p>\n<p>&#8211; `displayName` &#8211; Name shown in GUI<br \/>\n&#8211; `itemMaterial` &#8211; GUI icon material<br \/>\n&#8211; `requiredSlotsPerUnit` &#8211; Space check amount per purchased unit<br \/>\n&#8211; `commands` &#8211; Commands run on claim (supports `{player}` and `{quantity}`)<\/p>\n<p>Example:<\/p>\n<p>&#8220;`yaml<br \/>\nproducts:<br \/>\n  vip_rank:<br \/>\n\tdisplayName: &#8220;&#038;6VIP Rank&#8221;<br \/>\n\titemMaterial: &#8220;EMERALD&#8221;<br \/>\n\trequiredSlotsPerUnit: 1<br \/>\n\tcommands:<br \/>\n\t  &#8211; &#8220;lp user {player} parent set vip&#8221;<br \/>\n  starter_kit:<br \/>\n\tdisplayName: &#8220;&#038;bStarter Kit&#8221;<br \/>\n\titemMaterial: &#8220;CHEST&#8221;<br \/>\n\trequiredSlotsPerUnit: 2<br \/>\n\tcommands:<br \/>\n\t  &#8211; &#8220;give {player} diamond_sword 1&#8221;<br \/>\n\t  &#8211; &#8220;give {player} bread 16&#8221;<br \/>\n&#8220;`<\/p>\n<p>### `gui`<\/p>\n<p>&#8211; `title` &#8211; Inventory title<br \/>\n&#8211; `size` &#8211; Inventory size (9-54, rounded to a multiple of 9)<br \/>\n&#8211; `claimAllSlot` &#8211; Slot index for Claim All button<br \/>\n&#8211; `claimAllName` \/ `claimAllMaterial` &#8211; Claim All button display<br \/>\n&#8211; `quantityLore` &#8211; Lore line for quantity text<\/p>\n<p>### `messages`<\/p>\n<p>All player-facing and feedback messages are configurable.<\/p>\n<p>&#8211; Prefix token: `{prefix}`<br \/>\n&#8211; Color support: `&#038;` color codes<\/p>\n<p>## Runtime data files<\/p>\n<p>Created in `plugins\/TebexClaimSystem\/`:<\/p>\n<p>&#8211; `pending-claims.yml` &#8211; Current pending claims per player\/product<br \/>\n&#8211; `claim-log.txt` &#8211; Claim audit log entries<\/p>\n<p>`pending-claims.yml` is updated immediately whenever claims are added or removed.<\/p>\n<p>## Claim System<\/p>\n<p>1. Tebex (or console) runs `tebexclaimsystem add &#8230;`<br \/>\n2. TebexClaimSystem stores pending quantity for that player\/product<br \/>\n3. Player joins and gets a notification if pending claims exist<br \/>\n4. Player opens `\/tebexclaimsystem` (or any configured alias)<br \/>\n5. Player clicks one item or **Claim All**<br \/>\n6. Plugin validates available inventory slots<br \/>\n7. If valid, product commands are dispatched and pending entry is removed<br \/>\n8. Claim is written to `claim-log.txt`<\/p>\n<p>## Troubleshooting<\/p>\n<p>&#8211; `unknown product` message: ensure Tebex product ID exactly matches a key under `products`.<br \/>\n&#8211; Player cannot claim due to space: increase empty inventory slots or tune `requiredSlotsPerUnit`.<br \/>\n&#8211; Console command denied in-game: `add` is intentionally restricted to console senders.<br \/>\n&#8211; No GUI items: verify `pending-claims.yml` has entries and product IDs exist in `config.yml`.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ClaimSystem is a Minecraft 1.8 Bukkit\/Spigot plugin that lets server administrators manage an item claiming system for players, allowing them to claim items that can be distributed when the player is either online or offline.<\/p>\n","protected":false},"featured_media":40531,"template":"","meta":{"_minecraft_slug":"claimsystem","_minecraft_project_id":"3m04LfGa","_minecraft_author":"avaliberty","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":9,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"claimsystem.zip","_minecraft_size_bytes":26310,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T23:14:18.022449Z","_minecraft_date_created":"2026-03-22T03:05:22.275320Z","_minecraft_date_modified":"2026-03-22T00:34:45.544186Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/claimsystem","_minecraft_icon_attachment_id":40531,"_minecraft_imported_at":"2026-06-01T21:50:33+00:00","_minecraft_import_hash":"a0595ce9622953c9df5453665e4f0c54","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,126,129,91,92],"mod_loader":[130,134],"minecraft_version":[22],"class_list":["post-40530","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-management","mod_category-spigot","mod_category-storage","mod_category-utility","mod_loader-bukkit","mod_loader-spigot","minecraft_version-1-8"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ClaimSystem - 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\/claimsystem\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ClaimSystem - Minecraft\" \/>\n<meta property=\"og:description\" content=\"ClaimSystem is a Minecraft 1.8 Bukkit\/Spigot plugin that lets server administrators manage an item claiming system for players, allowing them to claim items that can be distributed when the player is either online or offline.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/\" \/>\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\\\/claimsystem\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/\",\"name\":\"ClaimSystem - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/claimsystem-icon-250797751486c959b0351ea81c7847dc40beabaf_96.webp\",\"datePublished\":\"2026-06-01T21:50:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/claimsystem-icon-250797751486c959b0351ea81c7847dc40beabaf_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/claimsystem-icon-250797751486c959b0351ea81c7847dc40beabaf_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/claimsystem\\\/#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\":\"ClaimSystem\"}]},{\"@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":"ClaimSystem - 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\/claimsystem\/","og_locale":"en_US","og_type":"article","og_title":"ClaimSystem - Minecraft","og_description":"ClaimSystem is a Minecraft 1.8 Bukkit\/Spigot plugin that lets server administrators manage an item claiming system for players, allowing them to claim items that can be distributed when the player is either online or offline.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/","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\/claimsystem\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/","name":"ClaimSystem - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/claimsystem-icon-250797751486c959b0351ea81c7847dc40beabaf_96.webp","datePublished":"2026-06-01T21:50:33+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/claimsystem-icon-250797751486c959b0351ea81c7847dc40beabaf_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/claimsystem-icon-250797751486c959b0351ea81c7847dc40beabaf_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/claimsystem\/#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":"ClaimSystem"}]},{"@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\/40530","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:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/40531"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=40530"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=40530"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=40530"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=40530"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}