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:
27
example.config.yaml
Normal file
27
example.config.yaml
Normal 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"
|
||||
Reference in New Issue
Block a user