This was an attempt at having an aditional layer ontop of tes3mp, however this proved to be unreliable. So this was replaced with a client-server model, that allows you to move more advanced logic to golang, And by default serves as a replacement for TES3MP_DiscordRelay
- Mentioning Channel names and emotes will be glitched/formatted incorrectly, This is known and a fix is being looked for.
- Recreate TES3MP_DiscordRelay with bug fixes and Discord role support.
- Added a web endpoint for accessing server status, such as current player count and players.
- Show CurrentPlayers/MaxPlayers as Discord bot status.
- An IRC Server, I recommend my personal fork of oragono found here
- Datamanager for TES3MP
- *cjson (Included in tes3mp-scripts.zip)
- Download the latest build with accompanying tes3mp-scripts.zip
- Extract and copy the custom and lib folders to
server
folder. - Add the following to your server/customScripts.lua file, making sure DataManager is above the following
IrcBridge = require("custom/IrcBridge/IrcBridge")
goTES3MP = require("custom/goTES3MP/main")
- Download and place the correct
goTES3MP
binary for your platform - Run the binary to generate the default configuration file(
config.yaml
)
version: "3"
services:
irc-server:
image: mrflutters/oragono:tes3mp-fork
ports:
- 172.17.0.1:6667:6667 #Plaintext
restart: unless-stopped
volumes:
- irc_data:/ircd
- ./oragono/ircd.yaml:/ircd/ircd.yaml
- ./oragono/fullchain.pem:/ircd/fullchain.pem
- ./oragono/privkey.pem:/ircd/privkey.pem
networks:
- relay-net
container_name: irc-server
gotes3mp:
image: 'ghcr.io/hotarublaze/gotes3mp:v0.3.4'
volumes:
- './logs:/app/logs'
- './config.yaml:/app/config.yaml'
networks:
- relay-net
networks:
relay-net:
volumes:
irc_data: