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/otouto/plugins/dice.lua

55 lines
1.4 KiB
Lua
Raw Normal View History

local dice = {}
2016-06-07 06:31:34 +02:00
local utilities = require('otouto.utilities')
dice.command = 'roll <nDr>'
function dice:init(config)
dice.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('roll', true).table
dice.doc = config.cmd_pat .. [[roll <nDr>
Returns a set of dice rolls, where n is the number of rolls and r is the range. If only a range is given, returns only one roll.]]
end
2015-07-03 00:15:52 +02:00
function dice:action(msg)
2015-07-03 00:15:52 +02:00
local input = utilities.input(msg.text_lower)
2015-07-03 00:15:52 +02:00
if not input then
utilities.send_message(self, msg.chat.id, dice.doc, true, msg.message_id, true)
return
2015-07-03 00:15:52 +02:00
end
local count, range
if input:match('^[%d]+d[%d]+$') then
count, range = input:match('([%d]+)d([%d]+)')
elseif input:match('^d?[%d]+$') then
count = 1
range = input:match('^d?([%d]+)$')
2015-07-03 00:15:52 +02:00
else
utilities.send_message(self, msg.chat.id, dice.doc, true, msg.message_id, true)
return
2015-07-03 00:15:52 +02:00
end
count = tonumber(count)
range = tonumber(range)
2015-07-03 00:15:52 +02:00
if range < 2 then
utilities.send_reply(self, msg, 'The minimum range is 2.')
return
2015-07-03 00:15:52 +02:00
end
if range > 1000 or count > 1000 then
utilities.send_reply(self, msg, 'The maximum range and count are 1000.')
return
2015-07-03 00:15:52 +02:00
end
local output = '*' .. count .. 'd' .. range .. '*\n`'
for _ = 1, count do
output = output .. math.random(range) .. '\t'
2015-07-03 00:15:52 +02:00
end
output = output .. '`'
2015-07-03 00:15:52 +02:00
utilities.send_message(self, msg.chat.id, output, true, msg.message_id, true)
2015-07-03 00:15:52 +02:00
end
return dice