El bot responde según lo que escriba en el grupo, estos son los dos plugins que me gustaría mezclar:
Este
Código
do function run(msg, matches) return "Hello, " .. matches[1] end return { description = "Says hello to someone", usage = "say hello to [name]", patterns = { "^say hello to (.*)$", "^Say hello to (.*)$" }, run = run } end
Con este otro
Código
do function run(msg, matches) return "Hola, " .. matches[1] end return { description = "Says hello to someone", usage = "say hello to [name]", patterns = { "^dile hola a (.*)$", "^dile hola a (.*)$" }, run = run } end
He probado con esto pero no funciona:
Código
do function run(msg, matches, flag) if flag=true then return "Hello, " .. matches[1] else return "Hola, " .. matches[1] end return { description = "Says hello to someone", usage = "say hello to [name]", patterns = { "^say hello to (.*)$", "^Say hello to (.*)$", "^dile hola a (.*)$", "^Dile hola a (.*)$" }, run = run } end
Aquí esta el código completo por si es necesario:
https://github.com/yagop/telegram-bot
Saludos y gracias de antemano.