7 lines
191 B
Lua
7 lines
191 B
Lua
|
|
math.randomseed(os.time() + (jarvis.context.time.minute or 0) * 1000)
|
||
|
|
local r = math.random(1, 2)
|
||
|
|
if r == 1 then
|
||
|
|
return jarvis.cmd.ok("Орёл!")
|
||
|
|
end
|
||
|
|
return jarvis.cmd.ok("Решка!")
|