モジュール:選り抜き記事

提供:WikiWiki
2年1月20日 (W) 21:16時点における (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:選り抜き記事/doc に作成できます

local p={}
function p.randomnum(frame)
	math.randomseed(os.time())
	return math.random(frame.args[1])
end
function p.randomnumm(frame)
	math.randomseed(tonumber(os.time())+tonumber(os.date()))
	return math.random(frame.args[1])
end
return p