Advertisement
Guest User

count

a guest
Jul 31st, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.43 KB | None | 0 0
  1. local w, h = term.getSize()
  2.  
  3. function exists(path)
  4.     local file = assert(io.open(path, "r"))
  5.     if file ~= nil then
  6.         file:close()
  7.         return true
  8.     end
  9. end
  10. function fwrite(path, text)
  11.     local file = assert(io.open(path, "w"))
  12.     file:write(text)
  13.     file:close()
  14. end
  15.  
  16.  
  17. local function writeFromTable(pah, t)
  18.   local text = ""
  19.   for _, line in pairs(t) do
  20.       text = text..line.."\n"
  21.   end
  22.   fwrite(path, text)
  23. end
  24.  
  25. function getTable(path)
  26. if fs.exists(path) then
  27.   local file = io.open(path, "r")
  28.   local lines = {}
  29.   local i = 1
  30.   local line = file:read("*l")
  31.   while line ~= nil do
  32.    lines[i] = line
  33.    line = file:read("*l")
  34.    i = i + 1
  35.   end
  36.   file:close()
  37.   return lines
  38. end
  39. return {}
  40. end
  41.  
  42. function replaceLine(path, n, text)
  43.   local lines = getTable(path)
  44.   lines[n] = text
  45.   writeFromTable(path, lines)
  46. end
  47.  
  48. function fappend(path, text)
  49.   local file = assert(io.open(path, "a"))
  50.   file:write(text.."\n")
  51.   file:close()
  52. end
  53.  
  54. local config = getTable("config/config")
  55. local count = tonumber(string.sub(config[1],string.find(config[1],":" )+2))
  56. local bg = tonumber(string.sub(config[2],string.find(config[2],":")+2))
  57.  
  58.    
  59.  
  60.  
  61. while true do
  62.     count = count + 1
  63.     replaceLine("config/config/", 2, "1 Local Count: " .. count)
  64.     term.clear()
  65.     term.setCursorPos((w/2),(((h/2))+1))
  66.     print(count)
  67.     print(color)
  68.     sleep(2)
  69.     term.setBackgroundColor(bg)
  70.     if count == 10 then
  71.         count = 0
  72.     end
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement