dop2000's Forum Posts

  • Your event #66 is executed every tick, this is wrong.

    Since you have Scale boolean variable, you can remove #66 and change event #65 to this:

    65: 
    Letter LiteTween is NOT active
    Letter boolean variable Scale is true 
     ----> Letter set Scale to false
     ----> Letter LiteTween reverse from current
    
    
  • Tom, welcome back, hope you had a great holiday!

    Thanks for fixing the search function, it seems to be working well.

    .

    I noticed an issue with notifications. I often receive a notification about a new post in some topic, but when I open it, there are no new comments. I'm guessing that new comment is under review by moderators? Is it possible to create notifications only after comments have been approved?

    Also, could you insert the full list of addons into the first comment of this post? I asked Kyatric yesterday, but there is a character limit per post and he had to split the list into five comments... Here is the correctly formatted list with all the right tags.

  • Please read the official manual, there are lots of expressions that you can use to work with multiple touches. For example, Touch.TouchCount will give you the number of active touches. So if you require two touches to do some action, you can check that Touch.TouchCount=2

    .

    If you are planning to have on-screen buttons to Fire and Jump, this makes everything much easier. You can put a big invisible sprite on the left side of the screen, which will be your RunButton, and then just add these events in your code:

    Touch is touching RunButton -> run
    Touch is touching JumpButton -> jump
    Touch is touching AttackButton -> fire
    ...
    
  • Search function on the forum is broken, but you can use google to search, for example:

    card game site:construct.net

    I also suggest looking through Construct 2 tutorials, you may find something similar to what you need:

    scirra.com/tutorials

  • And I gave you the way to generate the timestamp, see the screenshot in my first comment. You get your timestamp in the d variable, you can do "Save game to slot d".

    But in order to load this game, you will need to know the exact name of the slot, that's why you should also store it somewhere else. The easiest method is to store it in Local Storage.

  • So when you click any letter, it should get bigger. When you click another letter, the previous letter should become small again and the new letter should become bigger, is this correct? In this case, Spriter would be a huge overkill for this task!

    It can be easily done with LiteTween:

    dropbox.com/s/s7sv826wjb2ha8y/LiteTweenDemo.capx

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • There are lots of ways to do this (you can use "8direction simulate control", set vectorX/vectorY), but they require a little more knowledge of C3.

    Try this template first:

    Replace "On mouse click" with "Touch is in touch"

  • You are asking very basic questions, I suggest you start with some tutorials:

    construct.net/tutorials

    There are a lot more tutorials for Construct 2, you can use them too (most of them are compatible with C3):

    scirra.com/tutorials/top

  • Here is what I usually do:

    Global Text Variable boxesMessage = "You have % boxes"
    
    MyText set text to replace(boxesMessage, "%", numberOfBoxesCollected)
    

    .

    You can use any other symbol instead of %.

  • You can give timestamps to saves, but it's not possible to browse all existing saves. So you'll have to write the list of all save files to Local Storage. When player wants to load a game, you'll need to retrieve the list of all saved games from local storage and display this list to the player.

    To generate the timestamp you can use JS code, for example:

  • You don't need both Mouse and Touch in your game. Touch events will work on PC with hardware mouse.

    So remove the Mouse object and use "Touch is in Touch -> Player Spawn bullet"

  • Do you have layers with different parallax?

    It will be easier to help if you could post your capx.

  • Kyatric, thanks! But I was hoping you could fit everything in the first comment. Maybe we should ask Tom? Having the list of addons split into 5 messages on 14th page of the thread is not very convenient...