oosyrag's Forum Posts

  • I never got the impression that you would lose access to your project as your subscription expires, as there will be still be a free version available from my understanding. You might just lose the ability to export, although that is just a guess at this point. Having a monthly option would be nice though.

  • Use one or the other, not both.

    (In reference to the pin behavior and setting position manually)

  • You would need some sort of verification system, which would be outside of the scope of the base functionality of C2, although there are many free third party plugins that allow for communication with other API's. An AJAX request to your webserver could be the most straightfoward solution, but it really depends on the method you want to use to verify the user.

  • Generally speaking, I would recommend using a single variable to represent a single property/idea, rather than using an individual boolean variable for each possible value.

    So each of your characters has a unique number associated with it. Save that number to your "SelectedCharacter" variable, and use that number for your event conditions.

  • Can you post your capx or an example? Hard to visualize your problem. Your approach seems complicated for something like zooming, although I assume you have your reasons.

    Have you tried using the Browser - On Resized condition to recalculate your numbers when the browser gets resized with the new browser window dimensions, or possibly adjust the size of your helper sprite accordingly?

  • When using - as your token, the expression does not take into account the ;. So for the source, the tokens age broken up as follows:

    (Text 123 )-( Text 456;

    Text 789 )-( Text 10112;)

    Which would be tokens 0,1, and 2.

    If you must use that format, you will want to use nested tokenats, first with ";", then with "-".

  • Forgot about the pickedcount expression! Ignore my suggestion earlier, using pickedcount is the way to go.

  • Yes. Add the browser object, and get the URL via the browser.URL expression.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • The Browser object has a URL expression that will return the current URL. You can then parse out the room number with tokenat, and use that to join a room.

  • Ah, my mistake.

  • There is a monthly subscription. Check the stickied pricing post...

  • Add an "else" condition to the second event.

    Events run top to bottom, so it is checking the first event, setting it invisible, then the second one runs, and it is invisible, so it sets it visible again in the same frame.

  • Use a counter variable

    For Each Sprite

    Animation frame = 0, add 1 to counter

  • Cloud features, interface (arrays, images, text editors), integrated exporter, multiplatform support... quality of life stuff. Improvements across the board in terms of usability.

    But if your point is that things you can do in C3 you can also do in C2, then that would be more or less true.