How to Install a Texture Pack on Your Minecraft Server
Prerequisites
- Administrator access to your game panel
- A texture pack in ZIP format
- Web hosting for your texture pack (Dropbox, Google Drive, or personal web server)
Step 1: Prepare Your Texture Pack
Make sure your texture pack is in ZIP format and compatible with your Minecraft server version.
Pack Structure
Your ZIP file must contain:
- A
pack.mcmetafile at the root - An
assetsfolder containing the textures
Example structure:
mypack.zip
├── pack.mcmeta
├── pack.png (optional)
└── assets/
└── minecraft/
└── textures/
Step 2: Host the Texture Pack Online
You need to host your pack on the Internet so players can download it automatically.
Hosting Options
Option A: Dropbox
- Upload your ZIP file to Dropbox
- Create a sharing link
- Replace
www.dropbox.comwithdl.dropboxusercontent.comin the URL - Replace
?dl=0with?dl=1at the end of the URL
Option B: Google Drive
- Upload your file to Google Drive
- Right-click on the file then "Get link"
- Make sure the link is public
- Transform the URL:
Before:
https://drive.google.com/file/d/FILE_ID/view
After:
https://drive.google.com/uc?export=download&id=FILE_ID
Option C: Personal Web Server
If you have web hosting, simply upload the file and note the direct URL.
Step 3: Configure the Server
Access the Configuration File
- Log in to your game panel
- Go to the Files or File Manager section
- Open the
server.propertiesfile
Modify the Settings
Find and modify the following lines in the server.properties file:
resource-pack=https://your-direct-url.com/mypack.zip
resource-pack-prompt=Would you like to install the server texture pack?
require-resource-pack=false
Parameter Explanations
- resource-pack: The direct download URL of your pack
- resource-pack-prompt: Message displayed to players (optional)
- require-resource-pack:
true= Players MUST accept the pack to playfalse= The pack is optional
Step 4: Restart the Server
- Save the
server.propertiesfile - Return to the panel homepage
- Restart your Minecraft server
The server will apply the new settings on startup.
Step 5: Verification
Player Side
When a player connects:
- A message appears offering to download the pack
- The player accepts or declines
- If accepted, the pack downloads and applies automatically
Troubleshooting
If the pack doesn't download:
- Verify that the URL is direct and accessible
- Test the URL in a browser
- Check that the ZIP file is not corrupted
- Make sure the pack is compatible with your version
Additional Tips
Force Pack Usage
If you want to require players to use the pack:
require-resource-pack=true
Players who decline will be automatically disconnected.
Change the Custom Message
You can customize the displayed message:
resource-pack-prompt=Welcome! Download our custom pack for a better experience!
Maximum Size
The recommended maximum size for a texture pack is 100 MB. Beyond that, some players may have difficulty downloading it.
Common Issues Resolution
The Pack Doesn't Download
- The URL must be a DIRECT download link
- Test the URL in your browser: it should download the file immediately
- Check that there's no intermediate page
"Failed to download resource pack" Error
- The ZIP file may be corrupted
- The hosting may not be accessible
- Verify that the URL starts with
https://
The Pack Applies but Textures Are Incorrect
- Check compatibility with your Minecraft version
- Make sure the pack structure is correct
- Verify the
pack.mcmetafile
Conclusion
Your texture pack is now configured! Players will receive it automatically when they connect. Don't forget to test with a secondary account to verify that everything works correctly.


















