Hey all,
This is the Node.js version of my tutorial on building Discord chatbot's (the other version is in Python). I'm watching the comments here and at codementor, so shout if you have any questions!
https://www.codementor.io/garethdwyer/building-a-discord-bot-with-node-js-and-repl-it-mm46r1u8y
@Albxyiscool just check if the input starts with an exclamation mark or however you want to run your commands. e.g.
if(message.charAt(0) == '!') { // logic for your command }
Hey all,
This is the Node.js version of my tutorial on building Discord chatbot's (the other version is in Python). I'm watching the comments here and at codementor, so shout if you have any questions!
https://www.codementor.io/garethdwyer/building-a-discord-bot-with-node-js-and-repl-it-mm46r1u8y
@Albxyiscool just check if the input starts with an exclamation mark or however you want to run your commands. e.g.