DynamicPack

โญ โ€” (60 endorsements) ๐Ÿ“ฅ 30,989 downloads ๐Ÿ“Œ v1.2.3-b.26.1-neoforge ๐Ÿ“… 3/19/2024
๐ŸŸก Updated this year

By Riflusso ยท fabric

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 4/26/2026 ๐Ÿ“… Created: 3/19/2024
โš ๏ธ Install Order ยท 2 steps
1๐Ÿ› ๏ธ Forge โ€” Minecraft Forge (mod loader) Download โ†—
2๐Ÿ› ๏ธ Fabric โ€” Fabric Loader Download โ†—

Install in this order, then this mod last โ€” most mods fail to load without their framework and dependencies in place.

๐Ÿ” Analysis

  • ๐Ÿ‘ 0.2% endorsement rate
  • ๐Ÿ† #167 of 940 fabric mods in this game by downloads

๐Ÿ“‹ About This Mod

โœ… (https://github.com/AdamCalculator/CursedEveryday)
โœ… (https://modrinth.com/resourcepack/mods-ru)
โœ… (https://modrinth.com/resourcepack/zelda-music)
โœ… (https://github.com/1NFERR/PawTotems/)
โœ… (https://github.com/aladairmaxwell/SP)
โœ… (https://modrinth.com/resourcepack/essentially-tweaked)

# ๐ŸŒ DynamicPack *A lightweight mod that monitors your resource pack version and updates it automatically.* <p align="center"> <img src="https://img.shields.io/badge/Enviroment-Client-purple" alt="Environment: Client"> <a href="https://github.com/CalculatorsTeam/DynamicPack"> <img src="https://img.shields.io/badge/Github-gray?logo=github" alt="GitHub Repository"> </a> <a href="https://github.com/CalculatorsTeam/DynamicPack/actions/workflows/build.yml"> <img src="https://github.com/CalculatorsTeam/DynamicPack/actions/workflows/build.yml/badge.svg" alt="Build Status"> </a> </p> <p align="center"> <a href="https://modrinth.com/mod/dynamicpack"> <img src="https://github.com/CalculatorsTeam/DynamicPack/blob/multiversion/dev/assets/badges/dynamicpack_cozy_vector.svg?raw=true" alt="DynamicPack Banner"> </a> <a href="https://modrinth.com/mod/dynamicpack/versions?l=fabric"> <img alt="Fabric downloads" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/cozy/supported/fabric_vector.svg" /> </a> <a href="https://modrinth.com/mod/dynamicpack/versions?l=neoforge"> <img alt="NeoForge downloads" src="https://cdn.jsdelivr.net/gh/Hyperbole-Devs/vectors@neoforge_badges/assets/cozy/supported/neoforge_vector.svg" /> </a> </p> --- ## ๐Ÿ“– Documentation See the (https://github.com/CalculatorsTeam/DynamicPack/wiki) for full developer documentation, advanced features, and examples. --- ## ๐ŸŽจ Resource Packs Using DynamicPack These resource packs already use automatic DynamicPack updates: - (https://github.com/AdamCalculator/CursedEveryday) - (https://modrinth.com/resourcepack/mods-ru) - (https://modrinth.com/resourcepack/zelda-music) - (https://github.com/1NFERR/PawTotems/) - (https://github.com/aladairmaxwell/SP) - (https://modrinth.com/resourcepack/essentially-tweaked) - (https://modrinth.com/resourcepack/vanilla-leaves) --- ## โš™๏ธ How It Works Resource pack developers include a metadata file named `dynamicmcpack.json` inside their pack. At game launch, DynamicPack checks for updates and automatically downloads the latest version if necessary. --- ## ๐Ÿงฉ For Players Install the mod and enjoy โ€” DynamicPack will handle updates in the background. --- ## ๐Ÿ›  For Developers If youโ€™d like your pack to **update itself automatically**, you can choose one of the integration options below. <details> <summary>๐Ÿ”— <b>Option 1 โ€” Update from Modrinth</b></summary> Create a file named `dynamicmcpack.json` in your pack: ```json5 { "current": { "version_number": "7.1" // Current version of your resource pack }, "remote": { "game_version": "1.21.1", // Compatible Minecraft version "modrinth_project_id": "better-leaves", // Your Modrinth project slug or ID "type": "modrinth" // Update source type (Modrinth) }, "formatVersion": 1 // Internal config format version } ``` </details> <details> <summary>๐Ÿ™ <b>Option 2 โ€” Update from GitHub</b></summary> Create a file named `dynamicmcpack.json` in your pack: ```json5 { "current": {}, "remote": { "sign_no_required": true, // Optional digital signature โ€” set to true to disable verification "type": "dynamic_repo", // Update source type (Dynamic Repository) "url": "https://adamcalculator.github.io/CursedEveryday/" // Remote repository URL }, "formatVersion": 1 // Internal configuration format version } ``` Next, create a `dynamicmcpack.repo.json` file like this: ```json5 { "formatVersion": 1, // Internal schema version "build": 10, // Build number of your current release "name": "CursedEveryday", // Display name of your resource pack "contents": } ``` Next, create a separate `content.json` file for each content section: ```json5 { "formatVersion

# ๐ŸŒ DynamicPack A lightweight mod that monitors your resource pack version and updates it automatically.

Environment: Client GitHub Repository Build Status

DynamicPack Banner Fabric downloads NeoForge downloads

## ๐Ÿ“– Documentation See the [GitHub Wiki](https://github.com/CalculatorsTeam/DynamicPack/wiki) for full developer documentation, advanced features, and examples.

## ๐ŸŽจ Resource Packs Using DynamicPack These resource packs already use automatic DynamicPack updates:

  • (https://github.com/AdamCalculator/CursedEveryday)
  • (https://modrinth.com/resourcepack/mods-ru)
  • (https://modrinth.com/resourcepack/zelda-music)
  • (https://github.com/1NFERR/PawTotems/)
  • (https://github.com/aladairmaxwell/SP)
  • (https://modrinth.com/resourcepack/essentially-tweaked)
  • (https://modrinth.com/resourcepack/vanilla-leaves)

## โš™๏ธ How It Works Resource pack developers include a metadata file named `dynamicmcpack.json` inside their pack. At game launch, DynamicPack checks for updates and automatically downloads the latest version if necessary.

## ๐Ÿงฉ For Players Install the mod and enjoy โ€” DynamicPack will handle updates in the background.

## ๐Ÿ›  For Developers If youโ€™d like your pack to update itself automatically, you can choose one of the integration options below.

๐Ÿ”— Optionโ€ฏ1 โ€” Update from Modrinth

Create a file named `dynamicmcpack.json` in your pack:

```json5 { "current": { "version_number": "7. 1" // Current version of your resource pack }, "remote": { "game_version": "1. 21. 1", // Compatible Minecraft version "modrinth_project_id": "better-leaves", // Your Modrinth project slug or ID "type": "modrinth" // Update source type (Modrinth) }, "formatVersion": 1 // Internal config format version } ```

๐Ÿ™ Optionโ€ฏ2 โ€” Update from GitHub

Create a file named `dynamicmcpack.json` in your pack:

```json5 { "current": {}, "remote": { "sign_no_required": true, // Optional digital signature โ€” set to true to disable verification "type": "dynamic_repo", // Update source type (Dynamic Repository) "url": "https://adamcalculator.github.io/CursedEveryday/" // Remote repository URL }, "formatVersion": 1 // Internal configuration format version } ```

Next, create a `dynamicmcpack.repo.json` file like this:

```json5 { "formatVersion": 1, // Internal schema version "build": 10, // Build number of your current release "name": "CursedEveryday", // Display name of your resource pack "contents": [ { // Metadata block (main information about pack components) "url": "path/to/content.json", "hash": "5e4d4ad1e9714487263c51f5f83c448c0708773a", // SHA1 checksum of content.json "id": "meta", "hidden": true, // Hides this component from userโ€‘facing lists "required": true // Marks this component as mandatory }, { // Example of an additional content section "url": "path/to/content.json", "hash": "6e6739297dac80078bbc4890567f05d4015553db", "id": "cursed", "name": "Cursed content" // Optional friendly display name } ] } ```

Next, create a separate `content.json` file for each content section:

```json5 { "formatVersion

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Mods
Author
Riflusso
Version
1.2.3-b.26.1-neoforge
Downloads
30,989
Endorsements
60
Category
fabric
Created
3/19/2024
Updated
4/26/2026
Game Versions
26.1, 26.1.1, 26.1.2
Tags
management, storage, 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 DynamicPack support?

The author lists 26.1, 26.1.1, 26.1.2. Other versions may work but are untested by the author.

What is the latest version of DynamicPack?

Version 1.2.3-b.26.1-neoforge, published 2026-04-26 with 30,989 downloads recorded at the source.

Keep browsing โ€” more Minecraft Mods mods await

๐Ÿ“‹ All Minecraft Mods Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More fabric ๐Ÿ‘ค More by Riflusso ๐Ÿ”Ž Similar Mods ๐ŸŒ Best fabric (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods