CSCases

Quick rating

CSCases

No reviews yet

CS:GO-style case opening for Minecraft. Tiered weighted loot rolls, animated reveal, and fully customizable cases via datapack.

Tech
Mod Loaders
NeoForge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
cs_cases-1.0.0.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

CS Cases

A CS:GO-style case opening mod for Minecraft. Place a case, use the matching key, watch the reel spin, and claim your loot.

Features

  • Authentic opening flow — preview a case's contents before you commit, watch a reel-style reveal animation with the classic case-unlock sound, then explicitly Claim your reward or press ESC to drop it on the ground.
  • Five-tier rarity rolls with weighted probabilities and the familiar CS color coding: Mil-Spec blue → Restricted purple → Classified pink → Covert red → Rare Special gold.
  • Fully data-driven — every case is a JSON file in a datapack. Add, edit, or rebrand cases on a server or in a single world without recompiling, repackaging, or shipping a client-side resource pack.
  • Real item stacks as rewards — a reward entry is anything /give accepts. Stack sizes, enchantments, custom names, lore, attribute modifiers, dyed leather, any registered data component, all of it.
  • Wrong-key protection — keys are bound to specific cases via a data component. Using a key on a case it doesn't fit shows "This key does not fit this case." in the action bar; the key is not consumed.
  • Multiplayer-ready — the server pushes its full case registry to every client on join and after /reload, so dedicated-server players see exactly what the server has loaded with zero client-side setup.
  • Hot reload/reload re-parses every case from disk. Valid changes apply immediately. Malformed files are skipped with a clear warning in the server log instead of crashing the world.
  • In-game config screen integrated with the Mods menu.

How it works

  1. Grab a Case and a matching Case Key from the creative tab — the tab automatically lists one of each per loaded case.
  2. Place the case. Right-click it with the matching key to open the preview screen showing all possible rewards, grouped by tier.
  3. Hit Open to consume the key and start the reveal animation. Press ESC during the animation to skip straight to the reward screen.
  4. On the reward screen, click Claim to take the item, or press ESC to let it drop at your feet.

Adding your own cases

Drop a JSON file at:

<datapack-root>/data/<your-namespace>/cases/<case-id>.json

Minimal example:

{
  "display_name": "Weapon Case",
  "tiers": [
    {
      "id": "mil_spec",
      "weight": 79.92,
      "color": "4b69ff",
      "items": ["minecraft:wooden_sword", "minecraft:stone_sword"]
    },
    {
      "id": "covert",
      "weight": 0.64,
      "color": "eb4b4b",
      "items": [
        {
          "id": "minecraft:diamond_sword",
          "components": {
            "minecraft:enchantments": { "minecraft:sharpness": 5 },
            "minecraft:custom_name": "{\"text\":\"Awakened Blade\",\"color\":\"gold\"}"
          }
        }
      ]
    }
  ]
}

Tier weights are normalised at roll time, so any positive numbers work — 1 and 99 is the same as 1% / 99%. Items can be either a bare id (count 1, no components) or a full { "id": ..., "count": ..., "components": { ... } } object.

Hand out your custom cases via the creative tab or:

/give @s cs_cases:case_block[cs_cases:case_id="myserver:weapon_case"]
/give @s cs_cases:case_key[cs_cases:case_id="myserver:weapon_case"]

The full datapack format reference, including every supported field and validation rule, lives at docs/datapack-cases.md in the source repository.

Built-in content

The mod ships one default case — the Starter Case — built with the same datapack machinery as everything else, so its JSON doubles as a working example.

Requirements

  • Minecraft 26.1.2
  • NeoForge 26.1.2.30-beta or newer

NeoForge only. Not compatible with Forge or Fabric.

Both single-player and multiplayer (dedicated server) are supported. Custom cases are server-authoritative — install the mod on the server and on every connecting client, and define your cases via datapacks on the server.

License

All Rights Reserved.

CS Cases

A CS:GO-style case opening mod for Minecraft. Place a case, use the matching key, watch the reel spin, and claim your loot.

Features

  • Authentic opening flow — preview a case's contents before you commit, watch a reel-style reveal animation with the classic case-unlock sound, then explicitly Claim your reward or press ESC to drop it on the ground.
  • Five-tier rarity rolls with weighted probabilities and the familiar CS color coding: Mil-Spec blue → Restricted purple → Classified pink → Covert red → Rare Special gold.
  • Fully data-driven — every case is a JSON file in a datapack. Add, edit, or rebrand cases on a server or in a single world without recompiling, repackaging, or shipping a client-side resource pack.
  • Real item stacks as rewards — a reward entry is anything /give accepts. Stack sizes, enchantments, custom names, lore, attribute modifiers, dyed leather, any registered data component, all of it.
  • Wrong-key protection — keys are bound to specific cases via a data component. Using a key on a case it doesn't fit shows "This key does not fit this case." in the action bar; the key is not consumed.
  • Multiplayer-ready — the server pushes its full case registry to every client on join and after /reload, so dedicated-server players see exactly what the server has loaded with zero client-side setup.
  • Hot reload/reload re-parses every case from disk. Valid changes apply immediately. Malformed files are skipped with a clear warning in the server log instead of crashing the world.
  • In-game config screen integrated with the Mods menu.

How it works

  1. Grab a Case and a matching Case Key from the creative tab — the tab automatically lists one of each per loaded case.
  2. Place the case. Right-click it with the matching key to open the preview screen showing all possible rewards, grouped by tier.
  3. Hit Open to consume the key and start the reveal animation. Press ESC during the animation to skip straight to the reward screen.
  4. On the reward screen, click Claim to take the item, or press ESC to let it drop at your feet.

Adding your own cases

Drop a JSON file at:

<datapack-root>/data/<your-namespace>/cases/<case-id>.json

Minimal example:

{
  "display_name": "Weapon Case",
  "tiers": [
    {
      "id": "mil_spec",
      "weight": 79.92,
      "color": "4b69ff",
      "items": ["minecraft:wooden_sword", "minecraft:stone_sword"]
    },
    {
      "id": "covert",
      "weight": 0.64,
      "color": "eb4b4b",
      "items": [
        {
          "id": "minecraft:diamond_sword",
          "components": {
            "minecraft:enchantments": { "minecraft:sharpness": 5 },
            "minecraft:custom_name": "{\"text\":\"Awakened Blade\",\"color\":\"gold\"}"
          }
        }
      ]
    }
  ]
}

Tier weights are normalised at roll time, so any positive numbers work — 1 and 99 is the same as 1% / 99%. Items can be either a bare id (count 1, no components) or a full { "id": ..., "count": ..., "components": { ... } } object.

Hand out your custom cases via the creative tab or:

/give @s cs_cases:case_block[cs_cases:case_id="myserver:weapon_case"]
/give @s cs_cases:case_key[cs_cases:case_id="myserver:weapon_case"]

The full datapack format reference, including every supported field and validation rule, lives at docs/datapack-cases.md in the source repository.

Built-in content

The mod ships one default case — the Starter Case — built with the same datapack machinery as everything else, so its JSON doubles as a working example.

Requirements

  • Minecraft 26.1.2
  • NeoForge 26.1.2.30-beta or newer

NeoForge only. Not compatible with Forge or Fabric.

Both single-player and multiplayer (dedicated server) are supported. Custom cases are server-authoritative — install the mod on the server and on every connecting client, and define your cases via datapacks on the server.

License

All Rights Reserved.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works