Jump to content
IGNORED

My next project.


atari2600land

Recommended Posts

Another candidate for what I shall work on next is this thing called Argh!. I kinda gave up on Ball because the jumping scheme wasn't perfect (and I'm a perfectionist.) This is kinda like Chip's Challenge, except there's no chips and the goal is to get to the door while avoiding the enemy. This only has one level and I haven't programmed any SFX or music yet. So, whaddya'll think?

argh2.bas.bin

argh2.bas

Edited by atari2600land
Link to comment
Share on other sites

Chris,

 

I like the concept for this game, it could have some potential if you put some time into it. I played around a little bit just pushing the joystick around on level 2 and eventually the player character appeared in the upper left corner, outside of the defined playfield. If you reverse the order in which the levels appear, the character will appear correctly on level 2 and not on level 1.

 

It looks like you may need to redefine the player1 x & y values when you jump to the next level. I had a hard time following exactly what you were doing in your code, but that's the first thing I'd look at.

 

Steve

 

change this:

 if level=1 then c=30 : d=62 : goto level_one_details 
if level=2  then c=30 : d=62 : goto level_two_details

to this:

 if level=2  then c=30 : d=62 : goto level_one_details 
if level=1  then c=30 : d=62 : goto level_two_details

to see what I was talking about.

Link to comment
Share on other sites

OK, different direction. This one is like the last one and it's called Stickman. I can't use no_blank_lines because I need all the missiles, players and the ball, so it's kinda ugly. The object of each level is to put the stick in your hands to fill up the line at the end all while avoiding Stickdog. The time limit uses the status bar, and I've put in the life counter as well (so it uses pretty much everything! ;))

stickman.bas.bin

stickman.bas

post-9475-1179688832_thumb.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...