Advertisement
LeviM

OSspine

Jan 8th, 2015
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.22 KB | None | 0 0
  1. --Open Rednet Modems
  2. function openRednet()
  3.   if peripheral.getType("left") == "modem" then
  4.     rednet.open("left")
  5.   end
  6.   if peripheral.getType("right") == "modem" then
  7.     rednet.open("right")
  8.   end
  9.   if peripheral.getType("top") == "modem" then
  10.     rednet.open("top")
  11.   end
  12.   if peripheral.getType("bottom") == "modem" then
  13.     rednet.open("bottom")
  14.   end
  15.   if peripheral.getType("back") == "modem" then
  16.     rednet.open("back")
  17.   end
  18.   if peripheral.getType("front") == "modem" then
  19.     rednet.open("front")
  20.   end
  21. end
  22.  
  23. --Settings
  24. function readSettings()
  25.   lines = {}
  26.   local h = fs.open("/settings", "r" )
  27.   for line in h.readLine do
  28.     lines[#lines+1] = line
  29.   end
  30.  
  31.   h.close()
  32.   return lines
  33. end
  34.  
  35. function changeSettings(settingN, change)
  36.   lines[settingN] = change
  37.  
  38.   local h = fs.open( "/settings", "w" )
  39.   for i = 1, #lines do
  40.     h.writeLine( lines[i] )
  41.   end
  42.   h.close()
  43. end
  44.  
  45. --Install Applications
  46. function appInst(name,code)
  47.   local page = http.get("http://pastebin.com/raw.php?i="..code)
  48.   if page == nil then
  49.     return false
  50.   else
  51.     local h = fs.open("/Apps/"..name.."/"..name, "w")
  52.     h.writeLine(page.readAll())
  53.     h.close()
  54.     return true
  55.   end
  56.   page.close()
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement