View Poll Results: Is my game good or bad?

Voters
4. You may not vote on this poll
  • Good

    3 75.00%
  • Bad

    1 25.00%

Thread: My fighting game

  1. #1
    Attack hamster fuh's Avatar
    Join Date
    Dec 2002
    Posts
    176

    My fighting game

    Is my game good or bad?
    Stupid things pop singers say

    "I get to go to lots of overseas places, like Canada."
    - Britney Spears

    "I love what you've done with the place!"
    -Jessica Simpson upon meeting the Secretary of Interior during tour of the White House

  2. #2
    Registered User
    Join Date
    Dec 2002
    Posts
    5
    umm, its more like play once, then "Empty Recycle Bin"
    But other then that, its ok
    other then the face that defend will always give u HP!

  3. #3
    Registered User
    Join Date
    Sep 2002
    Posts
    1,640
    For someone programming for only a few weeks i'd say its good

  4. #4
    Attack hamster fuh's Avatar
    Join Date
    Dec 2002
    Posts
    176
    Whoops, that was an earlier version. Here is the real thing in which I solved defend giving HP all of the time.
    P.S.: There is a secret move.
    Last edited by fuh; 12-20-2002 at 07:17 PM.
    Stupid things pop singers say

    "I get to go to lots of overseas places, like Canada."
    - Britney Spears

    "I love what you've done with the place!"
    -Jessica Simpson upon meeting the Secretary of Interior during tour of the White House

  5. #5
    Registered User
    Join Date
    Sep 2002
    Posts
    1,640
    I sometimes still get health, keep up the work

  6. #6
    Attack hamster fuh's Avatar
    Join Date
    Dec 2002
    Posts
    176
    I mean for that to happen. (The health, I mean.) I'm working on colors.
    Stupid things pop singers say

    "I get to go to lots of overseas places, like Canada."
    - Britney Spears

    "I love what you've done with the place!"
    -Jessica Simpson upon meeting the Secretary of Interior during tour of the White House

  7. #7
    napKINfolk.com napkin111's Avatar
    Join Date
    Apr 2002
    Posts
    310
    Just a note on the winning conditions: your winning conditions are set only to check that the enemie's life is below 0, this creates a problem in that if you are also at 0 you should not win. I would suggest trying something like this:

    if(enemyhp<1 && hp>1) win();
    if(enemyhp<1 && hp<1) tie();
    if(enemyhp>1 && hp<1) lose();

    Other than that it is good for a beginner
    "The best way to get answers is to just keep working the problem, recognizing when you are stalled, and directing the search pattern.....Don’t just wait for The Right Thing to strike you – try everything you think might even be in the right direction, so you can collect clues about the nature of the problem."
    -John Carmack

  8. #8
    Just a Member ammar's Avatar
    Join Date
    Jun 2002
    Posts
    953
    Not bad, althoough I won't call it a game...but it's a nice try... try to make something more interresting next time.
    none...

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. 20q game problems
    By Nexus-ZERO in forum C Programming
    Replies: 24
    Last Post: 12-17-2008, 05:48 PM
  2. Need book to program game into multiplayer...
    By edomingox in forum Game Programming
    Replies: 3
    Last Post: 10-02-2008, 09:26 AM
  3. C# - Building a SCUMM-like game.. questions
    By Iyouboushi in forum Game Programming
    Replies: 0
    Last Post: 05-24-2008, 10:54 PM
  4. my upcoming UNO card game :)
    By Hussain Hani in forum Game Programming
    Replies: 5
    Last Post: 01-24-2008, 01:19 AM
  5. C Programming 2d Array Question
    By jeev2005 in forum C Programming
    Replies: 3
    Last Post: 04-26-2006, 03:18 PM