lionz's Forum Posts

  • Nah what you're describing you must do it manually

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • By the time it takes someone to respond you could've done it :) there are options to apply things to a whole animations or all animations but this is for more collision and image points. Changing speed and looping is just a default setting, you can change everything with events. Stack in or out of subfolders, not sure what that means.

  • Add the Solid behaviour to the wall

  • There are many different ways. You could start out simple and have a function for each npc, every time you press enter, it adds to a variable which acts as a counter and then sets a different bit of text. So whatever you did so far to start and show the conversation you show different text through sub events against variable conditions and when you want to end you just add the actions to close the chat etc on the final sub event.

    You can also store chat in an array. You can set this up in an array file then load it into an array and read from it. Each npc would have a variable that relates to a column of the array and when you chat it runs through each row of that column.

  • You can add a Trigger Once condition

  • Did you regenerate the obstacle map after creating them?

  • By continues to walk infinitely I assume you mean the player isn't moving but it's playing the walk animation? Why are your walk left and right conditions so different? Well the bottom event for idle is kind of redundant. Really the top one should overrule for idle but it may not trigger if the player is considered as moving for some reason or the player is not considered to be on the floor, you can debug it and check.

    Duplicate I responded on the other one

  • Not an Else, you can create a sub event if Monster.Pickedcount=0 then Win.

  • Correct

  • With coins as a global variable you should be able to add and subtract for spending. When you buy a character subtract the coins, to say whether the character is unlocked you could use another global variable changing it from 0 to 1.

  • You can add several conditions together, you can do this with those you mentioned to filter the instances. Or one can be a sub event. Did you try this?

  • You have the variable you just didn't use it in conditions, get rid of the repeat and use NumOfBloonsSpawned < 20 instead, that means it only creates one every 0.5 seconds until there are 20 of them.

  • To make the time random you use a random time instead of a set number of seconds, every 5 seconds won't be random but you can use every random(a,b) time to make it different each time.

  • 0 is 0,0 so that's setting cow and 99 to the same cell. Probably age is at Y=1 so 0,1. If the data already exists in a spreadsheet you can load it into the array.