Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local w, h = term.getSize()
- function exists(path)
- local file = assert(io.open(path, "r"))
- if file ~= nil then
- file:close()
- return true
- end
- end
- function fwrite(path, text)
- local file = assert(io.open(path, "w"))
- file:write(text)
- file:close()
- end
- local function writeFromTable(pah, t)
- local text = ""
- for _, line in pairs(t) do
- text = text..line.."\n"
- end
- fwrite(path, text)
- end
- function getTable(path)
- if fs.exists(path) then
- local file = io.open(path, "r")
- local lines = {}
- local i = 1
- local line = file:read("*l")
- while line ~= nil do
- lines[i] = line
- line = file:read("*l")
- i = i + 1
- end
- file:close()
- return lines
- end
- return {}
- end
- function replaceLine(path, n, text)
- local lines = getTable(path)
- lines[n] = text
- writeFromTable(path, lines)
- end
- function fappend(path, text)
- local file = assert(io.open(path, "a"))
- file:write(text.."\n")
- file:close()
- end
- local config = getTable("config/config")
- local count = tonumber(string.sub(config[1],string.find(config[1],":" )+2))
- local bg = tonumber(string.sub(config[2],string.find(config[2],":")+2))
- while true do
- count = count + 1
- replaceLine("config/config/", 2, "1 Local Count: " .. count)
- term.clear()
- term.setCursorPos((w/2),(((h/2))+1))
- print(count)
- print(color)
- sleep(2)
- term.setBackgroundColor(bg)
- if count == 10 then
- count = 0
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement