리버티게임(개발), 모두가 만들어가는 자유로운 게임
백괴게임>Gustmd7410님의 2018년 7월 11일 (수) 21:57 판
둘러보기로 이동
검색으로 이동
return {
loop = function(frame)
local text = frame.args[1]
local finish = frame.args[2]
local times = frame.args[3] or 1
local from = frame.args[4] or 1
local value = ''
for index = from, finish, times do
value = value + text:rep('{{|index|}}', index)
end
return value
end
}