Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function rsToggle()
- if redstone.getOutput("back") == false then
- redstone.setOutput("back", true)
- else
- redstone.setOutput("back", false)
- end
- end
- function rsOn1()
- redstone,setOutput("back", true)
- sleep (5)
- redstone.setOutput("back", false)
- print("lol")
- end
- local stuff1 = 1
- local xp2 = "y"
- term.clear()
- term.setCursorPos(1,1)
- print("what do you want me to do?")
- term.setCursorPos(1,3)
- print("toggle water = tw")
- print("xp farm = xp")
- term.setCursorPos(1,2)
- stuff1 = read()
- term.setCursorPos(1,5)
- if stuff1 == "tw" then
- rsToggle()
- print("water toggled")
- elseif stuff1 == "xp" then
- rsOn1()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement