Jump to content
IGNORED

Question with a simple screen animation


STGraves

Recommended Posts

Hello, I'm gonna be straight, which is the easiest way to make the main character of the game move from one side of the screen to the other and then once it gets there take you to another screen?, I want to add to my game some sort of a transition between levels, similiar to the titlescreen on Sprybug's Princess resuce game, except that it doesn't loop.

Thanks

 

Kind of like the following pics, mario starting from the very left, and ending on the other side but behind the PF (that part of making him going behind I know how to do it) and as soon as he reaches the right redirect to another screen. Yeah I know that I'm not the best editing pics :-D

post-41435-0-97053600-1433102632_thumb.jpg

post-41435-0-07697600-1433102635_thumb.jpg

Edited by STGraves
Link to comment
Share on other sites

You could use the score to determine what screen happens. Just add 1 to the score when you reach the side.

Mmmm the problem that I see here, is that the score is currently being used AS THE SCORE, the game needs the score, so I can't give it another functionality, 'cause that will screw up the highscore save system.

Link to comment
Share on other sites

Hahahaha the funny thing here is that those are the ones that I'm using :D :D , but you gave an idea, using the left ones to show the level instead of using them as the counter, problem here is that I have no idea on how to do it :?, any advice you can give me?

Link to comment
Share on other sites

Put these in the beginning of your code.. (this sorts your columns out and makes it easier to use the score in the program)

 

dim sc1 = score
dim sc2 = score+1
dim sc3 = score+2

 

somewhere your code will say...

 

if player0x>135 then score=score+1 (135 could be whatever you want your edge to be)

 

Then somewhere you call on the score with this..

 

if sc2=$00 && sc3=$13 then goto explode

 

This would check the ones and tens place for 13 and the hundred and thousand place for zero and is just an example

 

checking the score column now that it is dimensionalized is as easy as using sc3=$00 (00 being any number up to 99) for the right side column, sc2=$00 for the middle column, and sc1=$00 for the left side column. Raising the score in increments that match one column or another can isolate an effect within the game. The score can be used to run the game (easier, of course, if the score is omitted). If you stick to keeping your maximum score under 9999, then the left side column could be used to run the screen switches.

 

if player0x=135 then score=score+10000 (this puts a 1 in the right side of the far left column)

 

I'm pretty sure NukeyShay(?) wrote this out, though. It's not my exact method but I use one based on it and it's offered on the forum (somewhere?) and is in the instructions.

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...