Advertisement
SirBaconBitz

Minechem Effect Display

Feb 6th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. while true do
  2. shell.run("delete table")
  3. shell.run("pastebin get QAXBCvmv table")
  4. shell.run("table")
  5. term.clear()
  6. term.setCursorPos(1,1)
  7. term.write("Enter precise name of chemical: ")
  8. input = read()
  9. for k, v in pairs(drugs) do
  10. if input == k then
  11. term.clear()
  12. term.setCursorPos(1,1)
  13. term.write("Effects of your chosen drug: ")
  14. term.setCursorPos(1,2)
  15. term.write(v)
  16. term.setCursorPos(1,4)
  17. term.write("Press any key to continue")
  18. os.pullEvent("key")
  19. end
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement