Biscuit!
🟠 Updated over a year ago⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 0.1% endorsement rate
- 🏆 #253 of 892 fabric mods in this game by downloads
📋 About This Mod
[!(https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) [!(https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[!(https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/G2G4DZF4D)

A simple API for working with 1. 20. 5 cookies and transfers in an easy and secure way!
## Features
- Cookies as POJOs
- Injected interfaces on many networking classes
- Cookie Signing for tamper detection
- Event system
- [ ] Automatic identifier generation (May not be possbile)
- [ ] Encryption
- [ ] Spreading large data across many cookies
# Setup In your build.gradle include: ``` gradle repositories { maven { url "https://api.modrinth.com/maven" } }
dependencies { modImplementation("maven.modrinth:biscuit!:1. 1. 0") } ```
```java // Make a class to represent your cookie public static class TestCookie {
private final String data; public TestCookie(String data) { this.data = data; }
@Override public String toString() { return data; } }
// Register the cookie: Biscuit.register(new Identifier("test", "cookie"), TestCookie.class);
// Register the cookie with a secret for tamper detection. The secret must be the same on all servers requesting this cookie: Biscuit.register(new Identifier("test", "cookie"), TestCookie.class).setSecret("my_secret");
// Set/Get the cookie from the ServerPlayerEntity, ClientConnection, or any of the network handlers (Not handshake) TestCookie cookie = new TestCookie("whoohoo!"); player.setCookie(cookie);
player.getCookie(TestCookie.class).whenComplete((cookie, throwable) -> { System.out.println(cookie); }); ```
Set a cookie before your mod (or another mod/the transfer command) transfers the player: ```java BiscuitEvents. PRE_TRANSFER.register((packet, profile, cookieJar, ci) -> { cookieJar.setCookie(cookie); }); ```
📊 Mod Details
- Game
- Minecraft Mods
- Author
- mrnavastar
- Version
- 1.1.1
- Downloads
- 1,489
- Endorsements
- 2
- Category
- fabric
- Created
- 4/25/2024
- Updated
- 1/4/2025
- Game Versions
- 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4
- Tags
- library, technology, utility
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Biscuit! support?
The author lists 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5. Other versions may work but are untested by the author.
What is the latest version of Biscuit!?
Version 1.1.1, published 2025-01-04 with 1,489 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await