A server resource pack lets your Minecraft server ask players to download a pack when they join.

Set The Resource Pack URL

  1. Upload the resource pack zip somewhere publicly accessible. The link must be a direct download link.
  2. Stop the server.
  3. Open Files in the control panel, then edit server.properties.
  4. Set resource-pack= to the direct download URL:
    resource-pack=https://example.com/resource-pack.zip
  5. Set resource-pack-sha1= to the SHA-1 hash of the zip file if you have it. This helps Minecraft check that players downloaded the correct file:
    resource-pack-sha1=0123456789abcdef0123456789abcdef01234567
  6. If players must use the pack to join, set:
    require-resource-pack=true
  7. Save the file, then start the server.

You can also set resource-pack-prompt= if you want players to see a short message before accepting the pack.

Minecraft server.properties resource pack settings

 

Generate The SHA-1 Hash

The SHA-1 value is generated from the resource pack zip file. Use the file exactly as players will download it.

On Windows, open PowerShell in the folder with the zip file and run:

Get-FileHash .\resource-pack.zip -Algorithm SHA1

On Linux or macOS, open Terminal in the folder with the zip file and run:

shasum -a 1 resource-pack.zip

Copy the hash value into resource-pack-sha1=.

If players cannot download the pack, open the URL in a private browser window and make sure it downloads the zip directly.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Colour Codes for Minecraft Multiplayer and Vanilla

This article lists all of the codes you can use with many plugins in Minecraft using Spigot or...

What is the difference between Fabric, Quilt and Forge in Minecraft Modding

Exploring the Distinctions Between Fabric and Forge When diving into the exciting world of...

What is a Grindstone and how is it used?

In this guide, we will teach you what the Grindstone in Minecraft does, and how to use it...

How to Convert Java and Bedrock Edition Worlds

In this guide, we’ll be teaching you how to convert your world from a Java Edition world to a...

How to install Pixelmon on your Minecraft Server

Pixelmon is installed as a Minecraft modpack, so the server and anyone joining it need to use the...