请登录
玩家共建非官方战双WIKI,做最还原游戏内UI体验的WIKI!    
战双WIKI反馈留言板 · WIKI编辑教程 · BWIKI收藏到桌面的方法说明

全站通知:

模块:插入图片

来自战双帕弥什WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

此模块的文档可以在模块:插入图片/doc创建

local p = {}
 
function p.print(frame)
    local args = frame.args
    local res=''
    local i=args[2]
	for j=1, i, 1 do
	    res =res.."[[File:"..args[1]..j..".png|800px|class=img-kk|link=]]\n"
	end
    return res
end
 
return p