Merge with other plugins
Running Nexo, ItemsAdder, Oraxen or anything else with its own resource pack? Minecraft only lets one pack be active, so you must merge them into a single pack.
The tool everyone uses for this is ResourcePackManager (RSPM). It's free, it takes packs from every plugin you have, merges them, and hands out the combined result.
Why this works and doesn't just break
RSPM doesn't only overwrite files — for the kinds of file that plugins fight over, it genuinely merges the contents. Item model definitions, sounds, fonts and language files from NxEquipements and from Nexo end up in the same file, side by side, both working.
1. Install ResourcePackManager
Drop its jar in plugins/ and restart. It'll find the packs from plugins it knows about on its own.
2. Build in the editor, but don't confirm
Deploy from the editor as usual with /nxe applyedit <uuid>, but don't click the chat button and don't run /nxe confirm. Just let the prompt expire.
You skip that step because RSPM is going to hand out the pack now, not NxEquipements. The pack file is still written to disk either way.
3. Copy the pack into RSPM's mixer folder
Take this file:
plugins/NxEquipement/output/resourcepack.zip
and copy it into:
plugins/ResourcePackManager/mixer/
Rename it to something recognisable, like NxEquipements.zip, so the next step is clearer.
4. Add it to the priority list
Open plugins/ResourcePackManager/config.yml and find priorityOrder. Add your file name to it:
priorityOrder:
- NxEquipements.zip
- Nexo
- ItemsAdder
- Oraxen
Top of the list wins. If two packs ever disagree about the same file, whichever is higher up gets its way. Anything you don't list still gets merged in, just with the lowest priority.
5. Reload
/rspm reload
The merged pack is written to:
plugins/ResourcePackManager/output/ResourcePackManager_RSP.zip
Rejoin the server. You should be offered one pack and see custom content from every plugin at once.
RSPM commands worth knowing
| Command | What it does |
|---|---|
| /rspm reload | Re-merges and re-hosts. Run this after every NxEquipements rebuild. |
| /rspm status | Shows what it merged and how it's hosting. |
| /rspm setup | Guided first-time setup. |
| /rspm itemsadder configure | Sets ItemsAdder up correctly for merging. |
Every time you rebuild
- Build and deploy in the editor (skip the chat button).
- Copy
output/resourcepack.zipintomixer/again, replacing the old one. - /rspm reload
If something still looks wrong after merging
- One plugin's items broke — move it above NxEquipements in
priorityOrderand reload. - Nothing changed at all — check you copied the new zip into
mixer/, then /rspm reload. - Players get a failed download — that's a hosting problem, not a merging one. See Host the pack yourself.