lionz's Forum Posts

  • You can keep the variable as the % chance so 25, then you generate another number to compare against. So if you set another variable to random(1,100) it will give you a random num from 1 to 100 and the logic would be if the generated number is less than or equal to % chance then it would block. So for example 11 generated would block and 79 would not.

  • Try clearing browser cache, it should reset everything so when you launch Construct next it is the stable version and ignores betas.

  • You need to share some way of contacting you :)

  • When you have enabled beta releases in those settings and refreshed the browser it should prompt you to update to 227 when you launch Construct, you don't receive the pop up ?

  • The update mentioned is the pop up received when you launch Construct. If you have it set to beta then it will prompt you to update to the beta when you launch Construct next time.

  • Under settings there is an option to change stable releases to beta releases

  • How are you hoping people to get in touch with you if it's urgent? And I find it strange that you completed all gameplay for all games but didn't work out how to set an animation not to say you are being false it's just strange you would need someone extra for that. Also you didn't mention is this paid?

  • Your games look pretty good that you made on your own though :D you should post at least discord or something, having a conversation on the forums isn't the best use of them.

  • Anything that needs to keep the same state you can assign 'Persist' behaviour, this means they remain in the same state as when you left the layout.

  • Yes this approach will not work. If just one blue unit cannot see a particular red unit then it will be set to unseen. The fix for this could be something like always set red_unit to unseen, and keep the event for if blue unit has line of sight then set to seen.

  • You do not have permission to view this post

  • A sprite can perform the function of a button, on touched or on clicked.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You first add the instance variable to the object so a string 'name' then use a condition in the event sheet using the object compare instance variable.

  • Hello!

    For movement it is the 8-direction behaviour which allows a kind of top down movement and by default with the arrow keys.

    To create at a random position would be to use sytem > create object and the position would be the same Y but with a random X, it would be something like random(0,500) for example which chooses something in that range.

  • It's a strange approach I guess, you shouldn't have to bring in gameplay assets from another layout and set them invisible, but if you are doing that then I don't see how the player colliding them while invisible is a problem? Anyway the approach is not great as you start bringing in unnecessary art assets and increasing memory usage. They are invisible, serve no real purpose. You should process the overlap checks when you enter the layout that contains the crops.