Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8934669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:50:32+00:00 2026-06-15T09:50:32+00:00

So I’m trying to get this engine to work, and I did, but it’s

  • 0

So I’m trying to get this engine to work, and I did, but it’s broken my program. (from LPTHW)

I am basically trying to access a function where it gets an input from the user 11 times, if the user fails to guess the correct input, they die (in game) but my fix for sending the prompts from the engine to the functions, seemed to break the function where I get an input 11 times and just uses the same guess for all 11 inputs.

Here is the main engine

globvar = ' '

class Game(object):

    def __init__(self, start):
        self.quips = [
            "You died.  You kinda suck at this.",
            "Your mom would be proud. If she were smarter.",
            "Such a luser.",
            "I have a small puppy that's better at this."
        ]
        self.start = start


    def play(self):
        # next_room_name is taken from init argument start
        next_room_name = self.start

        while True:
            global globvar
            print "\n--------"
            # set variable room to get function from next_room_name
            room = getattr(self, next_room_name)

            print room.__doc__

            if room == self.laser_weapon_armory:
                prompt = raw_input("[keypad]> ")

            elif room == self.escape_pod:
                prompt = raw_input("[pod #]> ")
            else:
                prompt = raw_input("> ")
        globvar = prompt     
            # unpacks function from next_room_name into room
            next_room_name = room()

And here is the function im trying to get to work

def laser_weapon_armory(self):
        """
        You do a dive roll into the Weapon Armory, crouch and scan the room
        for more Gothons that might be hiding.  It's dead quiet, too quiet.
        You stand up and run to the far side of the room and find the
        neutron bomb in its container.  There's a keypad lock on the box
        and you need the code to get the bomb out.  If you get the code
        wrong 10 times then the lock closes forever and you can't
        get the bomb.  The code is 3 digits.
        """
        code = "%d%d%d" % (randint(1,9), randint(1,9), randint(1,9))

        guess = globvar
        guesses = 0

        while guess != code and guesses < 10:
            print "BZZZZEDDD!"
            guesses += 1
            guess = globvar

        if guess == code:
            print "The container clicks open and the seal breaks, letting gas out."
            print "You grab the neutron bomb and run as fast as you can to the"
            print "bridge where you must place it in the right spot."
            return 'the_bridge'
        else:
            print "The lock buzzes one last time and then you hear a sickening"
            print "melting sound as the mechanism is fused together."
            print "You decide to sit there, and finally the Gothons blow up the"
            print "ship from their ship and you die."
            return 'death'

And here is the output I get

--------

        You do a dive roll into the Weapon Armory, crouch and scan the room
        for more Gothons that might be hiding.  It's dead quiet, too quiet.
        You stand up and run to the far side of the room and find the
        neutron bomb in its container.  There's a keypad lock on the box
        and you need the code to get the bomb out.  If you get the code
        wrong 10 times then the lock closes forever and you can't
        get the bomb.  The code is 3 digits.

[keypad]> 124
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
BZZZZEDDD!
The lock buzzes one last time and then you hear a sickening
melting sound as the mechanism is fused together.
You decide to sit there, and finally the Gothons blow up the
ship from their ship and you die.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:50:33+00:00Added an answer on June 15, 2026 at 9:50 am

    is this the kinda thing you’re looking for? your question doesn’t seem to be very clear

    while guess != code and guesses < 10:
            guess = raw_input("BZZZZEDDD! - try again?")
            guesses += 1
            guess = ''
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
Basically, what I'm trying to create is a page of div tags, each has
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
This could be a duplicate question, but I have no idea what search terms
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Does anyone know how can I replace this 2 symbol below from the string
I want to construct a data frame in an Rcpp function, but when I
I am trying to understand how to use SyndicationItem to display feed which is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.