ArkScript + Discord = Arkscord
Module used to interact with the Discord API using ArkScript language.
(import arkscord.client)
(let token "TOKEN-BOT-DISCORD")
(let bot (client:createBot token))
(bot.listenChannelsIds [
"<CHANNEL-ID>"
])
(bot.onMessage (fun (message) {
(print message.author.name ": " message.content) }))
(bot.run)