lionz's Forum Posts

  • Looks interesting, good luck with it!

  • Perhaps you should rant at the person giving you high expectation of making a high quality game in a month, is it yourself? The free version is limited and that's to be expected, you want more got to buy it.

  • 5 months away? Bit early

  • Not sure how you can expect anyone to guess the problem here. The problem will likely be with your events though. If a variable is set to true then maybe it was never set to false but we can't see anything.

  • Pathfinding logic youre constantly running the event and finding a path. You should do a trigger once to find the path, then the on path found trigger should be its own separate event.

    For the camera try drag and drop behaviour on a sprite that also has scroll to behaviour.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Looks like it is sorting each column individually which is how I would expect it to work

  • The point is to use the container, the family isn't in the container.

  • Why don't you just search for zeroes and delete the row?

  • Bullet on collision with enemy, set health bar visible. Should work if they are in a container.

  • The best way to do this is to have it in one layout. Looks like you made it overly complicated by using multiple layouts then tried to find a way to overcome a problem that shouldn't even be there. If the character movement matters that much to the gameplay it is fine to do in one layout, or you can do something complex like make all characters global and when you go between layouts they will continue to move across the terrain which is also global, this means of course mapping out your levels so they are not in the same place, but really this is just dividing up levels that could be in one layout.

  • Just picking again, but I didn't really understand what you're asking

  • I guess. You can use that, or arrays which are more complicated. Global variables can provide a locked status.

  • You mean you have a shop and then a character select screen? It's more complicated than me just explaining how to do it. You can use global variables to decide if a character is locked or has been bought. Then on the selection screen you check if the variable is 0 or 1 maybe and that decides if you can select it.

  • Hmm I would ask why can't you do it on one screen/layout ?

  • Ah ok it's because you're using an x,y array so you need to say at (loopindex,1) I guess to check there is no item. When you use (loopindex) that first cell is always 0, im not sure what the numbers are for tbh.