Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.unloadAPI("apple")
- os.loadAPI("apple")
- apple.reset()
- print("Thanks for playing guess that number!")
- local file = fs.open("best", "r")
- local best = file.readLine()
- file.close()
- if best then
- print("The current best is: " .. best)
- else
- local best = 100
- local file = fs.open("best", "w")
- file.write(best)
- print(best)
- file.close()
- end
- print("Would you like to use a custom range?")
- print("(If you say no it will be 1-100)")
- local answer = read()
- local tries = 0
- while true do
- if answer == "yes" then
- print("Sorry this feature is a work in progress,")
- print("Please enter minimum then maximum")
- local min = read()
- local max = read()
- break
- elseif answer == "no" then
- break
- else
- print("Pease say 'yes' or 'no'")
- answer = read()
- end
- end
- local correct = math.random(1, 100)
- while true do
- local guess = read()
- while not guess do
- guess = read()
- end
- guess = tonumber(guess)
- tries = tries+1
- local best = 100
- if guess > correct then
- print("Too high!")
- elseif guess < correct then
- print("Too low!")
- elseif guess == correct then
- print("juuussst riiight")
- if tries < best then
- best = tries
- print(best)
- local file = fs.open("best", "w")
- file.write(best)
- file.close()
- end
- break
- else
- print("Sorry, there was a problem.")
- break
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement