lionz's Forum Posts

  • The game looks interesting though, I wanna play it ^^

  • All of the complexity is there, it's hidden under a nice UI. The claim that you can make pretty much any 2D game is true. It's robust and receives constant updates. You can easily create a game and export it to mobile.

  • I would advise against sharing an empty file and asking users to make something for you in future, that's probably why there was no response to this. I think you could resolve this yourself by picking a location sprite, playing around with the tile movement behaviour and simulate control in a direction combined with comparing whether player x/y are less/more than the location sprite.

  • I'm saying the sub events don't need to be in a function, you can have on timer finished then execute those sub events from there. The logic looks a bit convoluted for doing what you are trying to do which is to wait for a couple of seconds then move, right? Also when you wait in a function I believe the parameters you pass through get lost so when you are picking the sprites at the start of the function, i think param 0 and param 1 are no longer valid.

  • Cool! I'll add it to my wishlist as a reminder.

  • Yes get rid of all the system events, the timer is supposed to remove the need for waits. As you mentioned, the system event is not per instance. The on timer finished picks the instance where the timer finished, that should hopefully be enough?

  • You do not have permission to view this post

  • Hi, you don't have to use save data but there isn't enough information for someone to help with this. Most likely you have an 'on start of layout set diamonds to 0' or 'reset global variables' that triggers on the start of each layout.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You use a timer on the enemy object and timers are affected by timescale so they will pause and continue from where they were when you unpause.

  • global variable score would be something like ""&Score which you currently have. instance variable is ""&object.ammo

  • The why is probably to do with picking, when you call a function and refer to an object it does not necessarily refer to any previous objects picked before the function was called. So the spawned invisible sprite in the pin function is not the same invisible sprite referred to in the main function.

  • This should be one event, every 1 seconds with the actions on the right in order. You are not passing any values through so there is no need to use functions.

  • Yeah you uncheck the option in bullet behaviour, 'Set Angle'. This option sets the angle of the object to the direction it is moving in. You don't want this so you can disable that option.

  • Is the layout using the event sheet that those events appear?

  • You do not have permission to view this post