lionz's Forum Posts

  • You do not have permission to view this post

  • In Construct 3 it's called local storage and works the same way, but isn't 'save' better for this? Have you tried to use system save game before?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You do not have permission to view this post

  • Sounds like you're describing an inventory? Take a look at forum posts on inventories, you can use an array to store items that you pick up.

  • This was amazing because you posted the video and it's working perfectly in the video and you said it's working ahaha.

    But yeah it looks like the issue is it stops letting you wall jump on a random occasion. You are using a lot of booleans and variables, seems to imply that a variable like 'canwalljump' is not set. You have so many events there that could conflict that it makes sense a bug may occur. Normally you would go in debug mode and check these variables and make sure they are as expected to begin trying to locate the cause.

  • Not sure what you are asking? I didn't need it because Construct 3 does everything required. If you are a developer and want to use it then go ahead.

  • Instead of making all of these individual posts about going to another layout can you just describe the design of the game? Probably you can create everything in the second layout in advance.

  • The idea is it's global because you want it to go between layouts, like a player. If it only sometimes goes between layouts then you should try creating the object instead.

  • No problem, I like when people are learning how to use arrays, they are great! :D

  • You can make the UI layer global so that it shows in other layouts. Then you need to make sure the score events are linked to the other layout so it needs to use the same event sheet as first layout or have its own event sheet that 'includes' the event sheet from the first layout.

  • I'll make a file tomorrow need to sleep now

  • You can start with a system 'for loop' to run through each row so from 0 to array.width. Then within that loop you compare X,Y of the array using array conditions, where X is loopindex and Y is 1. Then again add a sub event using array conditions to compare current value if = 51, then you can stop loop and grab the value from array.at(loopindex,0) which is the other column. Note that I'm talking in terms of (x,y) your post seems to describe the array in terms of (y,x)

  • Such as?