پودمان:Imamatpedia: تفاوت میان نسخهها
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
(۴ نسخهٔ میانیِ ایجادشده توسط همین کاربر نشان داده نشد) | |||
خط ۱: | خط ۱: | ||
local fgetFAlist = require('Module:Imamatpedia/Selected').getFAlist | local fgetFAlist = require('Module:Imamatpedia/Selected').getFAlist | ||
local | local a = {} | ||
function a.rnumber( frame ) | |||
d = {} | |||
if (frame.args[1] =='fa' or frame.args[1] =='Selected' ) then | |||
d = fgetFAlist() | |||
return #d | |||
end | |||
end | |||
function a.rlist( frame ) | |||
if (frame.args[1] =='fa' or frame.args[1] =='Selected' ) then | |||
d = fgetFAlist() | |||
end | |||
math.randomseed( os.time() ) | |||
x = math.random(1,#d) | |||
repeat | |||
x1 = math.random(1,#d) | |||
until x1 ~= x | |||
repeat | |||
x2 = math.random(1,#d) | |||
until (x2 ~= x and x2 ~= x1) | |||
return "[["..d[x1].."]] – [["..d[x].."]] – [["..d[x2].."]]" | |||
end | end | ||
return | ---- | ||
---- | |||
return a |
نسخهٔ کنونی تا ۵ مارس ۲۰۲۴، ساعت ۱۳:۱۱
توضیحات این پودمان میتواند در پودمان:Imamatpedia/توضیحات قرار گیرد.
local fgetFAlist = require('Module:Imamatpedia/Selected').getFAlist
local a = {}
function a.rnumber( frame )
d = {}
if (frame.args[1] =='fa' or frame.args[1] =='Selected' ) then
d = fgetFAlist()
return #d
end
end
function a.rlist( frame )
if (frame.args[1] =='fa' or frame.args[1] =='Selected' ) then
d = fgetFAlist()
end
math.randomseed( os.time() )
x = math.random(1,#d)
repeat
x1 = math.random(1,#d)
until x1 ~= x
repeat
x2 = math.random(1,#d)
until (x2 ~= x and x2 ~= x1)
return "[["..d[x1].."]] – [["..d[x].."]] – [["..d[x2].."]]"
end
----
----
return a