kkletsgo's Forum Posts

  • Interesting.

    I tested the game on nexus 4 and the movement is quite blocky. However, if I put my finger on the bottom of the screen, under the game layout, the controls become smooth as silk. Any explanation to this?

  • Hey everyone.

    In the Vertical Space Shooter Template the speed of the player is controlled by the event saying that if the player is in touch the object will move towards the touched position at 300 *dt per pixel. There is a co-event preventing the unpleasant jittering if the player is touching the place where the object currently is. If you try to increase these numbers, the speed of the player's movement increases as well. The problem is, the movement of the object becomes very blocky.

    To give an example, if you increase the value of 300 *dt ppx to 1300 * dt ppx the object moves very fast, but only in small blocks. How do you fix this, how do you make the object move as smoothly as possible.

  • Hey Darth Crusher!

    That is a good idea. I have been getting different feedback on the topic so I will see what the prevalent idea is and stick to it. After all, I make my games for the players, not for myself.

    Thanks for the support Do share if you enjoy it!

  • Have you tried using the Windows 8 phone emulator?

    (Since I cannot post the url (less than 300rep) I will pm you instead)

  • Got it working. For those who might have the same problem in the future, just click on the little preferences wheel in the upper right corner and follow the instructions. Basically, you will find all the things you haven't done so far, and an easy way to do it, so after clicking there it shouldn't be more than 30secs until you get your first impression.

    Cheers!

  • Hey Everyone!

    After 5 days of working, tweaking, adjusting settings, I have finally managed to launch my app on playstore. Here it is!

    https://play.google.com/store/apps/deta ... metryblitz

    I have to say that I started this feat of mine with 0 programming experience or knowledge whatsoever. Luckily, there was construct, literally the best valued product I found in my life. Construct didn't just help me achieve my dream of creating a game, it also helped me learn something new, broaden my horizons and become proficient at something that I couldn't even dream of becoming proficient in before.

    As for the game, it is your very typical old school, extremely easy to play, hard as hell to master arcade. I was inspired by one of the templates that came with construct, but instead of going with the flow I adjusted the template, tweaked it to my liking and created this very simple but, according to my friends at least, addicting game. I called it Geometry Blitz because... well, if you play it you'll get the picture.

    I am open to any comments, questions and suggestions (please, keep these guys coming, they helped me so far <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile"> )

    Thank you Construct, and thank you, the best community in the world for helping out.

    Hope you like the game!

    Cheers

    P.S. It's not letting me post the url because I have less than 300rep. I'll try to think of a way to post it somehow. Meanwhile, just search for Geometry Blitz on google play store <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

  • Hey everyone,

    Couple of hours ago my little game hit the play store. At first, I thought everything is working flawlessly, the app was running, the ads were showing, everything was great. However, once I logged in to MoPub, it showed that there were 0 impressions today. At this point I am a bit worried, even though the ads are showing normally and everything works quite well, the service is saying that there are no ads appearing whatsoever. Is this normal behavior for MoPub? Should I wait a bit, is there a lag between actual impressions and MoPub capturing them?

    Oh, and one last thing, my admob account doesn't have my application linked from the store (it can't find it, it says that often it needs around 48hrs to refresh the market - find your game). It does have, however, all the ids and everything else set up. Suffice to say that it is showing 0 impressions as well.

    Any ideas?

  • Sorry! Got it working, i placed 1/100 instead of 100/100

    Thank you so much!

    You rock man!

  • Tried it out but it created somewhat of chaos. It's showing really low numbers now, 0.03 and 0.04 respectively. It seems like it is actually dividing the results with 100.

    Suggestions?

  • Hey!

    So this is what it says at the moment

    int(WebStorage.LocalValue("HighScore"))

    I tried putting *1)/100 but it underlined the * saying that it's not working. I also tried using round instead of int but no luck there either

  • Hey Guys,

    I finally managed to make my game keep the highscore. Alas, now I am facing a different problem. The point of the game is to survive as long as you can. Because of this, the score is measured by time being alive. So your score is your time. The problem arises when the player's time is 4.8 secs and the HighScore only captures 4. In a fast paced game like mine, these 0.8 seconds can mean a lot and I would like to know a way to make the highscore show the decimal aside from the round number.

    Any ideas will do

    thanks!

  • Aphrodite HEY!

    I somehow dug up this topic and I think I have the exact same problem as DV7 had. Can you PM me so I can send you my capx in order for you to look at the problem :)

    Thank you so much, cheers!

  • Hey Everyone, sorry for the late reply.

    I think that the problem lies somewhere in the WebStorage object. I am going to literally write down what I have put into the event sheet.

    Local Key "HighScore" exists - set HighScore to int(WebStorage.LocalValue(HighScore))

    else

    System - Set HighScore to 0

    moving further down the event sheet.

    If player collides with the enemy

    player - destroy

    Txt(score) - destroy

    set EndTime to 0 + Total Time

    Wait 1.5 secs

    Create object txt(result)(basically your score for that game)

    set txt(result) to EndTime

    Wait 0.3 sec

    Create txt(Try Again)

    Txt(Try Again) set text to "Tap here to try again"

    SubEvent to this event.

    System - If EndTime > HighScore then WebStorage set local key to "HighScore"

    Set text(HS) to HighScore

    This is basically it. Every time I play it I get the score of 0. Any ideas?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Thanks for such a swift response.

    What type of object should this be. Any examples on how to do this? Possibly a capx?

  • Hey everyone,

    I've been working with construct for the past couple of days and suffice to say that I am thrilled with the progress I've made. My project started as this small "man i'm bored" thingy and evolved into a potential playstore/appstore game! WOW.

    However, I still face some problems that I can't seem to solve. The biggest issue I have at this point is setting up the high score. I have followed youtube.com/watch and did everything the tutor said, but no luck. Instead of a high-score I am getting a 0 every time.

    I guess the problem lies in one of the global variables I have and the way the game controls them. For instance, the score in my game is determined in seconds. The longer the player survives the bigger the score he gets. This is determined by a global variable which is TotalTime. At the moment the player dies, another global variable, called EndTime kick in. This global variable adds TotalTime to 0, thus detecting the moment the player died. Of course, it is followed by set text EndTime.

    So, as you may see, my scoring system works, every time a player dies, he gets a small you failed - score 10,3 screen. The problem is, I can't seem to get the game to recognize the biggest value and create a high score to pursue. Any ideas?

    Thank you for all the ideas and help you guys offer, this is probably the most helpful forum I have ever seen :)