725261fcf7
Relicense to AGPLv3, with consent of contributors. bindings.lua completely rewritten. Shift to multipart-post. Updated readme. New plugins: bing.lua, channel.lua. Removed plugins: floodcontrol.lua, librefm.lua. luarun.lua: Will now serialize returned tables. Aliased "/return" to "/lua return".
17 lines
375 B
Lua
Executable File
17 lines
375 B
Lua
Executable File
-- Actually the simplest plugin ever!
|
|
|
|
local ping = {}
|
|
|
|
local utilities = require('utilities')
|
|
|
|
function ping:init()
|
|
ping.triggers = utilities.triggers(self.info.username):t('ping'):t('annyong').table
|
|
end
|
|
|
|
function ping:action(msg)
|
|
local output = msg.text_lower:match('^/ping') and 'Pong!' or 'Annyong.'
|
|
utilities.send_message(self, msg.chat.id, output)
|
|
end
|
|
|
|
return ping
|