Aphrodite's Forum Posts

  • I get some problems while trying to make an update for my game:

    When I go for the first time (aka: the game isn't cached), I just can't pass 98%, and also, The game will not load entierely before sending me to the first layout (as if I wanted a loader layout, but I set loader layout to "No", a bug maybe?), these are issues, since the first time players want to play my game:

    -They can't load to 100% (even if the game is fully downloaded)

    -They still have to refresh the page the first time (also, what if they just don't use cache on my website, which is possible)

    EDIT: I solved it, It seems the "is downloading update" becomes false right before loading progress becomes equal to 1

  • This is my first "serious" game, It's bassically a platforming game, where you control a pony (named Daring do), and collect items to progress from one level to another, there is 9 levels so far, and I hope there will be more (30 I guess).

    I tried mostly to make it so you can try to be quick to end a level.

    Controls:

    -Left or right : Move Left or right

    -Up or down : Climb a ladder

    -Space : Jump

    Link to the arcade

    Later, the menu will be better

    Feel free to comment and report bugs you see

  • Hey,

    I am pretty sure I read somewhere that placing music inside the Sounds folder was a bad idea. Is there any truth to this? If so what were the issues?

    I'm having a music issue on my android device and I thought it may be because I placed the .wav in the wrong folder.

    The music Folder is streamed while you play the game

    The sound are downloaded and cached

    Today, I had some connexion problems, so, I couldn't Appreciate the music, since it was cut on and cut off, but sounds were okay (because cached, noises aren't that big compared to music, so ,it's ok to download them)

  • 2)Not give but Get =)

    unfortunetelly, I still think the license from Scirra and the license from steam are independant somehow, so, you just can't use your steam license without steam.

  • Hello everybody! I bought construct personal via Steam.

    So... can i:

    2) Can i give my license code to use my construct 2, whitout steam?

    I don't think the 2/ is possible

  • I know the question is a bit obvious to some, but I can not at all. I would like to save an initial design of my game I'm developing, but I can not save it as executable .exe!

    I wonder if it is possible in the free version

    Thank you for your attention

    The .exe is not possible to do in the free edition itself, however, it is possible to do it manually via the HTML5 export, but I'm not sure how, and I don't know if it is very.. good for the devellopers of C2

  • Hi,

    How can I save position of sprite in webstorage, is it possible? So it's in the same place when user comes back to the game, until he or she movies it again.

    You have to set 2 keys: "PlayerX" and "PlayerY" for exemple, in the local storage, set to the player X and Y respectively

    then when you load the game (conditions of your choice, a button maybe), you begin the layout, and at the start, you set the X of the player equal to int(WebStorage.LocalValue("PlayerX")), and for the Y, the same but with the Y

    the manual should help you too:

    Webstorage

  • not sure my solution is the best, but:

    You set your Background layer parallax to (0, 0)

    You createanother layer for your button's levels, with a parallax of (100, 0), to make this layer scroll on the X axis

    and You use the scrolling to make it scroll (a ScrollTo behaviour on a sprite maybe, and you move the sprite when necessary)

  • What kind of value is the "climbSpeed" ? Only see it being reffered to 2 times. Sorry I'm still learning and trying to implement this into my platformer..!

    the "climbSpeed" is used to see how fast you rise up when climbing (Self.Y - climbSpeed = we rise of climb speed), and the "*dt" thingy is for frame-rate independancy

  • Tom: Just wondering, did it have something to do with the script minifyer?

  • I really enjoy this kind of puzzle game, and this one is really enjoyable, but I was wondering:

    Will you do like the game boy's Daedelian Opus? (aka: have some objects which are not necessary to complete a level sometimes?)

  • Hi, Im kinda new to construct, and I have a dilema.

    My question is, Is there any way to make the player sprite mirror, other than the one showed in the begginers tutorials? Cause that one used the keyboard object, like, if left arrow is pressed, mirror player sprite, but I want the sprite to Mirror and Unmirror regardless the controls, because if I map the direction keys to WASD, I have to change the entire conditions to mirror the player. Is there any way?

    Not sure I get the idea, but, you can mirror a sprite with the condition of your choice, after, you have to unmirror it, again, with the conditions of your choice, this condition isn't user input only

    exemples of conditions:

    If Variable < 0

    mouse button is down: Left

    etc

    Not sure to see the exact problem

  • Done, I hope this time, it works, for me, it worked, I also set the webstorage key Before changing layout, the event sheet process from up to down

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • you did

    Set the local key WebStorage.LocalValue("highscore") to score

    you should do:

    Set the local key "highscore" to score

  • > The problem is your "set local key"

    > you just have to enter the name of the key, here "highscore" (with the " " ), not the WebStorage.LocalValue("highscore")

    Uh, sorry if I seem stupid now, but I dont get what you mean :P

    Do you mean event 13? WebStorage.LocalValue("highscore") ?

    Yes, also, you could do that during the game over