lionz's Forum Posts

  • The main problem I can see is that all the switcheroo stuff for player data you do with the activation of groups, it is running every tick, trigger once fair enough, but it can run before the AJAX on read event is true so you could be swapping blank data around before there is any data there. You should trigger the fin>score checks after AJAX on completed.

  • Let's see a screenshot of the events and default array settings, or the file please!

  • Great! Glad it's resolved.

  • press F12 and then select Console tab

  • You confirm that the master array has data but the question is when does it have data? The values could be 0 in master when you are running that loop so it is copying 0 over to the other array. If image B works and adds 1 to your array which I expect it would then the issue is that the values in master array are 0 at the time you add them in image A.

  • Check the parallax settings of the layer that the clouds are on, if they differ then the clouds will scroll at a different rate or 'appear' to be in a different place.

  • System set timescale 0

  • You do not have permission to view this post

  • I don't see why that would be broken, share the file and let's have a look.

  • Without the trigger once it would spawn a lot of items anyway I guess. With the trigger once it could be fine but maybe if the item gets destroyed and the bool toggles then it will also spawn a lot of items. The fix kind of depends on the design of the game but you could add a check if player is overlapping the spawn point. You could also think about adding timer behaviour to the spawn point so each has their own timer and if player is overlapping it then it doesn't start counting.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You're probably racing them so localstorage.itemvalue is not what it should be when you grab it. Have you tried ordering them so when the first one is missing or found, check the next one?

  • You can use another variable and set that based on the string I guess

  • This should work :

    Middle mouse button

    or Right mouse button is down : object disable drag drop

    Left mouse button is down : object enable drag drop

  • You can relate the object instance to the array by way of instance variable. So object.var is array.x, object.var=1 is all data at x=1.

  • Are you using it wrong? Show us how you're using it, let's see the event sheet.