Python Forum
Errors in simple text adventure game?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Errors in simple text adventure game?
#3
(Apr-06-2018, 05:52 PM)nilamo Wrote: Could you copy/paste the entire traceback?

*edit* nevermind, I found it. Here's your snippet:
Quote:
            try:
                if choiceSword == 1:
                    prompt4()
                if choiceSword == 2:
                    print("You attacked too slow and he stabbed you!")
                    youLose()       
        elif choice == 2:

A try without a matching except is meaningless, so it's assumed that your elif is part of the if choiceSword == 2: block, and, in THAT case, the elif isn't indented properly. Adding an except clause should fix the error.

So basically, if I move the except on line 108 up a bit and then fix the indentation I should be good?
Reply


Messages In This Thread
Errors in simple text adventure game? - by ecloev - Apr-06-2018, 05:12 PM
RE: Errors in simple text adventure game? - by ecloev - Apr-07-2018, 07:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  loop adventure game ilikedofs 1 1,747 May-26-2021, 12:43 AM
Last Post: bowlofred
  A text-based game [SOLVED] Gameri1 6 3,962 Apr-20-2021, 02:26 PM
Last Post: buran
  how to make a hotkey for text adventure game myn2018 2 2,009 Jan-06-2021, 10:39 PM
Last Post: myn2018
  Winning/Losing Message Error in Text based Game kdr87 2 3,025 Dec-14-2020, 12:25 AM
Last Post: bowlofred
  Choose your own adventure game noahc2004 2 2,612 Jun-26-2020, 02:06 PM
Last Post: DPaul
  Simple cards game blackpanda 3 4,284 Apr-10-2020, 08:46 PM
Last Post: TomToad
  Simple text to binary python script gmills13 2 2,853 Feb-04-2020, 08:44 PM
Last Post: snippsat
  How best to format text in a simple text file? Pedroski55 2 3,234 Jun-14-2019, 06:07 AM
Last Post: noisefloor
  Looking for simple help - text file stripping DerekK 1 2,166 Mar-08-2019, 10:06 AM
Last Post: Larz60+
  Waiting in a text adventure StickyLizard 1 46,159 Jan-19-2019, 10:45 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020