This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/8ball.lua

59 lines
1.1 KiB
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
local PLUGIN = {}
PLUGIN.doc = [[
2015-07-08 09:38:04 +02:00
/8ball
2015-07-03 00:15:52 +02:00
Magic 8-ball. Returns a standard 8ball message, unless called with "y/n", where it will return a less verbose answer.
]]
PLUGIN.triggers = {
2015-07-08 09:38:04 +02:00
'^/helix',
'^/8ball',
2015-07-03 00:15:52 +02:00
'y/n%p?$'
}
PLUGIN.answers = {
"It is certain.",
"It is decidedly so.",
"Without a doubt.",
"Yes, definitely.",
"You may rely on it.",
"As I see it, yes.",
"Most likely.",
"Outlook: good.",
"Yes.",
"Signs point to yes.",
"Reply hazy try again.",
"Ask again later.",
"Better not tell you now.",
"Cannot predict now.",
"Concentrate and ask again.",
"Don't count on it.",
"My reply is no.",
"My sources say no.",
"Outlook: not so good.",
"Very doubtful.",
"There is a time and place for everything, but not now."
}
PLUGIN.yesno = {'Absolutely.', 'In your dreams.', 'Yes.', 'No.'}
2015-07-03 00:15:52 +02:00
function PLUGIN.action(msg)
math.randomseed(os.time())
if msg.reply_to_message then
msg = msg.reply_to_message
end
2015-07-03 00:15:52 +02:00
if string.match(string.lower(msg.text), 'y/n') then
message = PLUGIN.yesno[math.random(#PLUGIN.yesno)]
else
message = PLUGIN.answers[math.random(#PLUGIN.answers)]
end
send_msg(msg, message)
end
return PLUGIN