Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Select functionality with arrowkeys, enter to continue.\n")
- while true do
- print(" [ Bone Meal ] Natural grow ")
- local p1 = os.pullEvent("key")
- if p1 == 205 then
- term.setCursorPos(1,2)
- term.clearLine()
- term.setCursorPos(1,2)
- print(" Bone Meal [ Natural Grow ]")
- local param1 = os.pullEvent("key")
- if param1 == 203 then
- term.setCursorPos(1,2)
- term.clearLine()
- term.setCursorPos(1,2)
- print(" [ Bone Meal ] Natural grow ")
- elseif param1 == 28 then
- break
- end
- elseif p1 == 28 then
- meal = meal + 1
- break
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement