Mipey's Forum Posts

  • The first one. Why? Are you stalking me?

  • Miha. Slovenian.

  • If Score % 20000 = 0

    What if you are at 19999 points and gain 10 points? It skips over 20000, which means the above condition is only run if you hit exactly 20000, 40000 or 60000 score.

    If the score doesn't decrease, I'd suggest something like this:

    + if Score/20000 > var

    Lives = Lives +1

    Var = Var +1

    What does this do? Well, it tracks how many times you gained life by scores! When you hit 20000 score for the first time, the above condition is true since var = 0 at the start and Score/20000 = 1 > 0. Once the event is processed, it also increases var by 1, so that it won't run again until you pass the next milestone.

    Meanwhile, you can abuse lives all you want!

  • You can create a ticket on the tracker and tick 'private' - that way only developers will see it.

  • An option would be nice, in form of tick box in application properties, so that it is on per project basis.

  • First two letters of my name and surname combined. The Y is just a remnant from the 'cool teens', but Mipe is a common nickname around here. *shrug*

  • Darn, I was hoping the memory leak would be plugged already.

    Oh well! Quite a few welcome changes, though.

  • No, this calls for the ... DUEL!

  • Or just provide a link to the August 2008 redistributable. Everyone should be updating their DX9, but Microsoft screwed this up big time.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • So basically "include" other .cap projects?

  • Server not found. Are you hiding something from me?

  • Yes, it is possible. However you will have to put in some effort; I'd suggest getting some experience with Construct first, then you will have a rough idea how to implement the above gameplay examples.

    Just mess around with Construct until the release candidate is released and the major bugs are ironed out, then you will have everything you need to churn games like that out.

  • Any chance of changing the name to Construkt or something? It's hard to find anything on this on google/youtube because the word Construct applies to thousands of other things.

    Currently it tops on Google, if you add extra keywords, such as 'tutorial', you will always get Construct. Use 'Scirra' keyword to get it on the very top.

    As for Youtube, there aren't many video tutorials for Construct yet, because it makes sense to wait until it is feature complete. Just ask Deadeye about maintaining his platform tutorial and it ain't even video.

    Anyway, what difference a proper keyword makes: Scirra Construct on Google Videos

  • Dig the art style!

  • Oh, I see... you are filtering by Enemy, not Sprite.

    Set the collision condition to Sprite: on collision with Enemy. Or use the advanced overlapping, which can filter both.