Advertisement
Machuga14

ComputerCraft Turtle QED Documenter

Nov 26th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. -- This file helps me document the QED machine in Skyblock FTB infinity Evolved
  2.  
  3. local qed = peripheral.wrap("front")
  4.  
  5. local h = fs.open("QED_Documentation", "w")
  6.  
  7. function printHelp(data)
  8.     print(data)
  9.     h.writeLine(data)
  10. end
  11.  
  12. for name in pairs(qed) do
  13.     printHelp("Documentation For Method: ")
  14.     printHelp(tostring(name))
  15.     printHelp(qed.doc(tostring(name)))
  16.     printHelp("\r\n\r\n")
  17. end
  18.  
  19. h.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement