Replace 'on start of layout' with 'every X seconds'
Yes you can save individual data as keys using local storage, look at the section 'using local storage' construct.net/en/make-games/manuals/construct-3/plugin-reference/local-storage
Great :)
It's a condition that goes on the left with the variable checks, it's under system > trigger once while true!
The conditions are true for a while so its adding lots to the won variables, you need to add a trigger once condition.
As described I know how to do it but then I look at your examples and they don't make much sense to me, what do they mean?
Edit: oh are you referring to ASCII? You didn't really mention that, no idea then ^^
Yes global variables will be fine for a settings menu.
Global variables are saved between layouts so if you move to one it will keep that data. The number of cards would be one variable and the difficulty could be a text i.e."easy" or a number variable. Saving the game is a very different thing, you can use local storage (see manual) to save variable data and load it again next time, and Ashley's tutorial is linked on there about how to make save games.
No pathfinding required, I mean based on the information that I have, depends if your game is more complicated than it seems. Plants vs zombies is just simulate control left towards the left side of the screen, the action 'simulate control left' moves the enemy as though the enemy is pressing left key.
If you're trying to do something like plants vs zombies then you should really be using 8-direction behaviour with simulate left/right for simplicity of moving left or right across the screen.
construct.net/en/forum/construct-3/general-discussion-7/do-our-apks-meet-the-new-64-bi-141300
Do you mean a playable prototype? Yes Construct is good for that.
So what you currently have is 25% chance of each right? All you need to do is set the setCreate variable to floor(random(100)) which gives you 100 numbers from 0-99. Then on the conditions you use ranges so setCreate is between 0 and 69 for the wood, 70 and 93 or stone, 94 and 98 for gold and if it is 99 then diamond.
Develop games in your browser. Powerful, performant & highly capable.
Yep, did that resolve it?
Based on the lack of info the only way of answering this is to agree and say yes use variables. What do you mean by save your settings, you mean save the game after it is closed or save the choices picked going to a new layout? If the latter you use a global variable.