lucid's Forum Posts

  • What about 13?

  • ok thank you.

    I can definitely see why all the fuss about exe support even more so now.

    when c2 was still a glimmer in your eye, there was a survey about 'which 2 platforms' wasn't there?

    just curious, if exe is a definite planned feature? and would it more likely be after c2 is total and complete html5 working, or at a certain point will the second platform be added and progress along with html5 toward the initial fully functional version

  • yeah, I agree with the general consensus.

    at first I had the same thought as you, when I first got here.

    basically. Oh, behaviors are nice for people who don't have the know how to do this on their own.

    but it's so customizable, there's really no reason not to use them. the result will be basically the same. you just save yourself alot of time, and have the convenience of instantly beginning on the things that will make your game unique. anything you can add to a platform movement you made from scratch, you can add to the object using platform behavior

    alot of people tout custom movement as a way to make more unique versions of behaviors. I personally see it more as a way to make behaviors that don't exist.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Its an error in one of those plugins.

    If you can narrow it down, it'll increase the likelyhood of it getting fixed in the next build

    Here's how.

    Check the actions of each of those plugins. Probably array or hash table

    Find the action that swaps values, and then post the python error for that plugin on the bug tracker. It will be a very simple fix

  • This is probably a newb question as far as web dev goes, but will there be any way to embed these games iinto a page so we can hide the html5 and keep control of it? Or will all games on the web made with html5 be open source just by rightclicking and clicking "view source"

  • Are you using any nonofficial plugins, and if so which ones?

  • Sorry, my mistake,

    Yeah, its double quotes to add a quote to a string, but the string still needs to be surrounded by quotes.

    "So this would be a string, and the word ""white"" would have quotes around it"

  • Double

    Like:

    ""White""

    The wiki linked in the 'Read this first' thread at the top of this forum has a list of such system expressions

  • if you haven't been able to make any games test without that error

    reinstall construct, and let it install dx9 even though you already have a more updated version. the dx9 install has some extra files that don't get installed automatically when you update dx

  • yeah, people are getting pretty passionate about it, and unfortunately as much as i and some construct loyalists are fine with it, and just eager to get them on their way financially, the roughly 65 percent who approve is not very promising. I think honestly it's just hard for people to put aside the fact that it's not complete at the moment. Until it is, you're going to have to be sustained on the community who already trusts it will eventually get there.

    with a complete product, there will be less resistance, but i think it'll be important to point out how many +1 versions competitors have, most have more than 1 every two years.

    OR!!!

    just thought of this.

    maybe you should just have a set group of features that construct 3 will have, still do incremental updates, but when it reaches that level, people who have paid for the subscription fee will still get it even if it's called c3

    it won't even be a subscription, it'll be a future proofing promise. its the free update guarantee, which extends to +1 versions as well.

    that'll feel better for most. which i think is the main problem, is this is a different business model, and the words just don't sit right with alot of people. which may seem insignificant, but it's not...it's pretty much everything when it comes to selling something. to them it feels almost like a product rental, and not only that, but a rental of something incomplete with no clear idea of what they'll have when the rental expires.

    promise what 2.0 will have. at that point, decide the features of 3.0, increment the updates over the next months or years, and deliver, and I think people will be happier.

    maybe even at this early stage, it might be a good idea to compile a list of promised features for 2.0, to get some more early adopters, as well

  • yeah, i only recently learned about Goldbach's conjecture, which states that:

    Every even integer greater than 2 can be expressed as the sum of two primes

    and

    Every integer greater than 5 can be written as the sum of three primes.

    it really doesn't seem like it should be possible.

  • Try file again using the actual path. Not apppath

  • Why not put it further up on the event list then?

    If all else fails, you can make a pv called msgboxgettingclicked

    On msgbox clicked

    Set it to 1

    On mouse button released set it to 0

    Add a condition to the menu button to make sure it is 0

  • oh thanks guys, just came back here, my solution was much uglier:

    assuming your decimal number was x:

    ((x<0.1)?("0."&right(formatdecimal(1+x,3),2)):formatdecimal(x,3))