Craft4Cube

CraftBIOS 1.0.0

Mar 1st, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. term.setBackgroundColor(colours.black)
  2. term.clear()
  3. term.setCursorPos(1,1)  
  4. print("CraftBIOS")
  5. print("")
  6. os.sleep(2)
  7. print("Searching for Devices")
  8. print("")
  9. local periList = peripheral.getNames()
  10.  
  11. os.sleep(0.5)
  12. term.setCursorPos(1,5)
  13. for i = 1, #periList do
  14.     print("Found \""..peripheral.getType(periList[i]).."\" @ "..periList[i])
  15.     print("")
  16.     os.sleep(0.5)
  17. end
  18.  
  19. print("Starting CraftOS...")
  20. os.sleep(2)
Advertisement
Add Comment
Please, Sign In to add comment