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

15 lines
295 B
Lua

do
function run(msg, matches)
local answers = {'1','2','3','4','5','6'}
return answers[math.random(#answers)]
end
return {
description = "Würfel eine Zahl zwischen 1 bis 6",
usage = {"#würfel"},
patterns = {"^#würfel"},
run = run
}
end
--by Akamaru [https://ponywave.de]