Pretty much full re-write, switched from node-irc to irc-framework, fixed some bugs, imrpoved some stuff, changed config from XML to yaml.

This commit is contained in:
2025-09-19 22:50:55 +02:00
parent 00fcac9a5a
commit 311e66cce6
8 changed files with 289 additions and 133 deletions

27
example.config.yaml Normal file
View File

@@ -0,0 +1,27 @@
discord:
token: "YOUR_DISCORD_TOKEN" # Insert your bot or user token here.
# Debugging options
debug: true # raw IRC + connection info
logForward: true # Discord -> IRC message forwarding logs
# Bridges
bridges:
- discordChannelId: "123456789012345678"
irc:
server: "irc.example.org"
port: 6697
tls: true
nick: "MyBot"
password: null # or "yourpassword" if required
channel: "#test"
# Adding more then one bridge
- discordChannelId: "987654321098765432"
irc:
server: "irc.other.net"
port: 6667
tls: false
nick: "OtherBot"
password: null
channel: "#another"