Ok, so I have my program but I'm getting an "expected an indent block" and i don't know where it is I believe I have it right but I'm very confused.
##Cave fuction
def cave():
    global lvl
    global mhp
    global exp
    while True:
        print("Who whould you like to talk to. (Emily(1), James(2), Paco(3)")
        talk = int(input("Who to talk to: "))
        ptint(" ")               
        if talk == 1:
            #put storie function here
        elif talk == 2:
            #put train function here
        elif talk == 3:
            print("Your level is", lvl, "you have", mhp, "and have", exp, "EXP")
        else:
            amsterdam = 7 #filler
        print("Anthing else needed(y/n)")
        ant = input("Anthing: ")
        if ant == n:
            break
        else:
            mexico = 19 #filler
 
     
     
     
     
     
     
     
    