Files
Discord-userbot-to-irc/example.config.yaml

32 lines
826 B
YAML

# WARNING YAML is very sensitive so make sure everything is formatted like in this example configuration file :D
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"
useRelayMsg: false
# Adding more then one bridge
- discordChannelId: "987654321098765432"
irc:
server: "irc.other.net"
port: 6667
tls: false
nick: "OtherBot"
password: null
channel: "#another"
useRelayMsg: true