lionz's Forum Posts

  • How do you complete the stage? When this is fulfilled you use go to layout.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • T1ger8oi don't hijack the thread lol. I have some apps with adverts but never used interstitials or noticed a drop in audio with the other reward ads. Run a basic test app and see if it is broken.

  • Well it looks interesting , let's see some gameplay?

  • What are you trying to do here? Why do you keep picking all the sprite instances?

  • My advice would be to get Construct 3. You won't be able to buy Construct 2 soon and it's kind of like going back in time to solve a problem that doesn't exist in Construct 3. I understand Construct 2 needs some support but better to upgrade and it's a lot easier.

  • Now verify that the 3 of them have the variable set to 0, and that the 3 player objects are also in the level? Also that the 3 of them are in the family (kind of confirmed by checking the variable anyway)

  • You could change from creating and destroying them to set visible/invisible if you want, since you described them this way. Try that and see if it works better.

  • If there are enough spawners in the level with variable set to 0 then it should work. If a player doesn't spawn then it likely cannot find a spawner. If it's still not working please post a screenshot of the new event structure after making sure enough spawners are in the layout.

  • 1. There is a fade behaviour you can enable, or you can reduce opacity over time

    2. Setting them invisible shouldn't uncheck them afaik, are you creating and destroying them?

  • This won't pick correctly, notice you are setting the position to a random instance and the variable is in a sub event. It should be pick random instance with the variable condition attached as the same condition not as a sub event. Then the 2 actions appear on the right of this. It should look like one block event for each player.

  • Let's see a screenshot of the events

  • You asked how do you delete local storage when testing a game? If you want to clear the browser data then you go to the browser settings and clear data, this is outside of Construct.

  • Not sure why you're asking to clear local storage if you're not using it

  • Add a family instance variable, maybe a bool is good enough.

    On the left conditions add pick a random instance of 'family', its under system.

    Then add another condition with it, family compare variable family.var=false

    Then on the right actions say : family spawn player, and also another action family set variable to true.

  • It's not really clear why you're using a family. Are all the spawners separate objects or are they instances of one object?