new plugin yolo.lua

This commit is contained in:
Akamaru 2015-08-03 17:16:08 +02:00
parent d2ec6b090d
commit 4cdca32231
1 changed files with 15 additions and 0 deletions

15
plugins/yolo.lua Normal file
View File

@ -0,0 +1,15 @@
function run(msg, matches)
local yolos = {'You Only Live Online','You Only Live Once',
'You Only Love Oppai','You Only Lag Online'
}
return yolos[math.random(#yolos)]
end
return {
description = "",
usage = {"/yolo"},
patterns = {"^/[Yy][Oo][Ll][Oo]$"},
run = run
}
--by Akamaru [https://ponywave.de]