How to make a new level

Hallo.
Im very new in this.
i wounder how to make new levels in a game?
I mean, if you have 1 stage in your game, and your goal is to get 1000 point, and you reach that goal, how do you make so you get to the next level?

Comments

  • SocksSocks London, UK.Member Posts: 12,822
    There are lots of ways - depending on how you want your game to work.

    Eg: You could check the score . . . if score = 1000 then go to the next scene, and the next scene contains the next level.
  • GOG_GamesGOG_Games Member Posts: 130
    What kind of levels are they? It sort of depends on that.
  • shanthezshanthez Member Posts: 7
    There are lots of ways - depending on how you want your game to work.

    Eg: You could check the score . . . if score = 1000 then go to the next scene, and the next scene contains the next level.
    Thats is the problem, i cant find out to tell the program that you reach 1000 point, and then the program should go to next level.

    Sorry for the english here, im not perfect to write it, but i hope you understand it :-)
  • brandon.shepherd99brandon.shepherd99 Member Posts: 44
    You should have a "Score" game attribute. Then use a rule where that attribute "Score" = 1000, and put change scene to next scene inside the rule. :)
  • SocksSocks London, UK.Member Posts: 12,822
    Thats is the problem, i cant find out to tell the program that you reach 1000 point, and then the program should go to next level.
    You'd need to create an attribute, call it something like 'score' - and then check to see if it hits 1,000 . . . . . like this:

    image
    Sorry for the english here, im not perfect to write it, but i hope you understand it :-)
    Your English is very good !

    :)>-
  • shanthezshanthez Member Posts: 7
    Thats is the problem, i cant find out to tell the program that you reach 1000 point, and then the program should go to next level.
    You'd need to create an attribute, call it something like 'score' - and then check to see if it hits 1,000 . . . . . like this:

    image
    Sorry for the english here, im not perfect to write it, but i hope you understand it :-)
    Your English is very good !

    :)>-
    Thanks :-)

    It sounds easy, i will try that, and thanks you so much for the info you just gave me :-)
Sign In or Register to comment.