lionz's Forum Posts

  • You created an instance variable 'frame' but it's not used, do you need it?

    Because your animation is 120 frames, you can cut down on image memory by removing the backwards animation and instead playing the forwards animation in reverse by setting animation speed to -60

  • Add timer behaviour to object A and say, object A on collision with object B, start timer. Then have another event 'on timer' destroy object A. And another one to cancel the timer like object A not overlapping object B, stop timer.

  • You do not have permission to view this post

  • You do not have permission to view this post

  • The first one just because the second way will drive you crazy

  • I think you can't access the variable in the way that you're describing. Based on the design of the game and how letter are used maybe there is a better way to do it in general though. For now you can just use condition, if family.type=A then set var to family.A. You could use a function where you send through the type as a parameter then apply as necessary.

  • If that is the important column which determines item order then put this in the first column which is used for sorting.

  • If you have one object type Character you don't need to use a Family. In general though if i'm understanding what you want correctly, you can access through some condition : if Family.letter=A, set var to family.A

  • You can't with the default action but why are you doing it? Maybe there is a better way to do what you are trying to do.

  • Think I answered this one already, for each (ordered) by rank : move to top/bottom of layer

  • Of course it depends on the exact design of the game and how it works but for example on start of turn you can predetermine the enemy actions then have the player do theirs and add each action to a row as such :

    1. enemy1 > block > target=enemy1

    2. player1 > magic > target=enemy1

    then you run the actions in turn, popping the top of the array each time so you are always running row 0.

    1. run block function on family instance enemy1(updates variable that they are blocking)

    2. run magic function on family instance enemy1(apply damage to enemy1, show magic related UI etc)

  • See above I forgot to mention that you don't need to import from an outside source. You can create an array file in Construct then load it into the array and use the logic I mentioned where the row is the wave number. It's on the project bar at the bottom create array file and then load it into an array on start of layout.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I should've mentioned you don't even need to import it, you can create the array file in Construct and load it into the array if you want a table of stats.

  • This looks fine. You could add all the stats to CSV or JSON and import into an array and use the wave number as the array row number to make the event smaller (i.e. set TimeMin to array.at(CurrentWave,1), set TimeMax to array.at(Currentwave,2) but there is no downside really to applying the actions like you have them at the moment.

  • As you mentioned in the post, this way of making it will get overblown when you add detail and many things happening at once with many instances. You need more control over the gameplay and since it's JRPG I would create a turn system in an array. For each action you can add the person's turn to a new row and then run each row in order and pop off the top row when it's done. This also provides visibility of what's happening. Within the row you can include things like the target UID, even the damage calculated so you can see it before it's acted out.