Chris PlaysOldGames's Forum Posts

  • When I was playing around making my "Clicker Wizard " I found the Clicker Template on the Scirra store to be well worth the $2.99 it costs. I only used parts of it but it is well laid out and commented and allows you to very easily get your head around the concept. I can't recommend it enough. It will answer most of your questions about storing current data and returning to find it increased accordingly.

    As for layouts stopping when you leave them, the above is probably your best route.. but you can also look at the "Persist" behavior built into C2.

  • Try changing the potion drop location to the bullets x,y position when it is destroyed and see if that works right.

    Also, you could try having the bullet spawn the potion in its events before it is destroyed to see if that works.

    Your code "should" be working right, something is going sideways obviously.

  • I will just answer your question...

    By default, to the right of the main window look for the projects panel. Now look for the folder where it stores the events "events folder". Right click on it and choose to add event sheet.

  • I believe your only option will be to cut out each state and make it a separate sprite with its own variables for ownership... you could place regions into their own family and set them all at once as well. Another option would be to cut the regions out in your favorite art program and place the new sprite of the region over the existing one and turn it visible/invisible as needed... then you could shade it whatever color you like and set its transparency to look like the state itself is shaded.

    Lastly, you could use icons instead of shading to show the state of the states and then do large regional sprite overlay for when the whole territory is controlled...

    Several options but none will be "easy".

  • Don't believe it is possible without renaming them to something else, changing your code, and re-exporting/uploading.

  • It seems CDStU on the arcade wasn't loading in Firefox browsers and sometimes not even in Chrome.

    I have re-exported it and unchecked the "minify" option.

    It is now loading fine in both browsers.

  • Check your imagepoint on the enemy sprite it may be in a weird spot. Also add a wait=0 before the destroy enemy in case it is destroying the enemy before it can spawn potion.

  • You referring to thrust as in physics impulse type thrust or thrust as in simple movement in a direction?

    If you are referring to simple movement then you will need to use the platform event "simulate keypress up" when up key is pressed.

    You could use bullet as well to apply simulated force by turning it off and on. My ship is CDStU uses bullet for movement and also a reverse bullet movement when released to simulate force being applied against it when forward thrust no longer applied.. I like the effect.

  • Just keep your expectations realistic, it's a very crowded space. If you have a fun game that is unique and you spend a lot of time and effort spreading the word you can get a fairly decent sampling. Just keep in mind that it takes a lot of luck too, right place, right time kinda thing. Using Construct 2 site as an example, games get lost quick on Scirra arcade and it doesn't have a way to easily search for games (yeah.. it's 2018)... so you're on the right track pushing it out anywhere you can.

    My advice, don't make a side-scrolling space shooter ... no one "gets it", luckily it was a hobby project.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I currently have no plans to update or add anything to it. It is feature complete for what it is... which is basically a small example of what you can throw together with C2 in a few days...

  • You can control flow quite a bit using groups that you activate and deactivate as needed to compartmentalize things you don't want activating until you want.

  • But does C3 correct this problem...

    I would recommend playing around with the free version of construct 2 since it has more tutorials and if you like the environment then try the free version of 3.

    Worst case scenario you like construct 2 and decide to buy it, then you are out $99 for a lifetime version of Construct 2... but you will (should) get a discount on your first year of construct 3 subscriptions of around $50 bucks for the first year (with purchase of C2). Construct 2 will be supported for quite some time and will import directly into Construct 3 as long as you don't rely on too many third-party add-ons.

    I am on the fence about C3 along with quite a few others. As a hobbyist, C2 does all I need and C3 will "feel" for all intends-and-porposes like a beta for at least a year or two with very limited information and tutorials.

    I may one day move up to it if the right project comes along but it won't be until Paypal is supported or monthly subscriptions were a thing (which they say they won't).

  • Most behaviors already use dt.

    But if you want to control dt you can use On-Start of Layout>System set dt

  • If the Bird on collision event was separate from after the Bullet collision event then most likely the issue was that sometimes the bird would be destroyed by the collision before the other could be triggered and very occasionally not.

    The key is to put them all in one event...

    Bird on collision with bullet

    -bullet destroy

    -System add 1 to score

    -bird destroy