I'm trying to make a little text based game, but I am having trouble with a while loop. I have experimented for many hours now! I would much appreciate it if you could kindly help me out. Thank-you for reading :D
I basically want it so that the user has to press a button before the timer runs out, and if he doesn't do it in time then the bear eats him. :')
Here is my code:
import time
cash = 0
def dead():
    print("You are dead!")
    main()
    points = 0
def adventure_1(inventory, cash):
    points = 0
    time1 = 2
    if time1 < 3:
        time.sleep(1)
        time1 -= 1
        bear = input("A bear is near... Hide Quickly! Enter: (C) to CLIMB a Tree")
        #Ran out of time death
        if time1 == 0:
            dead()
        #Climb away from bear
        elif bear == 'c' or 'C':
            print("Your safe from the bear")
            points += 1
            print("You recieved +2 points")#Recieve points
            print("You now have : ",points,"points")
            adventure_2()#continue to adventure 2
        #Invalid input death
        elif bear != 's' or 'S':
            dead()
def adventure_2(inventory, cash):
    points = 2
    time = 5
 
     
    