Advertisement
Guest User

PrepareQuarry

a guest
Apr 1st, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.76 KB | None | 0 0
  1. write("Please enter desired quarry length: ")
  2. n = read()
  3. if n > 0 and n <= 64 then
  4.   a = read()
  5.   write("Please enter desired quarry width: ")
  6.   if read() > 0 and read() <= 64 then
  7.     b = read()
  8.     write("Confirm: Quarry of " .. a .. "x" .. b .." will be prepared. Enter 'y' to confirm or 'n' to abort: ")
  9.     if read() == 'y' then
  10.       print("Understood. Commencing quarry preparation...")
  11.       sleep(2)
  12.     elseif read() == 'n' then
  13.       print("Operation aborted. Terminating program...")
  14.       sleep(2)
  15.     else
  16.       print("Invalid character. Terminating program...")
  17.       sleep(2)
  18.     end
  19.   else
  20.     print("Invalid character. Terminating program...")
  21.     sleep(2)
  22.   end
  23. else
  24.   print("Invalid character. Terminating program...")
  25.   sleep(2)
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement