「モジュール:選り抜き記事」の版間の差分

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
タグ: 手動差し戻し
2行目: 2行目:
function p.randomnum(frame)
function p.randomnum(frame)
math.randomseed(os.time())
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])
return math.random(frame.args[1])
end
end
return p
return p

2年1月20日 (W) 21:17時点における版

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

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