PapitoMyKing's Forum Posts

  • Bump.

  • Hi,

    I'm making a very simple multiplayer game (just cloning Ashley's tutorials). Now, when I add sound effects these are only heard on the host side, but not on the peer's. How do I sync sounds?

    Thanks!

    • Post link icon

    I already emailed support, thanks.

    • Post link icon

    Hi,

    Someone is selling C2 licenses on a popular web store. Who do I contact privately so they bring the hammer down on that guy?

    Don't want to mention here the name, because I don't want people buy it illegaly.

  • > Sorry lads, I fixed it, the bounty gets canceled XD

    >

    Lol XD. I almost made it.

    Sorry m8. But I'll send you a private msg the next time I put a bounty on a bug, thanks anyways!

  • Sorry lads, I fixed it, the bounty gets canceled XD

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I'll pay $5 by paypal to whoever finds a solution.

  • Hi!,

    I'm having problems with the collision detection in this game.

    The food will dissapear, only when the second part of the snake's body collides with it.

    The food is supposed to dissapear when the head touches it, but it's not happening like that <img src="{SMILIES_PATH}/icon_e_sad.gif" alt=":(" title="Sad">

    https://dl.dropboxusercontent.com/u/200 ... akec2.capx

  • You are off-by-one. Your grid is 20x15, which would be 0 to 19, 0 to 14. You have to include zero in your count.

    Thanks! It's working now.

  • Hello!,

    So I'm making a snake like game, and there seems to be a phantom row and column off-screen, where the snake can stay hidden.

    I want it to be that as soon as the 1st head leaves the screen, it appears on the other side.

    https://dl.dropboxusercontent.com/u/20062568/sg.capx

    Thanks!

  • PapitoMyKing - No, you will still have to face your nightmares XD . But do not worry for WebGL 2 is coming to improve HTML5 gaming performance.

    ...sigh, I'll be on the sweet wait then, like pregnant women...

  • Hi guys,

    Any word if C3 will be able to export the games directly to android/ios? I can't take the nightmare of XDK, phonegap and cocoon anymore. And I don't want to switch to Game Maker, it is ugly, non-intuitive, and the UI is doo-doo.

  • Search databases, servers, and php tutorials.

    Thanks, I'll take a look.

  • Hi!,

    Ok, so I have a potential client that wants a simple game. He wants to give rewards to the people who get the highscore on each month (highest score of december, then january, etc.). He wants the game to store the player's email as well.

    So, we need to store emails, and sort the scores by date.

    Is this possible on facebook and google play?

    I have understood that facebook only lets you see your friend's score. And I don't think google play lets you sort the score by date. What solution or workaround is available?

    Thanks!!!

  • From the manual:

    "If a layer's Global property is set to Yes, then every layer in the project with the same name is overridden by that layer. The initial objects, as well as its properties, are used instead of the other layer's own content and properties."

    to have objects on the layer keep their values etcetera, you have many choices..

    Global variables, Global objects and saving to local storage, are the most used..

    I see, thanks for the reply! I'll try one of those options.