CurseForge · Minecraft mod
Dasik Libary
The core library and API for all Dasik mods, including the Vanilla Outsider collection. You only need this if another mod requires it.
Quick answer
Which Dasik Libary release matches 26.2?
Dasik Libary Dasik Library 1.8.38 targets 26.1.2, 26.2, 26.3-snapshot with Fabric. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is Dasik Libary required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does Dasik Libary Dasik Library 1.8.38 need?
Dasik Library 1.8.38 on 26.2. Every mod below is checked against that same setup.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add Dasik Libary without breaking your instance.
Built for Dasik Libary Dasik Library 1.8.38 on 26.2. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use Dasik Library 1.8.38. It targets 26.1.2, 26.2, 26.3-snapshot with Fabric; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside Dasik Library 1.8.38. It opens that exact file at the source.
About this project
What does Dasik Libary add?

🧠 Dasik Library
"The universal Hive Mind foundation powering autonomous animal genetics, dynamic GameRules, and high-performance flocking across Minecraft."
📖 Introduction
Developing modern Minecraft Fabric mods often means facing recurring architectural roadblocks: registering dynamic GameRules on the fly without causing immutable registry lockouts, synchronizing animal genetics and scale attributes across world save cycles, orchestrating swarming and flocking AI without decimating server tick rates, and integrating optional client configuration GUIs without causing fatal ClassNotFoundException crashes on headless dedicated servers.
Dasik Library is the universal standalone foundation engineered to solve these challenges. It provides the high-performance architectural backbone powering every mod across the Vanilla Outsider, Delayed Gratification, and Instant Gratification collections. Designed with strict zero-allocation hot paths, Knot ClassLoader isolation, and modular APIs, it equips developers and players with an enterprise-grade framework for modern Minecraft.
This is a Standalone Universal Core Library / API. Universal Single-JAR Standard: Dasik Library builds a single universal cross-version JAR (
≥26.1.2-, currentlyv1.8.35) using pure SemVer. It seamlessly loads across Minecraft 26.1.2, 26.2, 26.3, and future snapshots. Both Client & Dedicated Server Ready: Fully compatible with singleplayer clients and multiplayer dedicated servers. * Zero Standalone Gameplay Bloat: Does not add arbitrary gameplay items or world generation on its own. It runs quietly in the background, providing shared AI, genetics, and registry infrastructure for dependent mods.
✨ Features
🧬 Autonomous Animal Genetics & Breeding API
- Persistent Entity Genetics: Attaches an entity-agnostic genetic data model to living entities via persistent Fabric attachments (
dasik-library:genetics), preserving lineage, UUIDs, and generational traits across world saves. - Triangular Mutation & Outcross Recovery: Implements natural biological breeding math, including triangular mutation distribution, parent trait averaging, multi-tier inbreeding penalties, and genetic outcross recovery.
- Size-Stats Builder & Linked Attributes: Easily bind entity physical scale (
minecraft:scale, customizable from0.1fto3.0f) to secondary attributes (Max Health, Movement Speed, Attack Damage) viaLinkedAttributeRegistrywith linear, inverse, or quadratic scaling. - Genetics-Driven Loot Modification: Uses
GeneticsLootRegistryand loot hooks to dynamically scale drops, meat yields, and resources based on entity size and genetic vitality.
⚙️ Dynamic GameRule Registration & Auto-Translation Engine
- On-Demand Registry Unfreezing: Safely unfreezes
BuiltInRegistries.GAME_RULEat runtime viaMappedRegistryAccessor, allowing consumer mods and addons to register custom GameRules without startup race conditions or registry lockouts. - Automatic Translation Injection: Dynamically generates human-readable translation keys and injects them directly into vanilla's
Languagemap (dasik$injectDynamicGameRuleTranslations), eliminating missing string placeholders (§lbold category formatting included). - World Save Persistence: Seamlessly intercepts
SavedDataserialization (GameRuleMapMixin), ensuring dynamic GameRule changes made via/gamerulepersist reliably inlevel.datandgame_rules.dat. - Automated Orphaned Rule Pruning: Hooks
ServerLifecycleEvents.SERVER_STARTINGto detect and cleanly purge orphaned dynamic GameRules left behind when mods are uninstalled, keeping world save files pristine. - Math Conversion Helpers: Built-in calculation utilities for percentages, permilles, and deciles (
getPct,getChance,getProb,getDecileFloat).
🦅 High-Performance Swarm & Flocking AI (Cached Boids)
- $O(N)$ Leader-Follower Pattern: Eliminates expensive $O(N^2)$ pairwise distance checks by computing and caching group metrics (
FlockState) exclusively on the pack Leader, enabling smooth swarms of 100+ entities at a solid 20 TPS. - Biomechanical Steering: Full Alignment, Cohesion, and Separation vector steering calculations for realistic aerial murmurations (
AerialFlockingStrategy) and terrestrial pack movement (TerrestrialFlockingStrategy). - Resilient Following: Integrated water navigation penalty bypass and catch-up teleportation thresholds to ensure pack members never get lost across chunk boundaries.
📡 The Hive Mind & Decoupled Signal Bus
- Decoupled Social Signals: High-throughput
SignalBusenables mobs to emit and receive alerts, warnings, and mood updates across species without hard-coded class couplings. - Scope Isolation: Targeted signal delivery (
Scope.SAME_SPECIES,Scope.HERD,Scope.GLOBAL) with safe instance checks. - Lazy Freeze Architecture: Solves mod initialization race conditions by allowing modules to register social events during mod init while locking the registry safely at server tick.
🖥️ Optional GUI Integration & Server ClassLoader Safety
- Classloader-Isolated Config Screen Resolver:
GuiHelperdynamically discovers and invokes YetAnotherConfigLib (YACL) and Cloth Config via reflection and Knot ClassLoader isolation. - 100% Dedicated Server Crash Immunity: Completely prevents client GUI classes from loading on dedicated servers, eliminating server startup crashes.
- Standardized Creator Support: Provides
DasikSupportHelperto embed standardized creator support buttons at index 0 across config screen category pages.
🛡️ Enterprise Stability & Zero-Allocation Hot Paths
- Zero-Dependency Version Guard:
ModVersionGuardverifies runtime Minecraft environment compatibility on startup and displays human-readable diagnostic advice if an incompatible API drop is detected. - Atomic File Persistence:
ConfigHelpermanages JSON read/write operations using temporary file atomic swaps and automatic backup generation. - Zero-Allocation Rendering: Zero-byte heap allocation architecture across high-frequency tick and render paths.
📊 Quick Reference & Mechanics Matrix
| Feature Dimension | Vanilla / Standard Mod Implementation | Dasik Library (v1.8.35) |
|---|---|---|
| GameRule Registration | Static build-time registration only | Dynamic runtime unfreeze + auto-translation injection |
| Save File Persistence | Only static vanilla rules saved | Dynamic SavedData storage in game_rules.dat |
| Orphaned Rule Handling | Corrupts saves or persists forever | Automated startup pruning (pruneOrphanedRules) |
| Flocking AI Complexity | $O(N^2)$ pairwise entity distance loops | $O(N)$ Leader-Cached FlockState computation |
| Animal Genetics Engine | Flat vanilla breed inheritance | Lineage tracking, mutations, scale linking & loot scaling |
| Scale Attribute Range | Rigid vanilla scaling | Custom scaling clamp [0.1f, 3.0f] with linked stats |
| Optional Config GUI | Prone to server NoClassDefFoundError |
Reflection & Knot isolation (GuiHelper) with 0 server risk |
| Version Safeguards | Obscure Mixin crash traces | ModVersionGuard Knot ClassLoader validation |
🚀 Developer Quick Start & Implementation Guide
Integrating Dasik Library into your own Fabric mod takes only a few lines of code:
1. Gradle Setup
Add the Modrinth Maven repository and declare the dependency in your build.gradle:
repositories {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
dependencies {
modImplementation "maven.modrinth:dasik-library:1.8.35"
}
2. Registering a Dynamic GameRule
Register a GameRule with automatic English translation and category bolding:
import net.dasik.social.api.gamerule.DynamicGameRuleManager;
// Registers 'my_mod:drop_multiplier' with a default value of 2 under the 'Gameplay' category
DynamicGameRuleManager.registerIntegerRule(
"my_mod:drop_multiplier",
2,
"Drop Multiplier",
"Gameplay"
);
3. Binding Animal Scale to Health and Speed
Link physical size to combat and mobility attributes:
import net.dasik.social.api.genetics.SizeStatsBuilder;
import net.dasik.social.api.genetics.LinkMode;
import net.minecraft.world.entity.ai.attributes.Attributes;
SizeStatsBuilder.create("my_mod:beast_genetics")
.linkAttribute(Attributes.MAX_HEALTH, LinkMode.PROPORTIONAL, 2.0f)
.linkAttribute(Attributes.MOVEMENT_SPEED, LinkMode.INVERSE, 0.5f)
.register();
4. Dynamic Registry Scanning
Safely observe and handle new registry entries added by other mods:
import net.dasik.social.api.registry.DynamicRegistryScanner;
import net.minecraft.core.registries.BuiltInRegistries;
DynamicRegistryScanner.subscribe(BuiltInRegistries.ITEM, item -> {
// Process new modded items dynamically on startup and live reload
});
⚙️ Core Configuration & Save Architecture
💡 Config vs. In-Game GameRules: The global configuration file only defines default values for newly created worlds. In existing worlds, change settings in-game via the Edit Game Rules UI screen or the
/gamerulecommand.
Dasik Library manages dynamic GameRule states natively within your world save files:
- World Storage: Stored in
/data/game_rules.datandlevel.dat. - Zero Residual Clutter: When you remove a mod that registered dynamic rules, Dasik Library's startup pruning engine detects the absent namespace and unregisters orphaned entries, preventing console spam and bloated save files.
📖 In-Depth How-To & Integration Playbook
1. For Survival Players & Server Administrators
- Download
dasik-library-1.8.35.jar(or latest release). - Place the JAR directly into your
.minecraft/modsfolder along with Fabric API. - Launch Minecraft. Dasik Library operates silently and efficiently in the background, providing foundational services for your installed mods.
- When configuring GameRules in-game via the Edit Game Rules screen or
/gamerule, all rules registered by Dasik-powered mods are automatically translated, organized into categories, and saved directly to the world file.
2. For Modpack Creators
- Universal Multi-Version Support: You do not need separate builds of Dasik Library for minor Minecraft patches—one build handles MC 26.1.2, 26.2, and 26.3+.
- Server-Safe: Include Dasik Library in both client and server modpacks without fear of client GUI crashes.
- Clean World Upgrades: When updating modpacks and removing deprecated mods, the library automatically purges orphaned GameRules on the next server launch.
3. For Mod Developers
- Declare
dasik-libraryin yourfabric.mod.json:
"depends": {
"fabricloader": ">=0.16.10",
"minecraft": ">=26.1.2-",
"fabric-api": "*",
"dasik-library": ">=1.8.15"
}
- Leverage
DynamicGameRuleManagerto avoid writing repetitive GameRule boilerplate and translation files. - Use
GuiHelperto supply optional YACL or Cloth Config GUIs that open seamlessly via ModMenu while preserving 100% server safety.
🧩 Recommended Sister Mods & Powered Projects
Dasik Library serves as the engine for numerous popular mods. Explore these projects powered directly by the library:
- 📜 Collapsible Game Rules: Modernizes the Edit Game Rules screen into collapsible categories with real-time search, leveraging Dasik Library's dynamic metadata.
- 🐕 Better Dogs: Complete canine behavioral overhaul featuring personality intelligence, pack murmuration, and vehicle riding powered by Dasik Library's AI flocking engine.
- 🌿 Natural Reproduction: Autonomous 27-species wildlife breeding and genetics engine built directly on Dasik Animal Genetics.
🌟 Explore my profile for more vanilla enhancements, performance utilities, and game design overhauls.
💬 Join the Community & Get Support
Looking for help, want to test early beta builds, or vote on upcoming features? Join our official Discord community!
☕ Support
If you enjoy the ecosystem, consider fueling future updates!
🇮🇩 Indonesian Users: SocioBuzz and Saweria support local payment methods (Gopay, OVO, Dana, etc.) if you want to support me without using PayPal/Ko-fi!
📜 Credits & Modpack Permissions
| Role / Property | Author / Link |
|---|---|
| Creator / Author | Dasik (Rifaditya) |
| Community | Official Discord |
| Collection | Universal Core Architecture |
| License | GNU Lesser General Public License v3.0 (LGPLv3) |
| Source Code | GitHub - Rifaditya/MC-DasikLibrary |
| Issue Tracker | GitHub Issues |
| Documentation / Wiki | GitHub Wiki |
📦 Modpack Permissions & Distribution:
You are fully welcome to include this mod in any modpack on any platform! However, the mod file must be downloaded directly through official distribution channels (Modrinth or CurseForge). Re-uploading, mirroring, or redistributing the original mod JAR to third-party mirror sites, scraper portals, or unauthorized launchers is strictly prohibited.⚖️ License & Fork Guidelines (No Zero-Change Re-uploads):
This project is open-source under the GNU GPLv3. You are fully encouraged to inspect the code, learn from it, and fork the repository to create genuine modifications, substantial feature expansions, or community ports—provided your project remains open-source under GPLv3 with proper attribution.
However, straight 1:1 re-uploads, clone forks with no meaningful functional changes, or re-publishing identical builds under different project names (e.g. to farm downloads or rewards) are strictly forbidden.
Made with ❤️ for the Minecraft community Part of the Universal Core Architecture
Project description from CurseForge.
Pick your setup
Dasik Libary by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.2
1 loader build26.1.2
1 loader build26.1.1
1 loader build26.1-snapshot
1 loader build26.1
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Dasik Libary versions and loaders
Dasik Library 1.8.38
dasik-library-1.8.38.jar
9 Sept 2026
Dasik Library 1.8.37
dasik-library-1.8.37.jar
8 Sept 2026
Dasik Library 1.8.36
dasik-library-1.8.36.jar
5 Sept 2026
Dasik Library 1.8.35
dasik-library-1.8.35.jar
4 Sept 2026
Dasik Library 1.8.34
dasik-library-1.8.34.jar
3 Sept 2026
Dasik Library 1.8.33
dasik-library-1.8.33.jar
2 Sept 2026
Dasik Library 1.8.32
dasik-library-1.8.32.jar
1 Sept 2026
Dasik Library 1.8.31
dasik-library-1.8.31.jar
31 Aug 2026
Dasik Library 1.8.30
dasik-library-1.8.30.jar
30 Aug 2026
Dasik Library 1.8.29
dasik-library-1.8.29.jar
28 Aug 2026
Dasik Library 1.8.28
dasik-library-1.8.28.jar
25 Aug 2026
dasik-library-1.8.27.jar
23 Aug 2026
Looking for an older file? The official CurseForge project page is in Resources.