17 lines
387 B
Lua
Executable File
17 lines
387 B
Lua
Executable File
-- Actually the simplest plugin ever!
|
|
|
|
local ping = {}
|
|
|
|
local utilities = require('utilities')
|
|
local bindings = require('bindings')
|
|
|
|
function ping:init()
|
|
ping.triggers = utilities.triggers(self.info.username):t('ping'):t('annyong').table
|
|
end
|
|
|
|
function ping:action(msg)
|
|
bindings.sendMessage(self, msg.chat.id, msg.text_lower:match('^/ping') and 'Pong!' or 'Annyong.')
|
|
end
|
|
|
|
return ping
|