lionz's Forum Posts

  • Just create different animations for the protagonist and set the animation to match what's going on with the object pick up, you don't need to destroy the object.

  • When you change layout it executes all of the events for the related event sheet and all included event sheets. if you have set the request action on start of layout or to trigger once then it will run once every time you switch to a layout that is linked to an event sheet that has the ajax events included. I don't know enough about ajax to know if multiple requests is even a problem though.

  • Set up 9 moles and make them invisible. Give them an instance variable and ID number so you can identify them. Then choose 1-9 to pick them at random and make them visible for a few seconds, animate then invisible again.

  • Aw I thought it fit snugly within the object at scale 1, nevermind

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • So it is a point and click adventure or something? It's simple to make, I would check out the manual and start learning Construct basics.

  • Hi are you talking about high scores played on a specific device or do you mean an online leaderboard? Local is easy enough, for online high scores people tend to implement Facebook SDK.

  • Hiya that isn't the right link, you need to right click or select 'Copy Dropbox Link'.

  • Only the first red car will find a path to the red box, any that spawn never find a path and so will move along some default path. You can try on red car spawned, find path to red box, and on path found, move along path.

  • You can't post urls so that won't work, also a video won't be much use either. For pathfinding errors I would need to see what you've done with the logic and events. There will be a reason it is not going to the red box and it'll be in the events.

  • That won't be a glitch, it'll be your logic. That google drive is locked out so I can't view the file.

  • Are you using platform behaviour? Also if you're playing around with set flip commands then that might be the cause? Have you changed the angle of the player?

  • So you found your game project then? You can every X seconds set the angle to angle+1 for example which will just rotate the object.

  • A for loop and then inside that, compare at xy, not compare size. This runs through each element, what you then want to do with it is up to you.

  • Yeah you can use a for loop for this for example : for 0 to end range, compare array at 3, loopindex will run through all at x=3.