Advertisement
Guest User

Untitled

a guest
Jan 27th, 2013
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. print("Select functionality with arrowkeys, enter to continue.\n")
  2. while true do
  3.     print(" [ Bone Meal ]   Natural grow ")
  4.     local p1 = os.pullEvent("key")
  5.     if p1 == 205 then
  6.         term.setCursorPos(1,2)
  7.         term.clearLine()
  8.         term.setCursorPos(1,2)
  9.         print("   Bone Meal   [ Natural Grow ]")
  10.         local param1 = os.pullEvent("key")
  11.         if param1 == 203 then
  12.             term.setCursorPos(1,2)
  13.             term.clearLine()
  14.             term.setCursorPos(1,2)
  15.             print(" [ Bone Meal ]   Natural grow ")
  16.         elseif param1 == 28 then
  17.             break
  18.         end
  19.     elseif p1 == 28 then
  20.         meal = meal + 1
  21.         break
  22.     end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement