c484023791
+ Games + GDrive + Gfycat + Googl + GPS + Hackernews + Hello + Instagram + IP_info + GMaps so angepasst, dass es wie Location funktioniert - Bugfixes, Pattern-Fixes, etc.
14 lines
265 B
Lua
14 lines
265 B
Lua
local hello = {}
|
|
|
|
local utilities = require('otouto.utilities')
|
|
|
|
hello.triggers = {
|
|
"^[Ss][Aa][Gg] [Hh][Aa][Ll][Ll][Oo] [Zz][Uu] (.*)$"
|
|
}
|
|
|
|
function hello:action(msg, config, matches)
|
|
utilities.send_reply(self, msg, 'Hallo, '..matches[1]..'!')
|
|
end
|
|
|
|
return hello
|