Jump to content

atari2600land

+AtariAge Subscriber
  • Content Count

    18,165
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by atari2600land


  1. The growing speed gets faster about every 28 seconds. The value starts at 15 and stops getting higher when it reaches 5. Also, using the scissors to cut a lot can make the growing speed faster, as I put some code in the cutting part to increase the growing timer.

    • Like 1

  2. New stuff:

    • Nosehair begins slower.
    • Demon takes away 10 points if he gets the box.

    In case you were wondering, I was having trouble with collisions. The box didn't go away after it collided with something, thus causing the scores to double. So I put a pointer to the sprite positioning code part right after I wanted the box to go away. This caused the thing to not collide twice (thus causing the score to double.)

     

    nosehair39.bin


  3. OK, I'm stuck. I have absolutely zero idea how @SpiceWare did the drawing score routine. But I wanted to add something else to the game, and I figured out how to display the score without the flipped numbers, but there's a gap in the middle of it. So I'm wondering if it's possible to move the score over to the right so there's no gap, like in my mockup here.

    nosehairmockup.png.746b585c3010613ce87b3bd48fe84860.png

    But like I said before, I have no idea how the score is being displayed. The code for it begins at line 1,317 in my code if you want to take a look. I attached the asm code and a binary in the zip file here.

    nosehair38a.zip


  4. I figured out how to bring the music back. What's more is I have 15 bytes left. The screen does not change colors though (unless you turn b&w mode on.) It was so simple. Instead of long complicated code, I just had the Frame variable handle when to change the notes. And since there were 32 treble notes and 16 bass notes, that divided evenly into 256.

    EDIT: The color switch won't work. I'm looking into it.

     


  5. I went back to work on this. I added in the subtraction of points if the demon gets the box. When the box appears, the demon stops going after the scissors and tries to get the box instead. Since this took more room, I had to get rid of the music and instead make the colors change (like in an early 2600 game). What do you think?

     

    nosehair36.bin


  6. I've been thinking a lot about the huge connection of my food and my video games and I got to thinking, with Peter the Pea and the Secret Government Waffle Project, perhaps it's not best if if I make a game about burgers at this time. So rather than completely give up on the game, I've decided to give it a different theme. You are a lowercase letter W. All the other letters of the alphabet have got together and attacked W-Land. Your job: Shoot all the other letters with your lowercase i. Some letters may be shooting a lowercase o at you. What do you think?

    w16.zip


  7. It's the Sesame Seed Sea.

    (Yes, I know that burger bun does not have sesame seeds on it, but most burger buns do.)

    shot0017.gif.59acc33e1f0008de576a209ebbead1c2.gif

    The fish is there for decoration. You can't shoot at it. I thought it looked rather boring and plain without it.

    I need to do different songs for levels 2 and 3 now.

    My eye is continually "twitching". I don't know why.

     

    herts13.zip


  8. Why can't I get the stupid fish to scroll correctly when the waves above do?

        ' scrolling
            movetimer=movetimer+1
        
            if movetimer=3 then
            
                IF offset_x=0 THEN
                    stupidfish=stupidfish-1
                    offset_x=7
                    PRINT AT 140 color #bgcolor, "\258\258\258\258\258\258\258\258\258\258\258\258\258\258\258\258\258\258\258\258"        
                    PRINT AT stupidfish color 5, "\256"
                end if
    
    
                if offset_x>0 then offset_x=offset_x-1
                
                SCROLL offset_x,0,2
    
                movetimer=0
            end if
    
    

    result:

    shot0015.gif.c3284ad6c2ead6adecbcfcc0d44b5a92.gif

    EDIT: SOLVED.

×
×
  • Create New...