Jump to content

Luigi301

Members
  • Content Count

    372
  • Joined

  • Last visited

Posts posted by Luigi301


  1. I'm reading the joystick for now until paddle support is included. I wouldn't mind sacrificing a missile for paddle support.

     

    Break-In sounds like a really great idea, but I don't think I have the programming knowledge to do something like that. Besides, Batari only supports 2 players :)


  2. I gave up on my 5200 game. Instead, I'm starting work on a Breakout-style game! So far I have a bottomless rectangle that turns gray when you hit the black-and-white switch!

     

    I do have a way to store level data. If it works right, the level data itself should be small enough for me to include a lot of levels! Of course this is me we're talking about, so it could be completely wrong... :P


  3. I have an NES game cleaner. It's basically a wand with cloth on the end that you put alcohol on from the included bottle and rub on the edge connector. It resurrected my blinking gray screen games. If I knew how to open the connector, I'd try it on my Chopper Command cart.


  4. Another thread says you can use labels instead of numbers. However, when I do

     

    initprg:
    player0x = wormx : player0y = wormy
    player1x = applex : player1y = appley
    applex = 75 :appley = 75
    COLUPF = 90
    

     

    DASM errors saying "cannot process line 'initprg' and refuses to compile. What gives?


  5. STILL doesn't work. Here's my .bas. Attached is the ASM. Somehow whatever I'm checking is being set to $0C, even though I'm not touching anything on the pad.

     

    TITLE "worm 2005"
    AUTHOR "luigi30"
    
    SCREEN 4
    KEYPAD 1
    SET CHARSET=$9400
    PALETTE 0,$60
    PALETTE 1,$C6
    PALETTE 2,$A4
    PALETTE 3,$22
    PALETTE 4,$E
    MEMCOPY $9400,$3000,4096
    
    WaitForStart:
    DO
     SET SCREEN=$9400
     A = $00
     X = $00
     INPUT A
    LOOP UNTIL A = $0C
    
    GameReset:
    SET SCREEN=$9800
    DO
     PUT (50,100),$30,2
     SPRITES ON
    LOOP
    
    .ORG $9000
    #INCLUDE worm.ttl
    
    .ORG $9400
    #INCLUDE worm.chr
    
    .ORG $9800
    #INCLUDE wormmain.ttl
    

    WORM.txt

×
×
  • Create New...