ZeroBridge is a small Discord Bridge for NilLoader. It currently only targets 1.4.7, though support could be added to later or earlier versions in the future.
ZeroBridge has been tested working in:
- Minecraft 1.4.7 NilLoader
- The modpack Rewind Upsilon
If you find issues with ZeroBridge in your instance, please file an issue.
Notably, ZeroBridge does not play nice with Forge. Issues have been fixed within tested environments, but if you need ZeroBridge support in a Forge environment, please file an issue.
- Download ZeroBridge
- Drop ZeroBridge in your
nilmods
folder - Write a config at
config/zerobridge.json
. If you do not add a config, ZeroBridge will create a config on first startup. Please terminate the instance if this happens. - Launch the game!
This is the default configuration for ZeroBridge. Please note that the template strings {USER}
and {MSG}
will be replaced if the template needs it. Bot settings are optional. If you use webhooks, requests will be sent to Visage to render avatars. Please be mindful of API use.
{
// Your Discord token
"token": "CHANGEME",
// Guild ID
"guild": "CHANGEME",
// Channel ID
"channel": "CHANGEME",
// Whether to use webhooks or not
"webhook": true,
// Strings to use when displaying events.
"strings": {
"server_start": "Server Started",
"server_stop": "Server Stopped",
"discord_message_template": "D [{USER}] {MSG}",
"player_join": "{USER} joined the game",
"player_leave": "{USER} left the game"
},
// Bot settings
"bot": {
"avatar_url": null,
"nickname": null
}
}