Mods & Plugins
Resource packs
Server-enforced resource packs.
You can ask players to download a resource pack when they join your server.
How it works
Minecraft expects a public HTTP(S) URL to a .zip. The server tells the client to download it; the client does. The server itself does not host the pack.
Setup
- Upload your
.zipsomewhere with a stable public URL — Dropbox, GitHub releases, your own static host. Avoid Google Drive (the URLs aren't stable). - Get the SHA-1 hash of the file. (
sha1sum pack.zipon Linux/Mac, or any online SHA-1 calculator.) - Edit
server.properties:
resource-pack=https://example.com/pack.zip
resource-pack-sha1=<the sha1 hash>
require-resource-pack=true
resource-pack-prompt=Welcome to our server!- Restart the server.
Tips
- Keep packs under 50 MB. Larger packs frustrate players on slow connections.
- Always set the SHA-1 — it lets the client cache the pack instead of re-downloading every join.
require-resource-pack=truekicks players who decline. Set it tofalseif you want the pack to be optional.
Didn't find what you needed? Open a support ticket. During the closed beta you'll get a real human reply, usually within a few hours.