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/pluginsold/yolo.lua

11 lines
234 B
Lua
Raw Normal View History

2015-04-14 20:21:23 +02:00
function run(msg, matches)
2015-04-20 18:52:25 +02:00
return 'Hä YOLO?'
2015-04-14 20:21:23 +02:00
end
return {
description = "Sendet euch ein Hä YOLO?",
2015-05-22 17:01:33 +02:00
usage = {'yolo','Yolo','YOLO'},
patterns = {'^yolo$','^Yolo$','^YOLO$'},
2015-04-14 20:21:23 +02:00
run = run
}
2015-05-22 17:01:33 +02:00
--by Akamaru [https://ponywave.de]