Advertisement
Guest User

Untitled

a guest
Mar 1st, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.34 KB | None | 0 0
  1. os.unloadAPI("apple")
  2. os.loadAPI("apple")
  3. apple.reset()
  4.  
  5. print("Thanks for playing guess that number!")
  6. local file = fs.open("best", "r")
  7. local best = file.readLine()
  8. file.close()
  9.  
  10. if best then
  11.     print("The current best is: " .. best)
  12. else
  13.     local best = 100
  14.     local file = fs.open("best", "w")
  15.     file.write(best)
  16.     print(best)
  17.     file.close()
  18. end
  19. print("Would you like to use a custom range?")
  20. print("(If you say no it will be 1-100)")
  21.  
  22. local answer = read()
  23. local tries = 0
  24.  
  25. while true do
  26.     if answer == "yes" then
  27.         print("Sorry this feature is a work in progress,")
  28.         print("Please enter minimum then maximum")
  29.         local min = read()
  30.         local max = read()
  31.         break
  32.     elseif answer == "no" then
  33.         break
  34.     else
  35.         print("Pease say 'yes' or 'no'")
  36.         answer = read()
  37.     end
  38. end
  39.  
  40. local correct = math.random(1, 100)
  41. while true do
  42.     local guess = read()
  43.     while not guess do
  44.         guess = read()
  45.     end
  46.     guess = tonumber(guess)
  47.     tries = tries+1
  48.     local best = 100
  49.     if guess > correct then
  50.             print("Too high!")
  51.     elseif guess < correct then
  52.             print("Too low!")
  53.     elseif guess == correct then
  54.         print("juuussst riiight")
  55.         if tries < best then
  56.             best = tries
  57.             print(best)
  58.             local file = fs.open("best", "w")
  59.             file.write(best)
  60.             file.close()
  61.         end
  62.         break
  63.     else
  64.         print("Sorry, there was a problem.")
  65.         break
  66.     end
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement