initial commie bastard

This commit is contained in:
dupie
2015-07-02 18:15:52 -04:00
parent d65ed5e63f
commit 236c8bebdb
37 changed files with 2202 additions and 1 deletions

32
plugins/bible.lua Normal file
View File

@ -0,0 +1,32 @@
local PLUGIN = {}
PLUGIN.doc = [[
!bible <verse>
Returns a verse from the bible, King James Version. Use a standard or abbreviated reference (John 3:16, Jn3:16).
http://biblia.com
]]
PLUGIN.triggers = {
'^!bible',
'^!b '
}
function PLUGIN.action(msg)
local input = get_input(msg.text)
if not input then
return send_msg(msg, PLUGIN.doc)
end
local url = 'http://api.biblia.com/v1/bible/content/KJV.txt?key=' .. config.BIBLIA_API_KEY .. '&passage=' .. URL.escape(input)
local message, res = HTTP.request(url)
if res ~= 200 then
message = 'Connection error.'
end
send_msg(msg, message)
end
return PLUGIN