1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
local http, env, storage
local C = minetest.get_color_escape_sequence
function furrybot.commands.rolldice(name)
furrybot.ping_message(name, "rolled a dice and got a " .. furrybot.random(1, 6, furrybot.colors.system) .. ".", furrybot.colors.system)
end
function furrybot.commands.coinflip(name)
furrybot.ping_message(name, "flipped a coin and got " .. furrybot.choose({"Heads", "Tails"}, furrybot.colors.system) .. ".", furrybot.colors.system)
end
function furrybot.commands.choose(name, ...)
local options = {...}
if #options > 1 then
furrybot.ping_message(name, "I choose " .. furrybot.choose(options, "", furrybot.colors.system) .. ".", furrybot.colors.system)
else
furrybot.error_message(name, "Not enough options")
end
end
return function(_http, _env, _storage)
http, env, storage = _http, _env, _storage
end
|