Advertisement
Guest User

waterXP

a guest
Feb 11th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. function rsToggle()
  2.  if redstone.getOutput("back") == false then
  3.   redstone.setOutput("back", true)
  4.  else
  5.   redstone.setOutput("back", false)
  6.  end
  7. end
  8.  
  9. function rsOn1()
  10.  redstone,setOutput("back", true)
  11.  sleep (5)
  12.  redstone.setOutput("back", false)
  13.  print("lol")
  14. end
  15.  
  16. local stuff1 = 1
  17. local xp2 = "y"
  18.  
  19. term.clear()
  20. term.setCursorPos(1,1)
  21. print("what do you want me to do?")
  22. term.setCursorPos(1,3)
  23. print("toggle water = tw")
  24. print("xp farm = xp")
  25.  
  26. term.setCursorPos(1,2)
  27. stuff1 = read()
  28.  
  29. term.setCursorPos(1,5)
  30.  
  31. if stuff1 == "tw" then
  32.  rsToggle()
  33.  print("water toggled")
  34. elseif stuff1 == "xp" then
  35.   rsOn1()
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement