Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Aykay

Pages: 1 2 3 4
1
Ask a Question / Re: test googleplay connection and leaderboard
« on: May 18, 2017, 02:45:31 pm »
I am getting the same loading screen that just closes itself. The leaderboard never opens. HELP!!

2
Thank You very much. Im going to give this a try

3
I am trying to make my actor move left and right by tapping the left half and right half of the screen. Anyone know how to accomplish this? Any help is appreciated.

4
Ask a Question / Game Saving
« on: February 10, 2016, 05:38:51 pm »
I am testing my game on my iOS device but every time i quit the app, the high scores do not save. I used the save game and succeeded block but it doesn't do anything. Anyone know what I should do.

5
Ask a Question / Re: How can I make a high score panel?
« on: November 06, 2015, 05:13:50 pm »
I just want to display individual players best score and current score immediately after they lose. Im not talking about Game center or anything like that.  Just a reference after ever loss.

6
Ask a Question / How can I make a high score panel?
« on: November 05, 2015, 06:40:11 pm »
I am trying to create a panel at the end of my game, where if you die a panel pops up with your best score and your most recent score. How could I do this? Thanks in advance!!!

7
Ask a Question / Increase speed every level
« on: November 05, 2015, 05:18:38 pm »
hi

8
Ask a Question / Re: How can I increase speed
« on: November 02, 2015, 07:07:48 pm »
Yes but my level attribute value is 1, because you start at level one. If I do speed x level, it will be multiplying the speed by 1 every time, even though i have code for incrementing level every 10 points.

9
Ask a Question / Re: How can I increase speed
« on: October 22, 2015, 08:00:21 pm »
How would I do this because my level attribute value is 1 and i have the code "level + 1"  how would i refer to all the levels with an attribute.

10
Ask a Question / How can I increase speed
« on: October 21, 2015, 07:45:19 pm »
My game is in one scene and I want to know how I can increase the speed every level. I posted pictures.

11
Ask a Question / How can i create a region below the bottom of the screen
« on: October 21, 2015, 07:41:30 pm »
How can I create a region that is the same width as the screen, but starts at the very bottom and extends down to any y value

12
Ask a Question / How can I randomize two randomized lists
« on: October 20, 2015, 04:10:22 pm »
I would like to know how i can randomize two randomized lists. Thanks

13
Ask a Question / How can I increase speed every level
« on: October 20, 2015, 03:38:40 pm »
I have it so that you need 10 points to go to the next level... but now I need to increase speed every level. Any thoughts

14
Ask a Question / Re: How can I increase speed every level
« on: October 18, 2015, 05:34:15 pm »
this is what i tried

15
Ask a Question / Re: How can I increase speed every level
« on: October 18, 2015, 05:33:28 pm »
I
Not only did you do the  level and speed code wrong, you put it in the wrong place as well. 'When created is only executed at the beginning. You should put it in the 'when updated' event.
And the algorithm should be:
If score = 10 {
    set level to level + 1 (you can also use increment block);
    set score to 0;
    set speed to speed + 10;
}
I tried this method but it did not increase the level and did not reset the score.

Pages: 1 2 3 4