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