s3ptum

lolmer1

Apr 17th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. --[[
  2. Programmer: Lolmer
  3. Last update: 2014-02-28
  4. Pastebin: http://pastebin.com/ZTMzRLez
  5. GitHub: https://github.com/sandalle/minecraft_bigreactor_control
  6.  
  7. Description:
  8. This program controls a Big Reactors nuclear reactor
  9. in Minecraft with a Computercraft computer, using Computercraft's
  10. own wired modem connected to the reactors computer control port.
  11.  
  12. Save this file as "startup" on your computer for it to auto-start on Computer boot.
  13. To easily get this file into your Computercraft Computer, run the following after right-clicking on your Computercraft computer (includes prompts).
  14. > rm startup
  15. > lua
  16. lua> shell.run("pastebin", "get", "ZTMzRLez", "startup")
  17.  
  18. Requirements:
  19. Advanced Monitor size is X: 29, Y: 12 with a 3x2 size
  20. Computer or Advanced Computer
  21. Modems (not wireless) connecting each of the Computer to both the Advanced Monitor and Reactor Computer Port.
  22.  
  23. This script is available from:
  24. http://pastebin.com/ZTMzRLez
  25. https://github.com/sandalle/minecraft_bigreactor_control
  26. And is used to control the following script:
  27. http://pastebin.com/fguScPBQ
  28. Other reactor control which I based my program on:
  29. http://pastebin.com/aMAu4X5J (ScatmanJohn)
  30. http://pastebin.com/HjUVNDau (version ScatmanJohn based his on)
  31. A simpler Big Reactor control is available from:
  32. http://pastebin.com/tFkhQLYn (IronClaymore)
  33.  
  34. Advanced Monitor size is X: 29, Y: 12 with a 3x2 size
  35. ]]--
  36. os.setComputerLabel("ReactorControl")
  37.  
  38. -- Remove any prior, possibly old, versions of "reactorcontrol"
  39. shell.run("rm", "reactorcontrol")
  40. -- Download http://pastebin.com/fguScPBQ and name "reactorcontrol"
  41. shell.run("pastebin", "get", "fguScPBQ", "reactorcontrol")
  42.  
  43. shell.run("reactorcontrol")
Add Comment
Please, Sign In to add comment