2023年政策修订增补工作正在进行中,欢迎参与!
Module:Sandbox/Senyucishi/Signature
跳转到导航
跳转到搜索
local p = {}--[[
感谢U:一位史蒂夫的定制(
--]]
local function notempty(s)
return (s and s ~= "")
end
function p.main(frame)
local items = {
{
"谨上"
},
{
"谨启"
},
{
"手启"
},
{
"谨白"
},
{
"拜启"
},
{
"上言"
},
{
"拜言"
},
{
"谨"
},
{
"启"
},
{
"如是说"
}
}
math.randomseed(tostring(os.time()):reverse():sub(1, 10))
local rand = math.random(#items)
return '<span style="color:#49BFBF;">' .. items[rand][1] .. "</span>"
end
return p