Everade's Forum Posts

  • Please note that the official online multiplayer implementation of Construct 2 and 3 still has game breaking issues, yet the devs never bothered fixing them up. They really don't care about the multiplayer feature. I've given up asking for fixes after all those years which made me stop using Construct eventualy.

    Wouldn't recommend Construct if you're going for multiplayer at all.

    And if you still plan to do so, maybe try a multiplayer plugin instead.

    If it's just for prototyping and you don't care much about sync issues and objects going missing... sure, go for it.

  • Any chance that a feature can be added to "Send to peer" that instructs the host to process messages from itself (via loopback). Something like a check box on the "Send to peer" event that says "Process host originated messages to itself".

    Unless I'm missing something obvious...this causes a lot of redundant code between Peer and Host event groups that could be addressed in a common group if the host could be told to process it's own messages.

    Again...apologies if I'm missing something obvious.

    construct3.ideas.aha.io/ideas/C3-I-319

    Not sure what you're trying to do.

    But i guess this suggestions could possibly solve your problem?!

    Has been one of the most popular suggestions since over 2 years, but scirra still doesn't bother.

  • You do not have permission to view this post

  • I was also looking for this when i started using Construct.

    Like many other tools in construct, customization possibilities are very limited to specific use-cases.

    Set image points and forget about the collision mask and its related actions altogether.

    Gives you so much more possibilities.

    Not just for picking points or ingame visibility, but for actual mathematical solutions for simply everything.

    If you're going for something simple, that's great.

    Otherwise stop trying to use the built-in tools because they're most likely not going to serve your needs.

  • Hope it helps.

    To achieve what you want, simply focus first and decide on what exactly you want to achieve.

    In the end it's always the same:

    1. Pick the right object (left side -> events/expressions)

    2. Modify the right variables/values (right side -> actions)

    If you are not sure on how to do something specific, take a look at the manual.

    All the basic things are covered there and should help you to find your way around.

    construct.net/en/make-games/manuals/construct-3/system-reference

    Here you see some connections as of data is being set to which picked object.

    I see at the bottom still some issues, such as the Knob.Value which sets its value to the last selected Knob. But it should give you some idea on what is connected with each other.

  • That's because i didn't touch your code down there. ^^

    Here, fixed that for you.

    Please note that i didn't read myself through your code, so it's absolutely possible that there's still something messed up.

    You should personaly know what you're doing.

    If you can't keep up with your own pace, make sure to add comments to your own code so you understand what's going on, even 5 years later.

    https://gofile.io/?c=VRqIsM

    You can still put that bottom part together with what i wrote to make it smaller.

    --------------------

    Update

    Here's a cleaner version:

    gofile.io

    Enjoy

  • Ok i think this is what you want:

    gofile.io

  • I'm confused, i thought that's what you were looking for?!

    You said "reset to initial values".

    And that's exactly what it does.

  • gofile.io

    I've set a default instance variable directly onto the knob.

    Of course your could also set local variables directly into the code.

    Or use global variables instead.

    But this should work just fine.

  • Use the system expression:

    ProjectVersion

    Return the version entered in to Project Properties. Note that this is always returned as a string, not a number.

    So you can simply put a text object onto your main screen.

    Then set text by expression:

    Now update your project property - version by hand just how it makes sense to you (right below Project Name).

    And it will update automatically ingame while testing or for actual releases.

    Usualy 1.0 is considered a major release, so start below and set your personal goals.

    Something like:

    major.minor[.build[.revision]] = 1.2.12.102

    en.wikipedia.org/wiki/Software_versioning

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I don't think so, at least not with built-in features.

  • I can't remember what i've had, but i used the year voucher close to the release of C3 and i don't have any vouchers left available, so it was just 1 for me. But take it with a grain of salt, i'm really not sure. Maybe they changed it in the meantime.

    scirra.com/users/goury

    Your Construct2 Medal is still there, it's just not displayed on construct.net because this website is mainly about Construct 3.

    Scirra.com = Construct 2

    Construct.net = Construct 3

    I've loaded tons of old capx from Construct 2 into Construct 3 and it always worked perfectly fine.

    The only issues that you might run into are missing plugins. A lot of REX plugins have been ported already though: wasthataddonported.surge.sh

    While some are simply no longer required.

    But i would say that it's definitely worth it to port it over.

  • You do not have permission to view this post

  • If it's supposed to be a classic tower stacking game, why don't you disable physics once the object has been placed?

    There's no need to further simulate physics with hundreds of stacked sprites, especially not for those outside of view.

    I would suggest:

    On collision -> wait till somewhat stabilized -> disable physics if stable

    So the next one falling down has a flat surface to work with.

    Unless that's your intent of simulating everything with accurate physics.

    However that's gonna be a tough one.

    Some hybrid physics might be better to simulate a long wiggly stick based on current height.

  • You do not have permission to view this post