Jump to content

atari2600land

+AtariAge Subscriber
  • Content Count

    18,165
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by atari2600land


  1. I'll try to be more specific, apparently that helped with the last question. I want a sprite (player0) to fire a missile downwards once the fire button is pressed. I don't know how I can be more specific than that.


  2. If you wish to know about label variations, feel free to hit the giant list of label variations at the bottom of my signature. Also, there are some items missing, but I'm working on the list, so you'll get to see hundreds of variations on this list, and may not see a few you know to exist. I'm getting there. Al hasn't been too up to date with his postings. If you want more details of scans, visit Rom Hunters site, www.atarimania.com.

     

    Phil

    Why is the only company listed under label variations Activision?


  3. What is wrong with this program:

    1 rem Ants!
    2 set smartbranching on
    3 rem l = lives counter
    4 rem t = timer counter
    
    220 x=60 : y=60 : score=0 : scorecolor = 62 : l=4
    221 a = rand : t=0 
    222 if a>150 || a<20 then 221 
    223 b = rand
    224 if b>80 || b<10 then 223
    225 if l=0 then goto 359
    230 COLUP0 = 198 : COLUBK = 246 : COLUP1 = 0
    240 player0x=x : player0y=y : player1x= a : player1y = b
    260 player0:
     %01100110
     %00100100
     %00111100
     %11111111
     %00111100
     %00111100
     %00100100
     %01000010
    end
    270 player1:
     %10111101
     %01111110
     %00011000
     %10111101
     %01111110
     %00011000
     %10111101
     %01111110
    end
    280 drawscreen
    281 t=t+1
    282 if t=255 then l=l-1 : goto 221
    290 if joy0up then y=y-1
     if y<10 then y=10
     if y>80 then y=80
    300 if joy0down then y=y+1
     if y<10 then y=10
     if y>80 then y=80
    310 if joy0left then x=x-1
     if x<20 then x=20
     if x>150 then x=150
    320 if joy0right then x=x+1
     if x<20 then x=20
     if x>150 then x=150
    330 if collision(player0,player1) score=score+1 : goto 221
    340 goto 230
    
    359 rem death
    360 COLUBK = 0
    380 if switchreset then goto 1
    385 goto 360
    

    When I compile this, it gives me a bunch of errors, many of them saying "(1121): Syntax Error ". ']' error, no arg on stack


  4. I'll try to be as specific as I can with this next question.

    How do you activate a timer or time counter thingee?

    In this game I'm working on, I want a sprite (player1) to pop up on the screen for a certain amount of time and then disappear. While it's on the screen, I want player0 to touch it. So how do I make the sprite stay on the screen for a certain amount of time using a timer-like thing?


  5. I have a question. Why did Coleco publish Donkey Kong while Atari published Mario Bros.? Why not just have either company do both games? And why didn't Nintendo make any 2600 games? It was way before the Famicom came out.


  6. I figured it out. I put an extra drawscreen command at 90 and moved the next 2 lines down:

     

    90 drawscreen

    91 player0x=x : player0y = y : player1x = a : player1y = b

    92 COLUBK = 142 : COLUP0 = 182 : COLUP1 = 112 : COLUPF = 212

     

    Better having Bubba flicker than the whole screen! Anyone wanna make a game using this title screen? You have about 2k left.


  7. Anyone wanna go halfsies on this? I made a title screen for a game called "Bubba." The only problems are 1 - the title screen flickers and 2 - I have no idea what Bubba (the green guy) should be doing. If anyone accepts to finish this thing, credits would go like this:

    concept - you / design - me / title screen programming - me & you / Of course, if you don't want to finish this game, at least just get the flickering to stop.

    bubba.bin

    bubba.bas


  8. Hacked version of River Raid that allowed you to go through all the screens. Probably never make it to 1,000,000 in my lifetime anyway, but if there was nothing else to do, might as well try...

     

    ~G

    It takes 11 days to *count* to a million. Now imagine the time it'd take to get what you want to do.


  9. How about a lives counter? Like the score counter? Lots of games have lives to keep track of, and you don't even have to use the score counter if you don't want to, so you don't need to use the lives counter.

×
×
  • Create New...