Page 1 of 1

Simple game i just put together

PostPosted: Sun Mar 26, 2006 1:37 am
by The achievement
Anybody want to try this lame game that i just threw together?

If you do, how do i get it in here?

PostPosted: Sun Mar 26, 2006 4:30 pm
by Game A Gogo
try finding a site that you can store stuff.

i would like to try.

counting up score...

PostPosted: Sun Mar 26, 2006 4:42 pm
by Game A Gogo
In some games, there is the a score after you finished the game, and that score just keep increasing up until the score is shown. ive figure out how to do that!

here it is:

1.Create a variable named score_Count.
2.Create an actor named score.
3.on draw actor of actor score
script
Code: Select all
score_Count=textNumber;

4.Create an actor named Finish_Score.
5.on draw actor of actor Finish_Score script:
Code: Select all
textNumber=textNumber+1;
if(textNumber>score_Count)
{
textNumber=scoreCount;
}


That should do it. if there is some error, im sorry, i cant help you.