lionz's Forum Posts

  • Are you talking about referencing something like 'is this object scaled twice as large as another object' ? Usually you would set scale based on something else happening. For example if a button is pressed, you could set the scale lower but the check is if button is being pressed, not if the scale or scale variable is 0.5. What were you thinking of using it for?

  • Construct has the ability to create so much more than just games. It has the power to create full blown web apps. Everything except the user interface that is...

    Potentially, but the focus is on games. It's game making software.

  • This sounds like you tried to create a UI and got frustrated at your own bugs so now you want a UI template? You can probably find some premade files somewhere. I tend to avoid using html elements and use sprites, much easier to handle. Also you can't blame Construct 3 for your own bizarre approach to making an inventory UI. I made an inventory with a background image, a sprite for the slot to display an item, and an array.

  • Looks like the text boxes are already displaying the text? You said template so you didn't make this? That will be the problem. tokenat reads text from one string based on dividers which can be a symbol. You don't create a different array, any other text to display would be in the next row and based on the answer chosen you keep choosing that same position in the next string.

  • The answer depends on how you've set up to read the text file at the moment. Let's see how you're reading choices and assigning them to options in the game.

  • You've created an android app therefore that is your android ID. If you create an iOS app you get an iOS ID

  • Your admob account is not at risk if you set the mobile advert plugin to test mode, which is enabled by default.

  • Oh are you using C2. Try Rex's MoveTo behaviour if you want third party plugin, you say move from position A to position B with that.

  • Tween behaviour

  • Also your counter=50 condition doesn't seem to do much unless for some reason you are using it to catch the times you don't have 50 items in an array.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Well yep you didn't describe the problems or share a file so impossible to help. The thing about apk failing to load is likely not mobile advert related.

  • Shift+F4 is a shortcut for debug preview

  • Well it's up to you to back up and save different files. Are you referring to the construct 3 file at the time where you exported the first APK? That's on you...

  • Well my method takes out the need for overlap checks so he can be next to the car. UID is an identifier for each object. Under your spawn police action you have set police.variable to car.UID.

    You then have car with UID 999 and police with variable 999 for example so they relate.

    Then you say police on destroyed, pick car by UID : police.variable and then turn animation off.

    It is just a way of relating the police to the car, something which you don't have right now.