-
Notifications
You must be signed in to change notification settings - Fork 292
Description
Hello!
I have a special problem with connecting that gameserver's built-in IRC. I've tried multiple selfhosted bridges with same results (look like all have a common problem).
Here is my error log:
2023-03-09T06:47:07.989Z error: Received error event from IRC {
prefix: 'example.net6667',
server: 'example.net6667',
command: 'err_needmoreparams',
rawCommand: '461',
commandType: 'error',
args: [ 'exampleuser', 'USER', 'Not enough parameters' ]
}
And my config:
{
"nickname": "exampleuser",
"server": "example.net",
"port": "6667",
"discordToken": "******************************************************",
"autoSendCommands": [
["PRIVMSG", "NickServ", "IDENTIFY mypassword"],
["MODE", "test", "+x"],
["AUTH", "test", "mypassword"]
],
"channelMapping": {
"#d2": "#diablo",
"1082601232339828796": "#diablo"
}
}
Thank you!