Standard Day Counter

# Minecraft’s unOfficial Day Counter
This datapack provides a configurable in-game Day Counter to Minecraft.

Every morning, it displays the current day in the title, subtitle, or actionbar, depending on the selected settings.

With the day number display, it also display additional information, this includes the official Minecraft splash messages, the personal day counter for each player, and the number of days until the next full moon, depending on the selected settings.

To learn the basic commands of this datapack, the operator should use the following command:
“`
/function day_counter:help
“`

This data pack belongs to the [Minecraft unOfficial Project](https://modrinth.com/collection/hB55ZXtF).


# License

This project is licensed under the GNU Lesser General Public License v2.1. You may use, modify, and redistribute it under the terms of the LGPL v2.1.

This software is provided “as is”, without warranty of any kind. See the LICENSE file or [https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt) for full license text.

Standard Bushy Leaves

# Minecraft’s unOfficial Bushy Leaves
Resource pack that adds variated bushy leaves. It is a part of the [Minecraft unOfficial Proyect](https://modrinth.com/collection/hB55ZXtF).

An idea… with so many iterations that almost seems insane that another one emerges now. But, against all odds in heaven and earth: The bushy leaves strikes back! with a twist: Now, there are different variations (3 in total) of bushy leaves, depending of the leaf type! Come on and try it now!

—-
### License

This project is licensed under the GNU Lesser General Public License v3.0 (LGPL-3.0).
You may use, modify, and redistribute it, provided that improvements to the library remain under the same license.

StackDeobfuscator

# Stack Deobfuscator

> **WARNING**
> This mod is obsolete for all Minecraft versions newer than 1.21.11. It will still be maintained for older versions.

Discord: https://discord.gg/XSB7jn9
Web Version: https://stackdeobf.net/

See [wiki](https://github.com/booky10/StackDeobfuscator/wiki/Configuration) for configuration

## What does this mod do?

All errors displayed in the console and all crash reports will be remapped from unreadable production names (e.g.
`net.minecraft.class_310`) to readable mapped names (e.g. `net.minecraft.client.MinecraftClient`).

This allows mod developers to more easily identify issues in a non-development environment, as the errors are instantly
human-readable.

### Comparison

Before

“`
[23:13:08] [Render thread/ERROR]: Reported exception thrown!
net.minecraft.class_148: Manually triggered debug crash
at net.minecraft.class_309.method_1474(class_309.java:509) ~[client-intermediary.jar:?]
at net.minecraft.class_310.method_1574(class_310.java:1955) ~[client-intermediary.jar:?]
at net.minecraft.class_310.method_1523(class_310.java:1180) ~[client-intermediary.jar:?]
at net.minecraft.class_310.method_1514(class_310.java:801) ~[client-intermediary.jar:?]
at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]
Caused by: java.lang.Throwable: Manually triggered debug crash
at net.minecraft.class_309.method_1474(class_309.java:506) ~[client-intermediary.jar:?]
… 10 more
“`

After (yarn/quilt mappings)

“`
[23:11:25] [Render thread/ERROR]: Reported exception thrown!
net.minecraft.util.crash.CrashException: Manually triggered debug crash
at net.minecraft.client.Keyboard.pollDebugCrash(Keyboard.java:509) ~[client-intermediary.jar:?]
at net.minecraft.client.MinecraftClient.tick(MinecraftClient.java:1955) ~[client-intermediary.jar:?]
at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1180) ~[client-intermediary.jar:?]
at net.minecraft.client.MinecraftClient.run(MinecraftClient.java:801) ~[client-intermediary.jar:?]
at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]
Caused by: java.lang.Throwable: Manually triggered debug crash
at net.minecraft.client.Keyboard.pollDebugCrash(Keyboard.java:506) ~[client-intermediary.jar:?]
… 10 more
“`

After (mojang mappings)

“`
[23:04:12] [Render thread/ERROR]: Reported exception thrown!
net.minecraft.ReportedException: Manually triggered debug crash
at net.minecraft.client.KeyboardHandler.tick(KeyboardHandler.java:509) ~[client-intermediary.jar:?]
at net.minecraft.client.Minecraft.tick(Minecraft.java:1955) ~[client-intermediary.jar:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1180) ~[client-intermediary.jar:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:801) ~[client-intermediary.jar:?]
at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]
Caused by: java.lang.Throwable: Manually triggered debug crash
at net.minecraft.client.KeyboardHandler.tick(KeyboardHandler.java:506) ~[client-intermediary.jar:?]
… 10 more
“`

## Mappings Overview

Mappings are downloaded and parsed asynchronously. They are downloaded only once per version.
Yarn and Quilt refresh their version every 48 hours to check for updates.

| Mappings | Compatible Minecraft Versions | Download Size (zipped¹)² | Cached Size (gzipped)² |
|———-|———————————————|—————————————-|————————————-|
| Yarn | 18w49a (1.14 snapshot) or higher | `1.4 MiB` | `1.4 MiB` |
| Quilt | 1.18.2 or higher | `1.4 MiB` (+`1.1 MiB` below 1.19.2) | `1.4 MiB` (+`1.1 MiB` below 1.19.2) |
| Mojang | 1.14.4 and 19w36a (1.15 snapshot) or higher | `9.0 MiB` (uncompressed) + `559.1 KiB` | `1.3 MiB` + `558.6 KiB` |

¹: Mojang mappings are not compressed
²: Sizes as of 12th May 2024 (1.20.6 is latest)

Speedometer

### Speedometer

**This datapack displays your current movement speed in bps (blocks per second).**

Depending on your speed, the speedometer changes color; first to white, then to yellow, and finally to red

![hud](https://cdn.modrinth.com/data/cached_images/b057584e999651e4baffba66fcf4f7575cb126f6.gif)

## Command
– **/function speedometer:on**
> To turn on the speedometer
– **/function speedometer:off**
> To turn off the speedometer
– **/function speedometer:toggle**
> Allows you to change the style.

SquareType

**Are you tired of the vanilla, boring font?
Do you want to try something new?
Or maybe you want to give your Minecraft a new look?**

![So maybe this is exactly what you’re looking for&](https://i.imgur.com/QfLMUMI.png)
With this resourcepack you can change vanilla, boring font to it’s squared analogue.

Here is a screenshot of how the game looks with vanilla font, and with my font. So that you can understand the beauty of this font without going into the game.
![Original – Left, SquareType – Right](https://i.imgur.com/Rnb5WQI.png)
This font also supports Russian language.
![Russian Page](https://i.imgur.com/q34kvpq.png)

# More:
[![Capitalized Button](https://cdn.modrinth.com/data/cached_images/bddd375af084aee2eaf5cdfdf0610011b0472741_0.webp)](https://modrinth.com/resourcepack/squaretype-capitalized)

You can find more versions on [CurseForge](https://www.curseforge.com/minecraft/texture-packs/squaretype)

Squared Shadow

This is a Texture Pack, originally designed for “[Better Than Adventure!](https://www.betterthanadventure.net/)”, and consequentially Beta 1.7.3 (although it will work with ANY version of Minecraft that has a Shadow, since the location and filename has never changed, despite the outdated Resource Pack version warning), that gives the Entities a squared Shadow, instead of a circular one. Consistency, my beloved.

![My Character’s Feet, Featuring a Blocky Shadow](https://cdn.modrinth.com/data/cached_images/72dd28be362e85b04d61b69cb37d451b4a65d68a_0.webp)

# CREDITS

– Shadow texture and “pack.png” made by AndreWharn.
– Do not use the assets without permission, please!

# Thanks for using this pack! 😀

Spryzeen’s Knight Armor x Leaf’s Copper Backport

Do you like 1.20.1?
Do you like copper tools and armor?
Do you like good looking tools and armor?
Then this resource pack is just the thing for you!

I took the textures from the latest version of Spryzeen’s Knight Armor, which added the copper armor and tools retexture and plapped it into Leaf’s Copper Backport’s texture folder.

And with that, I present to you:
## Spryzeen’s Knight Armor x Leaf’s Copper Backport
![Comparison](https://cdn.modrinth.com/data/cached_images/fdd05da530a5accf2762f29147a8e91876d628ed_0.webp)

### Hey! Hey you!

I also made a mod that fixes the mismatch between the copper & iron inventory item and actual model itself, check it out [here](https://modrinth.com/resourcepack/spryzeens-knight-armor-chestplate-fix)! I decided not to bake it into this mod since its a preference, because i actually think the mismatched version looks pretty cool too.

Note: At the time of making the preview, I didn’t think of that, so it shows as non-mismatched but it actually is without the second mod lol

Spook

**I am currently inactive on this project at the moment, and new updates may be extremely delayed**

### **Important info:**
This RP **does not** contain any creepy/scary content or jumpscares. It only contains shader effects and only intends to just make the atmosphere more spooky feeling.

This RP **does not** work with optifine or sodium.

### About the pack
Spook is a resource pack making use of core shaders to add a spooky vibe to the game, without having to use optifine/iris.

### What this RP adds:
– Desaturated colour with red tint
– A red UI
– A dark, close fog around the player
– Slight effects to mobs with emissive eye rendering

### Known issues:
– Items held are completely black on inventory preview
– Fog does not apply to sign text
– Objects may ignore fog at large distances from player

Spezi Totem Bottle

Changes Texture of the Totem into Spezi

Now you can enjoy your Spezi while trying to survive, isn’t that great?

What is that?

its a german soda called “Paulaner Spezi”

in America its called “Paulaner Sunset”

Versions

Support for every existing version

Spawn Eggs Backported

# 25w08a Spawn Egg Textures – Backported!

This resource pack brings the **spawn egg textures** introduced in **Minecraft Snapshot 25w08a** to **all versions from Minecraft 1.14 snapshots up to 25w07a**! If you love the new spawn egg textures but prefer playing on older versions, this pack is perfect for you.

### ✨ **Features:**
– Backports **25w08a spawn egg textures** to **all versions from Minecraft 1.14 snapshots up to 25w07a**.
– Faithful to the vanilla aesthetic.
– Perfect for those who want the latest textures on older versions.

Enjoy and let me know if you find any issues! 🥚🎨