Results 1 to 10 of 10

Thread: What you think of my games?

  1. #1
    GuitarMan
    Guest

    Question What you think of my games?

    Here are two games i have writen recently, pls have a look and tell me what you think. Oh, and pls remember these are only my 2nd and 3rd games so be gentle.

    The games are:

    Steroids (Asteroids) - really more like space invaders but good fun and writen in one day!

    SFake (Snake) - I've been working on this over the last few weeks on and off it looks quite good and is great fun.

  2. #2
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Oregon
    Posts
    962
    Neither of them ran on my computer. Steroids gave me a runtime error (can not create auto redraw object.), and snake was just black. I didn't spend any time looking at the code though. With snake, do you make sure that you don't move too fast?

  3. #3
    Addicted Member drewski's Avatar
    Join Date
    Feb 2000
    Location
    WA
    Posts
    242
    i had pretty much the same results, but the snake game didn't show up all black for me. it showed some of those gray blocks and an apple. Then it said i died.



    there's my 2 cents worth


    Drewski
    I see said the blind man as he spat into the wind.

    It all comes back to me now!

    A.D.T.'s VB

  4. #4
    Fanatic Member
    Join Date
    Oct 2000
    Location
    Oregon
    Posts
    962
    Those were the same results that I had, I just ran out of time to finish the post.

  5. #5
    Addicted Member drewski's Avatar
    Join Date
    Feb 2000
    Location
    WA
    Posts
    242
    oh. gotch ya.

    so mr. banjo man , do you have the solution to these problems or are you going to make us find em?
    I see said the blind man as he spat into the wind.

    It all comes back to me now!

    A.D.T.'s VB

  6. #6
    Good Ol' Platypus Sastraxi's Avatar
    Join Date
    Jan 2000
    Location
    Ontario, Canada
    Posts
    5,134
    Snake prob: set the form to vbMaximized before running it.
    I didn't try the other game.
    All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
    (Just a heads-up)

  7. #7
    Member
    Join Date
    Aug 2001
    Posts
    51

    Thumbs up

    Both games worked fine for me

    What did I think of them? Well they are basic kinds of games, which is hardly surprising (this is VB, and this you are a one-man game team?), but they work properly. Good work so far, definitely more than I've ever tried to do, now just work on them some more, modify snake to have multiple levels, and put menus/ability to restart into it. Maybe make snake read the level out of files, and make it so there can be different looking walls, then you can have a level editor. Oh, and a high-score file (and scores), then you could put them in a windows entertainment package type thingy.

    I haven't looked at the code yet, I will later though.

  8. #8
    Junior Member
    Join Date
    Apr 2001
    Location
    Belgium
    Posts
    28
    the both "games" are very slow on my pc....and where is the the snake???

  9. #9
    Member
    Join Date
    Aug 2001
    Posts
    51

    Question bug found in snake? or not?

    How to make Snake work: Resize the form a little larger (1/2 larger again maybe)

    I've had a look at snake again, and I might have found a bug. I was playing, and it seemed that when i turned sometimes it had an incorrect death. I just tried to duplicate it though and I couldn't so maybe I just suck at snake.

    Anyway, I had a look at the code. It's pretty good, and I've learnt a few tricks from it (mainly how to use bitblt). I am assuming that seeing as you posted it open source, comments on improvements to the code are welcome? I've got one suggestion, just a simple one to simplify code in PlaceApples:

    VB Code:
    1. Private Sub PlaceApples()
    2. Randomize Timer
    3. Dim Applecoordinates As Coordinate
    4. Do
    5.     With Applecoordinates
    6.         .X = Rnd * 15
    7.         .Y = Rnd * 15
    8.     End With
    9.     If CellContents(Applecoordinates.X, Applecoordinates.Y) = 0 Then
    10.         If Rnd < 0.1 Then
    11.             CellContents(Applecoordinates.X, Applecoordinates.Y) = goldenApple
    12.         Else
    13.             CellContents(Applecoordinates.X, Applecoordinates.Y) = Apple
    14.         End If
    15.         Exit Do
    16.     End If
    17. Loop
    18. End Sub

    Oh, and also now that I've read the code for snake I see that you've already made it read the level layout from a file. Well, it's as they say, great minds think alike
    Last edited by Herbatic; Aug 9th, 2001 at 05:45 AM.

  10. #10
    Frenzied Member Jotaf98's Avatar
    Join Date
    Jun 2000
    Location
    I'm not gonna give you my IP address! Ok... Portugal, South-Western Europe, 3rd rock from the sun (our star is easy to find, a 47 Ursae Majoris in the Milky Way :p )
    Posts
    1,457
    I downloaded the new version and Steroids doesn't seem to work. It gives me a "Can't create Autoredraw image" error, but I'm sure I have enough memory (RamBooster says I have 58444kb available ). I tried setting everything to Autoredraw=False, but now it draws diagonal lines starting in the bottom of the screen, to the left part of the screen!
    Code:
    Temp = Me.GetIQ()
    'Error 9: Overflow
    'DON'T PANIC! :eek:

    To learn how to use realistic effects in your games like fire, rain, snow and magic effects, read my article on particles systems here.


    Jotaf's Theories!
    "Cats land on their feet. Toast lands peanut butter side down. A cat with toast strapped to its back will hover above the ground in a state of quantum indecision."

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width