lionz's Forum Posts

  • I'm saying it's a bad bug, you cannot progress past level 3 that's all :)

  • Three level actually has an error on which it can not pass. Seias i will correct him

    https://preview.construct.net/#hne2npcx

    That makes sense then, sounds like a blocker to me :)

  • I had a look at an earlier version of this. I always get stuck on level 3. Also my feedback would be that it isn't fun. Also there is a bug, you can die and land on the door at the same time so you still progress to the next level.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • There is 'Stop All'...

  • On its own it will do it constantly. You need to have it as a sub event under 'on start of layout', so press S on the 'on start of layout' event and add the logic there as a sub event so it triggers once on start of layout.

  • There is a system 'pick a random instance', then choose the object as family.

  • You do not have permission to view this post

  • You do not have permission to view this post

  • You have a global variable value which is the current shortest time. At the end of a level you compare the level time with the current shortest time. If the level time is less than the current shortest time then that becomes the new current shortest time.

    The current shortest time initial value can start initially as a high value e.g. 9999 so when the player sets their first time it is always going to become the new shortest time.

  • Wait for signal is just stopping events until a "tag" is called. Did you check the documentation and examples here :

    construct.net/en/tutorials/how-to-use-the-system-wait-action-63

  • Is it resolved now with my other comment?

  • Mmmm looking good, I added it to my wishlist. Good luck with it!

  • You only include an event sheet on an event sheet, it allows you to use the logic from one event sheet with another so they are linked, groups are not relevant here.

  • Maham Imtiaz

    since there are 3 guns, it doesn't know which gun you are referring to when you try to set the angle.

    event 27 will have all the guns spawn a bullet, but events 28 to 30 still have all guns picked so it will probably use the first instance's angle.

    you need to add a "For each Firegun", then have each one spawn a bullet separately so you can check the animation frame and set the angle properly.

    we established it's one gun

  • You can just use a global variable to toggle it off if you want. var is 0 as initial value. On every 1.0 seconds you have another condition if var=1. Then you have following events : on Play clicked, set var to 1 (starts the timer) If total_seconds=0, set var to 0 (stops the timer)