- 551
- 441
- Версия MoonLoader
- .026-beta
Хочу пронумировать строки в диалоге но они остаются неизменными
Код:
function numeracia(text)
line = 0
for S in text:gmatch("[^\n]+") do
line = line + 1
local replace = ''..line..'. '..S..''
print(replace)
text = string.gsub(text, S, replace)
end
return text
end