Using the following config for 2 characters on the same server. For some reason, on the second character when I load MQ2Discord in game it give me an error that channels aren't set up even though I copy/pasted info from character one. Any ideas? Did I miss anything?
# This is your bot's token, see guide here for how to get one and it to your server:
#
https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token
token: asdfasdfasdfasdfasdfasdf.asdfas.asdfasdfasdfasdfasdfasdfasd
# A list of users that are allowed to send commands
# To get your user id, right click it in a channel in discord and select Copy ID
# You will need to enable developer mode via Settings -> Appearance
user_ids:
- 123456789456123789
characters:
# Individual character settings
server_Character1:
# A list of channels for this character to join
# Name is ignored, it's just for your reference
- name: server_Character1
# To get a channel's id, right click it and select Copy ID
id: 123456789456123789
# A chat message (anything that appears in your chat window or your MQ2 window) will be sent to this channel if it:
# * Matches anything in the allowed or notify section, AND
# * Doesn't match anything in the blocked section
allowed:
# A list of things to match on, in MQ2 event format
# A "#*#" (wildcard) will automatically be added to the start and end of whatever you put here, unless you have one at either end
# e.g. since this has #*# at the end, it won't be added at the start. This means it will only match a line beginning with [MQ2], i.e. a /echo
- "#*#MQ2SpawnMaster::SPAWN#*#"
- "#*#MQ2Say#*#"
- "#*#tells you#*#"
- "#*#tells the guild#*#"
- "#*#tells general#*#"
blocked:
# See tells channel for example usage
- "#*#s familiar tells you,#*#"
- "#*#corpse tells you,#*#"
- "#*#MQ2Paranoid#*#"
notify:
# See tells channel for example usage
- "[AlertMaster]#*#"
# See deaths channel for example usage
prefix: ""
# True or false to enable sending commands from discord
# To send a command, just type it in discord as you would in game e.g. /echo hello from discord
allow_commands: true
# After sending a command from discord, all in game messages will be sent to the channel for this many milliseconds, ignoring whatever allow/block filters you have
# Allows you to see the result of your commands
show_command_response: 2000
# Next character(s), as above.
server_Character2:
- name: server_Character2
id: 123456789456123789
allowed:
- "#*#MQ2SpawnMaster::SPAWN#*#"
- "#*#MQ2Say#*#"
- "#*#tells you#*#"
- "#*#tells the guild#*#"
- "#*#tells general#*#"
blocked:
- "#*#s familiar tells you,#*#"
- "#*#corpse tells you,#*#"
- "#*#MQ2Paranoid#*#"
notify:
- "[AlertMaster]#*#"
prefix: ""
allow_commands: true
show_command_response: 2000