You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 {
First of all You should try to run your command without any authentication with a spare unregistered user.
I think the problem will be at the autoSendCommands because You are trying to authenticate with NickServ and with AUTH.
And your channel maping is not good either. "yourdiscordchannelid": "#ircchannel" is the correct way, but with "d2": "#diablo" it wont work I think. The second one is okay.
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!
The text was updated successfully, but these errors were encountered: