lionz's Forum Posts

  • The variables you're pulling out appear to be "0" "1" and "3" but you can't set those to be an int with the "" present, so they just become 0. A possible fix is to remove the "" around the numbers in the room variable, I think they're unnecessary anyway?

  • You said hitting a brick wall but not really what the problem is haha. Do you just mean the animations are not working as expected in all scenarios? This could be a problem with another set animation action overruling these ones. Do you have other logic elsewhere to set an animation on the pathing object that could be interfering? If not this then there could be a problem with the object angle, check that it is changing for the pathing object by using debug view.

  • In speech synthesis action instead of the 0 use loopindex

  • You add them to the same event and right-click make it an OR block. Or you can use system : is between values, or say is less than/greater than a value.

  • For example, this ugly piece is trying to get this parameter works:

    room.UID(11).short_desc

    where short_desc is instant variable of object room with UID 11.

    Then you send through the UID and short_desc variable through the function as parameters, and on the function end you pick the room by UID with param, and set text to param short_desc or whatever you plan to do with that.

  • Explain as simply as possible what you are trying to do with the function because this isn't making much sense The original explanation given is too vague and doesn't really say what you are trying to do. You're trying to pass an array object through a function? It will be possible to achieve what you want to do but I cannot work it out from the information given.

  • When you pick up object 1, you set object1.x and object1.y to some global variables. When you drop object 1, you set object 1 position to object 2, then set object 2 position to those global variables.

  • I would do it with - For each (ordered): family object order by family.height+family.width ascending : family object move to bottom of layer

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • convert excel file to json. import json.

  • You can use 'is moving along path' to run a walking animation. For direction-based anims you can try using the object angle.

  • You use the Browser object to detect if there is an update ready and download updates. No it shouldn't delete existing save data.

  • On drop : move to layer

  • If it says you are approved and ad serving is enabled then that's fine. Create a new file with an interstitial and see if it works with your configuration. If that works then there is a problem with your main game logic.

  • I gave you the fix already, just thought we were trying to get you to understand it. The fix is replace : 'array.at(param)' in the first box with 'param'. The condition you are using, the X position acts as like saying array.at so you don't need to use it again. I don't know how else to explain it.

    I think if you do want to write it in the format you have now you could use system compare 2 values haha.