PackCENHeaderFix

# PackCENHeaderFix

There is no longer an error invalid CEN header (bad entry name or comment)

It solves this problem by replacing Java Zip implementation with Apache Commons Compress implementation.

## Example Story

You downloaded a ResourcePack from a RP author. You put it in your RP folder and tried to load it as usual, but you don’t see it in the RP selector.

Instead, Minecraft prints the following error in the log:

![136fae32511da386f54de944925e101fee8c6527.png](https://cdn.modrinth.com/data/7zCj0OEn/images/136fae32511da386f54de944925e101fee8c6527.png)

It doesn’t appear in Mojira, precisely because it’s a bug that only appears under very extreme conditions. I haven’t seen it in the past few years of the game, and only very, very few RP authors have accidentally allowed their RP to be contaminated by this bug.

The cause of this bug is unknown, but it only affects the Java Zip implementation. RPs that experience this bug can still be force-loaded (although you won’t be able to find them in the selector), but I think it’s better to try to fix it.

## About API
It’s intended for use with another mod of mine, which will rely on this one for additional functionality.

If you want to do something with it, my advice is don’t, I don’t want it to behave unexpectedly.

## How to build?
After the clone repository, be sure to use the `./gradlew clean build` command to build,
rather than executing any of them separately.

After the build is completed, a jars folder will be generated in the root directory,
where the final build results will be stored.

## For Modpack
If you comply with the license, you can use it freely for Modpack.

Modpacks that redistribute Minecraft game body (i.e. packages that package the entire Minecraft game including Mod files, Config, ShaderPacks, ResourcePacks, Library and launcher into a whole zip file) are not allowed to use this mod.

## License

This work has a restrictive license in addition to the original license to prevent some unexpected behavior, see 404Setup Public License

Overdetailed Saplings

This resource pack simply replaces models of saplings to those I made. The purpose is to give them block more depth and details, while not getting too far from the original.

The pack doesn’t require to have any mods installed and will work with just vanilla Minecraft 1.14+

Anybody is free to use this pack anywhere. Just do not rename the pack, please.

Contact me:

My YouTube channel

My Twitch channel

My VK page

My Telegram

Overdetailed Enchanting Table

This resource pack simply replaces a model of an Enchanitng Table to the one I made. The purpose is to give this block more depth and details, while not getting too far from the original.

The pack doesn’t require to have any mods installed and will work with just vanilla Minecraft 1.14+

Anybody is free to use this pack anywhere. Just do not rename the pack, please.

Contact me:

My YouTube channel

My Twitch channel

My VK page

My Telegram

Overdetailed: Complete

This resource pack contains content from all the other mine “Overdetailed” packs. The purpose of “Overdetailed” series is to give some blocks more depth and details, while not getting too far from the original to generally improve Minecraft’s visuals.

The pack doesn’t require to have any mods installed and will work with just vanilla Minecraft 1.14+

Anybody is free to use this pack anywhere. Just do not rename the pack, please.

Contact me:

My YouTube channel

My Twitch channel

My VK page

My Telegram

Overdetailed Barrel

This resource pack simply replaces a model of barrel to the one I made. The purpose is to give this block more depth and details, while not getting too far from the original.

The pack doesn’t require to have any mods installed and will work with just vanilla Minecraft 1.14+

Anybody is free to use this pack anywhere. Just do not rename the pack, please.

Contact me:

My YouTube channel

My Twitch channel

My VK page

My Telegram

Ore Vein Miner

Support me on Patreon   Join our Discord
   Support me on Ko-fi
  View on GitHub

Patreon

# Ore Vein Miner

It automatically mines connected ore blocks when you break one with a pickaxe while crouching.

![1](https://cdn.modrinth.com/data/Xl2GihRU/images/64ad1935bc25e006be50ed8fa4d9697da2639985.gif)
![2](https://cdn.modrinth.com/data/Xl2GihRU/images/1e1388588ccb36007b8137ce4584200f31626d17.gif)

## How It Works
– Crouch (Sneak) and mine any ore block with a pickaxe. The entire connected vein will be mined automatically (**Silk Touch Compatible**)

## Notes
– Automatically disables vein mining when **Fortune** enchantment is detected

Outlined Ores

# Outlined Ores
### 1.20.2 and below are discontinued
The Outlined Ores texture pack is one of the most useful texture packs available. While exploring caves or strip mining, it is easy to overlook a surprising number of ore blocks. With the Outlined Ores texture pack, ores become highly visible even from a distance, making resource gathering far more efficient. The outlines are vibrant and clear, and best of all, the pack does not require any additional mods.

Despite its enhanced visibility, the texture pack maintains a natural appearance. All ore outlines are created using the existing colors of each ore block, ensuring they blend seamlessly with the game’s original style. This prevents the pack from looking unnatural or distracting, an issue commonly found in similar texture packs.

## Looking for a server to play on with your friends?
Look no further, because CloudNord is by far the best server hosting site I’ve found. Really. I actually used their servers back when I used to host a Minecraft server and the pricing was literally the best out of ANY server hosting provider I saw. Their customer service is outstanding and they respond within minutes. Click the image (or link) below to order a server for as low as only $2.67 a month!

cloudnord.net/r0k3tkutt3r

![A banner with the CloudNord logo on it](https://cloudnord.net/aff.php?code=r0k3tkutt3r)

Ordered Player List

# Ordered Player List

## Config
“`json5
{
// Every how many ticks order changes should be checked and updated
“updateRate”: 5,
// Display prefix metadata above the player
“displayPrefix”: true,
// Display suffix metadata above the player
“displaySuffix”: true,
// A list of comparisons, applied top to bottom.
// In this example, rank weight will be checked first, then people with same rank weight will be sorted by playtime…
“order”: [
{
“key”: “weight”,
“reversed”: true,
“mode”: “integer”,
“type”: “metadata”
},
{
“placeholder”: “player:statistic”,
“argument”: “play_time”,
“reversed”: true,
“mode”: “integer”,
“type”: “placeholder”
},
{
“placeholder”: “player:pos_y”,
“reversed”: false,
“mode”: “double”,
“type”: “placeholder”
},
{
“placeholder”: “player:statistic”,
“argument”: “deaths”,
“reversed”: false,
“mode”: “integer”,
“type”: “placeholder”
},
{
“placeholder”: “player:name”,
“reversed”: false,
“mode”: “string”,
“type”: “placeholder”
}
]
}
“`
*(`displayPrefix` and `displaySuffix` have been removed in all versions for Minecraft 1.21.2 and higher.)*

## Comparisons
Comparisons allow to define how players should be ordered in the player list. They are applied top to bottom. That means
if a comparison was evaluated to be equal for two players, the next one down will be used to determine player order instead.

It may sometimes be beneficial to interpret data as an integer or a floating point number, instead of string comparisons.
Parsing modes are used to tell the mod how it should interpret a string to apply the correct comparison method. Available parsing modes are `integer`, `string`, `double`, `long` and `boolean`!

There are currently two different comparison types available:
### Metadata
Useful for player comparison based on metadata from mods like luckperms
“`json5
{
// Metadata key that should be checked against
“key”: ““,
// Whether the comparison should be reversed
“reversed”: false,
// Parsing mode
“mode”: ““,
“type”: “metadata”
}
“`

### Placeholders
Allows for player comparison using placeholders
“`json5
{
// Placeholder id (without %)
“placeholder”: ““,
// Optional argument used in placeholders
“argument”: ““,
// Whether the comparison should be reversed
“reversed”: false,
// Parsing mode
“mode”: ““,
“type”: “placeholder”
}
“`

[ORB] OresRBack

## What does this mod/ datapack do?
This simple mod/ datapack makes it possible to mine ores like in versions before 1.17 again. That means that ores drop ores again and not raw ores. Read more here.

## But whyy??
My friends and I noticed after playing the newer versions of Minecraft that the new ore logic is a bit overpowered and makes it much easier to get resources (especially Copper Ore)

## More Minecraft Versions???
I will support more Minecraft versions if it is requested. So if someone opens an issue on GitHub, or send me an mail to [this address](mailto:
[email protected]), that they want another version of Minecraft for this mod/ datapack, I will create it!

## Create Extension
I’ve also created a mod for Create’s zinc ore, see: ORBC

## BYG Extension
As well for Oh the biomes you’ll go! See: ORBB

## Disclaimer
This is not an official Minecraft product. Not approved by or associated with Mojang or Microsoft.

Optimum Realism

# **Optimum Realism**

**The realistic Minecraft resource pack with PBR, POM, and custom 3D models. 3M+ downloads across all platforms. Actively updated monthly.**

## **What is Optimum Realism?**

Optimum Realism replaces Minecraft’s blocks, items, and mobs with their real-world counterparts. It’s built with a focus on visual depth, shader compatibility, and consistent performance. The goal is a pack for players who want their world to feel grounded and tactile without the framerate cost that usually comes with realistic textures.

Over 650+ blocks reworked. Custom 3D mob models. PBR maps, parallax occlusion mapping, emissive textures, and depth-write POM, all in a single pack that runs on a GTX 1050.

## **Features**

– **650+ blocks reworked** with realistic PBR textures
– **Custom 3D models** for mobs and items (spiders, chickens, and more added monthly)
– **Parallax Occlusion Mapping, depth-write POM, emissive blocks, and full PBR support**
– **Compatible with Minecraft 1.21.x** and earlier versions back to 1.16
– **Works with all major shaders**: Kappa, BSL, SEUS PTGI, Complementary, and more
– **Java + Bedrock support**, with a dedicated **Bedrock RTX edition** launching soon
– **Performance-first design**. 64x runs smoothly on mid-range hardware
– **Actively updated monthly** with new textures, models, and features
– **3M+ total downloads** across CurseForge, Modrinth, and direct distribution

## **How Optimum Realism is different**

– **Real 3D models, not just retextures.** Mobs and blocks have actual geometry, not painted-on detail.
– **Depth-write POM.** Textures genuinely interact with each other. Sand fills the crevices between planks instead of sitting flat on top.
– **Performance balance.** Most realistic packs sacrifice framerate. Optimum Realism is built to run on hardware that other realistic packs choke on.
– **Consistent monthly updates.**

![Features](https://wsrv.nl/?url=https%3A%2F%2Fmedia.forgecdn.net%2Fattachments%2Fdescription%2F513233%2Fdescription_0b348bfb-3048-4971-9845-5535b998dcab.png&n=-1)

## **What’s free and what’s paid?**

– **64x edition: Free.** Fully featured, available here on Modrinth. Updated monthly.
– **128x edition: Patreon.** Higher-resolution textures, early access to monthly updates, and exclusive previews. **Subscribe on Patreon** (preferred)
– **Alternative :** Available at **store.optimumrealism.com**

![Patreon](https://wsrv.nl/?url=https%3A%2F%2Fmedia.forgecdn.net%2Fattachments%2Fdescription%2F513233%2Fdescription_33f9cc63-748f-45ec-b93e-19b8ceb6c133.png&n=-1)

![Store](https://wsrv.nl/?url=https%3A%2F%2Fmedia.forgecdn.net%2Fattachments%2Fdescription%2F513233%2Fdescription_eab01a2e-4655-4c6c-9d1b-ef9a94c5dd9d.png&n=-1)

## **Before you install**

**Playing with Iris / Sodium?** You’ll need additional mods to run Optimum Realism properly. Two easy options:

– **Full installation guide**: step by step, with all required mods listed
– **Ultimate PBR Essentials modpack**: one-click install of everything you need

## **System requirements**

![Requirements](https://wsrv.nl/?url=https%3A%2F%2Fmedia.forgecdn.net%2Fattachments%2Fdescription%2F513233%2Fdescription_2a03762b-b266-4c60-be5d-b74b29a957c6.png&n=-1)

Optimum Realism runs well on a decent gaming computer. You don’t need an RTX card unless you’re using the Bedrock RTX edition.

– **64x version:** GTX 1050 or equivalent, 8GB RAM minimum
– **128x version:** GTX 1060 / RTX 2060 recommended for shaders at higher resolutions
– **Bedrock RTX edition:** RTX 2060 or better

## **Community & support**

If Optimum Realism has improved your game, leaving a **review here on Modrinth** genuinely helps the project grow.

![Discord](https://wsrv.nl/?url=https%3A%2F%2Fmedia.forgecdn.net%2Fattachments%2Fdescription%2F513233%2Fdescription_e2e94014-f224-4ba1-b1f0-3d35c8914839.png&n=-1)

– **Join the Discord**: WIP previews, monthly polls on what gets reworked next, screenshot showcases, and direct support from the dev
– **Visit the wiki**: installation guides, troubleshooting, and feature breakdowns
– **Instagram @optimum_realism**: behind-the-scenes block previews and dev updates