Bot not posting message
See original GitHub issuemybot.on("message", function(message) {
if(message.content === "!Live") {
getJSON("https://api.twitch.tv/kraken/streams/Jonathan_x64?callback=?", function(c) {
if (c.stream == null) {
//ofline
mybot.reply(message, "she is currently not live");
} else {
//online
mybot.reply(message, "she is currently live");
}
}),
}
});
also wont long anything in the console when using console.log
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Discord bot not sending messages : r/Discord_Bots - Reddit
Hello, I am a beginner to using discord. js and cannot figure out why my bot isn't replying with a message whenever I...
Read more >Messages not sending with discord bot - Stack Overflow
The bot is online and on the server I want it to, with admin permissions as well. I am sure the intents are...
Read more >Sending messages - Slack API
Transform monologues into conversations, and conversations into workflows, by learning how apps can publish messages.
Read more >Chat bot not posting unless its a moderator
It was working fine in testing, but no longer appears to be posting messages. It only posts at roughly once a minute to...
Read more >FAQ - Carl-bot Documentation
The bot tries to detect when you're reading the chat and not spam you with unnecessary pings. If you wish to see if...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
can you close the issue ty