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-2/plugins/fortune.lua
2015-07-02 18:15:52 -04:00

23 lines
334 B
Lua

local PLUGIN = {}
PLUGIN.doc = [[
!fortune
Get a random fortune from the UNIX fortune program.
]]
PLUGIN.triggers = {
'^!fortune',
'^!f$'
}
function PLUGIN.action(msg)
local output = io.popen('fortune')
message = ''
for l in output:lines() do
message = message .. l .. '\n'
end
send_msg(msg, message)
end
return PLUGIN