Hi there,
I have seen that there are public games in which people put their channel to be able to follow their games. So far so good. I want my bot to join the channel so I can follow the games. This is my configuration.
The bot enters the channel, and when they announce the game on the channel, the bot does not join the game, it does nothing. I don't understand what I'm doing wrong.
I've tried to leave the games parameter blank:
This way, when they announce the game in chat, the bot only puts the number of the game, for example if they announce Baalrun-15, the bot tries to join game 15, without the Baalrun- in front.
Could you help me?
Thank you.
I have seen that there are public games in which people put their channel to be able to follow their games. So far so good. I want my bot to join the channel so I can follow the games. This is my configuration.
Code:
var StarterConfig = {
JoinChannel: "op namechannel", // Name of the channel to join
FirstJoinMessage: "", // Message to say when first joining a channel, usually ".login"
ChatActionsDelay: 2, // Seconds to wait in lobby before entering a channel
// D2BotChannel settings
Games: ["namegame-"], // List of games to look for. Example: Games: ["some baal-", "chaos run-"],
Passwords: [""], // List of game passwords. Each array in Games array should have a matching element in Passwords. Use "" for blank pw.
JoinDelay: 5, // Seconds to wait between announcement and clicking join
FriendListQuery: 0, // Seconds between "/f l" retries. 0 = disable
I've tried to leave the games parameter blank:
Code:
Games: [""], // List of games to look for. Example: Games: ["some baal-", "chaos run-"],
Could you help me?
Thank you.