Jump to content

atari2600land

+AtariAge Subscriber
  • Content Count

    18,165
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by atari2600land


  1. I have more than one duplicate console. Anyway, if you want any of the stuff pictured, just PM me. All you need to pay is shipping. If you buy a console, it should be about $10 or so, less if you just buy a cartridge(s) with book(s). The books go with the cartridges and contain the questions. The cartridge stores all the answers to the books' questions, otherwise you would have no questions to answer.

    myquizwizstuff.jpg.2ba537fae6cce8da5aa0b10004c4023b.jpg

    cartridges pictured: Greatest Sports Legends, Ripley's Believe It or Not, Team NFL and Soap Operas.

     


  2. Lotsa stuff added.

    • made it so there's more enemies than just lettuce. Corn and eggplant have also been added.
    • I also added in the chicken nugget. If you touch it, you get an extra life. The nugget only appears if you have <9 lives.
    • fixed a few bugs about shooting in the middle of enemies dying and other stuff.

    herts9.zip

    • Like 2

  3. Try my game out.

    The score will increase when you shoot. I will change this to once you hit an enemy the score will increase when I put some enemies in. I took some time to compose and add in music and a shooting sound effect.

    The enemies will be heads of lettuce shooting peas at you. In the original game it was milkshakes, but I don't think I can draw a milkshake with just one color.

    herts5.zip


  4. The code a couple posts ago has been simplified:

        if cont.up THEN burgery=burgery-1
        if cont.down THEN burgery=burgery+1
        if cont.right THEN burgerx=burgerx+1
        if cont.left THEN burgerx=burgerx-1
    
    

     

    I was thinking for some reason the left CTRL and SHIFT buttons in jzintv controlled player 1 when in fact they were controlling player 2. The right CTRL and SHIFT buttons and arrow buttons are controlling player 1.

     


  5. I had an idea last night before I went to bed, which was show the lives counter only when the player died. This freed up a sprite which I could use for a enemy missile.

     

    I would like to at the least display the score because it will be an indicator of how far along in the level you are. I finally got the disc and button working in tandem, but in order to do it, I had to make this ugly code:

        f=cont
        if f=DISC_NORTH THEN burgery=burgery-1
        if f=$A4 THEN burgery=burgery-1
        
        if f=DISC_NORTH_EAST THEN burgery=burgery-1 : burgerx=burgerx+1
        if f=$B6 THEN burgery=burgery-1 : burgerx=burgerx+1
        if f=DISC_NORTH_WEST THEN burgery=burgery-1 : burgerx=burgerx-1
        if f=$BC THEN burgery=burgery-1 : burgerx=burgerx-1
    
        if f=DISC_SOUTH THEN burgery=burgery+1
        if f=$A1 THEN burgery=burgery+1
        
        if f=DISC_SOUTH_EAST THEN burgery=burgery+1 : burgerx=burgerx+1
        if f=$B3 THEN burgery=burgery+1 : burgerx=burgerx+1    
        
        if f=DISC_SOUTH_WEST THEN burgery=burgery+1 : burgerx=burgerx-1
        if f=$B9 THEN burgery=burgery+1 : burgerx=burgerx-1
        
        if f=DISC_WEST THEN burgerx=burgerx-1
        if f=$A8 THEN burgerx=burgerx-1    
        
        if f=DISC_EAST THEN burgerx=burgerx+1
        if f=$A2 THEN burgerx=burgerx+1   
    
    

     


  6. Here's the setup of the sprites

    sprite 0 - burger (bun)

    sprite 1 - burger (patty)

    sprites 2 - fry

    sprites 3-5 - score

    sprite 6 - (eventually) enemy

    sprite 7 - (eventually) life counter

     

    It took a horribly long time to figure out how to make the sprites numbers. I was going to have sprite 7 be the enemy's missile, but I decided that showing the amount of lives is more important than having enemy missiles.

    herts3.gif.e0aa2eb7f455723e05ae204cebd19f35.gif


  7. More work on Hamburgers. I made the burger sprite. It took a few hours for me to understand the scrolling code, but even though I wasn't able to put in a lovely MODE 1 picture and make it scroll, I was able to do this:

    herts2.gif.ad708fecba6300a774d14f940740329e.gif

    The burger sprite has the same colors as the burger picture on the title screen minus the ketchup (curse the inability to make mulitcolored sprites on the INTV. The burger takes up 2 sprites.)

    Just now realized I need to make music for the game! It's already at 5kb!

    • Like 3
×
×
  • Create New...