Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

MCADAMS

Members
  • Posts

    1013
  • Joined

  • Last visited

    Never

Posts posted by MCADAMS

  1. Assuming I'm allowed to vote on this considering I'm apart of the team now, I'd go with the 'retro' graphics. They're basically what got me and a lot of others interested in the game. Considering that's basically all you had to show for upon getting positive reception, changing that might change peoples interest in the game.

    I like both styles, but I have to say I like the retro one more.
  2. I'm learning programming for the first time with Python, trying to make a random number game. I have this:

    ```
    #Self-written 'Guess the Number' game
    import random

    guessesTaken = 0

    print('Hello! What is your name?')
    myName = input()

    number = random.randint(1, 20)
    print('Ok, ' + myName + '. I am thinking of a number between 1 and 20\. Guess.')

    while guessesTaken < 6:
        print('Take a guess.')
        guess = input()
        guess = int(guess)

        guessesTaken = guessesTaken + 1

        if guess < number:
              print('Too low!')

        if guess > number:
              print('Too high!')

        if guess == number:
            break

    if guess == number:
        guessesTaken = str(guessesTaken)
        print('Congratulations! You guessed the number in ' + guessesTaken + ' guesses!'

    if guess != number:
        number = str(number)
        print('Sorry, the number we were looking for was ' + number)

    ```
    When I run it I get "invalid syntax" and it points to the colon after
    ```
    if guess != number:

    ```
    I've double checked the code I'm referencing and they're identical it seems. Any help?
  3. Changing the tree trunk will make it look a lot better. Wouldn't kill if you had a couple of weeds or something to spray about the grass, too.

    Secrets of Grindea's style can give you an idea of what I mean.
    ![](http://www.secretsofgrindea.com/wp-content/uploads/2011/10/2.jpg)
×
×
  • Create New...