Advertisement
Guest User

startup

a guest
Apr 7th, 2015
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. args = { ... }
  2.  
  3. if fs.exists("config/start.cfg") then
  4.   k = fs.open("config/start.cfg", 'w')
  5.   k.write("drives")
  6.   k.close()
  7. end
  8.  
  9. if table.getn(args) == 1 then
  10.   if (args[1] == "colours") or (args[1] == "drives") then
  11.     f = fs.open("config/start.cfg", 'w')
  12.     f.write(args[1])
  13.     f.close()
  14.   end
  15. end
  16.  
  17. g = fs.open("config/start.cfg", 'r')
  18. program = g.readAll()
  19. print(program)
  20. g.close()
  21.  
  22. shell.run(program)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement