5 строки
135 B
Lua
5 строки
135 B
Lua
|
function GetProgress(s)
|
||
|
if string.match(s, '%swrote%s') ~= nil then return "100";
|
||
|
else return string.match(s, '(%d+)%%'); end;
|
||
|
end
|