trance's Forum Posts

  • I used webstorage man... Look at my capx...

    But there has to be an error somewhere...

  • but it also restarts Highscore and thats something I dont want to...

    Dont you know how to keep the highest amount of Highscore?

  • Hello,

    every time I destroy "brick object" it adds 1 point to Score and also 1 point to Highscore. But when I want to play this level again it keeps counting where it ended.

    I need 2 things to do:

    • reset score when I start play again (BUT keep that score when I move to another level -> counting here is OK)
    • keep the highest amount of Highscore whatever level I play - never reset it

    Look at thic capx please... .capx

  • also I forgot to mention that I want to use Webstorage...

  • Hello,

    I have made Top Ten Highscores project accrodeing to this tutorial -> scirra.com/tutorials/581/top-10-high-score-with-webstorage-and-arrays

    but I also want to set the name of each player to the particular score, score in numbers is just not enough.

    When the GAME OVER layout appears I want some TextBox to appear in order players could type their name and that name has to appear near their score in the SCORE layout. How to do it please? I didnt solve this problem...

    Thx..

  • did you solve this problem?

    I would like to know how to do this too...

  • yes i know that but it will be spawned on every start of layout right? I need just the FIRST start !

  • Hey,

    how to make tutorial features in my game? I mean when you for example start a new game I would like to have some arrows pointing at a particular place so the players will know what to do in order to start play.

    Or at least tell me how to spawn an object on start of layout - > but only on the FIRST start of layout..

  • not sure what you mean by this examining memory usage...you mean in construct 2 or where .. ?

    the most strange part is that those 30fps is even if my whole project is 1 simple small sprite (tested on many devices)...

  • anyone can help? or is it absolutely normal that portrait has 30fps (with 1 sprite) and landscape 60 fps (full game)?

  • such a simple thing to do...ok problem solved, thx

  • im not sure what do you mean by this action set the scoretext...could you be please more specific?

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Hello,

    I created GLOBAL variable called Score with initial value 0.

    Like this:

    OBJECT - on collision with OBJECT2 > OBJECT2 destroy

                                                                    > System - Add 1 to Score

                                                                    > ScoreText - Set text to Score

    and the same on the second Event sheet + Layout 2.

    When I destroy the OBJECT2 and then move to Layout 2, the score bar starts again with value 0. I want it to start with the previous value from Layout 1.

    What is interesting --> when I finished with score 20 and in the next Layout I kill monster for another 20 points it shows 40 but initial value (on start layout) is 0 and no 20 from previous layout

    Where is problem?

  • nobody knows ? is it even possible?

  • Hello,

    when I touch some sprite on my mobile device (and something happens) I want that touch function to be disabled after the first touch...

    For example, when I touch some button -> object starts to rotate -> here I dont want that button to be touched again, simply I just want to disable it after the first touch input.

    How to do it?