ResourcePack
ResourcePack-Structure
The ResourcePack has changed from what some might be used to.
This is in an effort to make importing third-party ResourcePacks a lot easier.
Below is an example of the new structure.
For reference; Oraxen/pack/models
-> Nexo/pack/assets/minecraft/models
Goal is to let users merge resourcepacks in via either ZIPs or directories, outside of the normal assets folder.
This would dynamically merge in any conflicting files, like a paper.json or sounds.json, instead of migrating it to oraxen-configs to be generated.
Meaning that pack-import instructions on your end now boils down to:
Put my_pack.zip
inside Nexo/pack/external_packs
Obfuscation
Nexo has a built in way to "obfuscate" the content of your resource-pack.
This is done by randomizing all file-names in an attempt to make it very hard and annoying to try and take stuff from it for pirates.
It comes with three modes, NONE
, SIMPLE
, FULL
NONE - Self-explanatory, does not obfuscate pack in any way
SIMPLE - Obfuscates filenames only
namespace:model/path.json
-> namespace:bba2d60b-8e3e-4051-9734-fef92766777f
FULL - Obfuscates namespace & filename;
namespace:model/path.json
-> c491303e-ba1e-4037-a59d-62b5fdfb6bb8:bba2d60b-8e3e-4051-9734-fef92766777f
PackSquash-Integration
Nexo allows you to run PackSquash on the resourcepack without manually reuploading the pack.
Simply download the latest PackSquash build and drop it in plugins/Nexo/pack/packsquash
.
Then drop your packsquash.toml in the same directory, an example can be found here.
If you want it in another location, you can specify a path for the binary & settings
To enable Nexo's PackSquash-integration simply enable Pack.generation.packsquash.enabled
in settings.yml. Then when the pack generates, it will start the PackSquash process. If it suceeds you should see somehting like the below.
If it failed you should see some detailed info about which file and a reason for it. If Nexo's debug-mode is enabled, it will output info about all successful files aswell
PackServer
Nexo has 2 types of ways to upload & dispatch the ResourcePack it generates
POLYMATH - A dedicated server hosted by Nexo-Team that your server uploads the pack to
This server is currently hosted in Germany
SELFHOST - Server-Instance hosted on your machine. Requires you to configure the public_address
and ensure a given port is open.
LOBFILE - Server hosted by LobFile, needs a api_key
in settings.yml
The API is also set up so that one could extend the NexoPackServer-Interface
and create ones own.
Cross-Server/Proxy ResourcePacks
Nexo by default has no support for handling resourcepacks across a velocity/bungee network. This is however not inherently needed, as the player will keep the resourcepack when swapping servers, unless the new server sends a new resourcepack.
Assuming you have a Server A, Server B & Server C:
Set Pack.server to NONE for Server B & Server C. That way the player joins Server A and loads the resourcepack. When they then swap to Server B or C, the resourcepack from Server A will not be unloaded. The downside here is that if the player joins Server A from B or C, they will get sent the resourcepack again and load it
Use a plugin like OneTimePack on your Velocity/Bungee server. These plugins check the ResourcePack-request and compare them. If the pack is the same it will skip it. If taking this approach make sure to either disable obfuscation for your NexoPack, or enable caching and manually copy over the .deobfCacheResourcepack folder to all servers
Importing
Nexo lets you import Third-Party ResourcePacks in several ways.
The recommended one is shown above, by adding a directory or .zip to `plugins/Nexo/pack/external_packs`
There is also Plugin.import.from_location
in settings.yml, letting you specify a directory/zip relative to your plugins folder
There is also Plugin.import.from_url
in settings.yml, letting you specify any url that Nexo will download a directory/zip from and include
Last updated