This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/yolo.lua
2015-04-14 20:21:23 +02:00

16 lines
213 B
Lua

function run(msg, matches)
if matches[1] == "yolo" then
return 'Hä YOLO?'
end
end
return {
description = "Sendet euch ein Hä YOLO?",
usage = "/yolo",
patterns = {"^/(yolo)"},
run = run
}