bot-base/modules/test_lua/main.lua

12 lines
239 B
Lua
Raw Normal View History

main = {}
2019-06-05 03:37:50 +02:00
function main.on_message(await, client, message, ...)
print("I LOVE LUA")
print(message.content)
2019-06-05 03:37:50 +02:00
if message.author.bot == false then
await(message.channel.send("Tu n'es pas un bot"))
end
end
return main