Minecraft Hosting4 min read
Force a Server Resource Pack on Your Players
Push a texture pack from your server. SHA-1, hosting, force-load, and gotchas.
What You Need
- A finished resource pack as a .zip (not a folder)
- A direct-download URL on a fast host (Dropbox raw, GitHub release asset, CDN, not Google Drive share links, they redirect)
- The SHA-1 of the zip
Get The SHA-1
Windows PowerShell:
Get-FileHash -Algorithm SHA1 my-pack.zipmacOS / Linux:
shasum -a 1 my-pack.zipCopy the lowercase hex string.
Configure server.properties
resource-pack=https://cdn.endercloud.in/packs/my-pack.zip
resource-pack-sha1=8a9f... (lowercase, full string)
require-resource-pack=true
resource-pack-prompt=Endercloud Survival uses a custom pack.Restart the server.
What Each Field Does
| Field | Behavior |
|---|---|
resource-pack | Direct download URL the client fetches. |
resource-pack-sha1 | Integrity check + caching. Without it, clients re-download every login. |
require-resource-pack | Disconnects players who decline. |
resource-pack-prompt | Custom message in the accept/decline dialog. |
Common Failures
-
Invalid sha1warning on startup ā the hash doesn't match. Recompute and update. - Players see "Failed to download" ā URL is not a direct download (e.g. Google Drive share page).
- Pack appears but textures missing ā the zip's root must contain
pack.mcmetaandassets/, not be wrapped in an extra folder.
Pack Format Numbers
pack.mcmeta requires a pack_format:
{ "pack": { "pack_format": 22, "description": "Endercloud Pack" } }- 1.20.5+ ā 32+
- 1.20.2-1.20.4 ā 22
- 1.19.4 ā 13
- 1.19 ā 9
- 1.18 ā 8
Use the right number for your MC version or the client refuses to load it.
Need More Help?
Pack works locally but not on the server? Post the server console + a screenshot of the rejection dialog in Discord.
Was this helpful?
Your feedback helps us write better guides.
Related Articles
More from Minecraft Hosting.
How to Start Your First Minecraft Server
From empty panel to a joinable world in under two minutes.
3 min read
How to Install Plugins on Your Server
Bukkit, Spigot, and Paper plugins, installed and loaded the right way.
3 min read
How to Install a Modpack (Forge / Fabric)
CurseForge and Modrinth modpacks, installed straight from the panel.
4 min read
Still need help?
Our team is on Discord around the clock. Real humans, real answers.