Skip to content

4surix/arkscord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Arkscord

ArkScript + Discord = Arkscord
Module servant à interagir avec l'API Discord en langage ArkScript.

Aperçu

(let token "TOKEN-BOT-DISCORD")
(let bot (create-bot token))
(bot.listen-channels-ids [
    "513284461555744768"
])
(bot.on-message (fun (message) {
    (print message.author.name ": " message.content)
}))
(bot.run)