ThereBits's Forum Posts

  • Good night, I was wondering where I can find tutorials to export and import animations for construct 3.

    I've already looked and tried to do it on my own, but without success.

  • Good morning guys,

    I've been trying to do this for hours and I can't,

    My intention is to create an effect identical to among Us, when the shadow hides game elements

    But I'm having problems with z-order and shadows, as all objects in my game are arranged at all times to avoid unwanted overlaps

    Below I share a simple .c3p with everything I've done. It has a print of the effect on Among US that I want in my project

    Below I share a simple .c3p with everything I've done. It has a print of the effect in Among US that I want in my project if my translation hasn't made it clear.

    https://drive.google.com/file/d/1biG2wfzGxYL4ac86RlKYCgwV-PtveEHl/view?usp=sharing

  • are all native

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Is anyone facing this problem and has any temporary solution for it?

    Any project that I try to execute it freezes the screen as soon as I do some interaction in the game.

    Sound effects still continues in the background.

    Tagged:

  • Good morning, how are you?

    I want to play a tower defense game, but I'm having trouble moving

    The enemy slightly pauses between the checkpoints that I marked on the map, is there a way to solve this by leaving linear movement?

    Here goes the project if the translation has not been legal, sorry now.

    https://drive.google.com/file/d/1nhwfNxCR4AjhPKL7PUPonRi4GDVjIoxq/view?usp=sharing

  • Try this

    it was very strange to touch the cell phone

    I'm replacing it with other values to make it as identical as possible to the instagram feed

  • You can use lerp.

    https://www.youtube.com/watch?v=dcqiF7KFLVc

    I know this command, the problem is that I don't know which values to get

    https://drive.google.com/file/d/1AnJxEkCsnpwC2A-a5BvQGXOp-ti3fd5X/view?usp=sharing

    I'm trying to smooth out this command:

  • Good afternoon, is there any way to smoothly roll the layout using "scrolly"?

    I'm using the official example "Touch: Panning"

    And I was wondering if you can leave this smooth movement.

    Thanks in advance =D

    Tagged:

  • Good night, I was testing the new functionality of construct 3 and for me it worked perfectly in the browser.

    But when I export to android the images are all invisible when I open the device.

    Am I forgetting something? Or because it is a new feature should I expect a fix?

    I'm very excited about SVG Picture, for me it's being one of the best updates!!!

  • Doesn´t admob try to show you targeted ads, with the possibility that it may not find a fitting ad and instead doesn´t show any? If you check your admob you can see something called match rate (iirc). You may not have a high match rate, that´s why it shows ads sometimes or on other devices (where a different google account is used for the matching).

    Give it a few days and see if you notice improvement.

    Thanks for the answer, and I was a little worried about this data, my game is that this correspondence rate is below 20%.

    Is there any setting in admob that I can increase this rate?

  • these are the recent changes : construct.net/en/forum/construct-3/how-do-i-8/breaking-change-mobile-advert-145087

    configuration was taken out at runtime you now set up at the start but looks like you've done this.

    there were a few posts recently about ads not working in production and live apps, but in test mode and on debug apk it was fine. not sure what the resolution was. I'm about to release my game to the store, i'll let you know if I see anything weird.

    Thanks for the touch, it seems that something is wrong with plugin or admob and unfortunately it is something that is out of our reach. I only discovered this problem when I published my game in the play store.

    I just searched the mobile phones of friends, the banner appears on some devices already others not like mine.

  • Hello good afternoon,

    It was always easy to put banners in my projects, but I realized lately that banner ads don't work properly.

    I will describe my problem in steps to help translate.

    1 - When I export my project to Android with test mode ads, everything seems to work perfectly (awarded, interstitial, banner)

    2 - Also when I export APK debug with Mobile Advert plugin = test mode disabled, everything works perfectly (awarded, interstitial, banner)

    3 - When I create the Signed release APK version, the ads seem to work with difficulty, the banner no longer appears, interstitial appears rarely, award winner appears normally.

    I don't know where the mistake is, everything seems to be right for me.

    At least the banners working for me are already good size.

    I've read all the Mobile Advert documentation and set up admob tbm, but it looks like something has changed and I'm not sure what it is

  • Your approach was correct, but you made a few mistakes. You need to use UIDs, not IID here, because IID is not a unique number. Use "For each" when there is a possibility that an event can pick multiple instances and you need to process each instance differently (say, pick a different target). I also recommend using Timer behavior instead of "Every X seconds".

    Here is the fixed project:

    https://www.dropbox.com/s/00lmkfa9f50grur/RTS_fixed.c3p?dl=0

    thank you, you can't imagine the light you gave to my project, I can now understand more about how instances work here.

    Thank you very much =D

  • Hello!

    I have a clash of clans game, and I'm trying to make units attack buildings and units.

    Only I can't understand how instances work, to detect enemy or nearest building and start attacking as expected.

    I'll say what I want in parts for the translation not to disturb:

    1 - Create unit with touch is right after she looks for the nearest unit to attack (I think I did it right)

    2 - Make the unit attack towards the enemy unit (this is being more complicated for me)

    3 - Soon after eliminating enemy unit move to another nearest unit

    here is the .c3p of what I could do

    https://drive.google.com/file/d/1UeOWLBUTO1VoFG0InekzgFrdFV8gZ8J8/view?usp=sharing

    Tagged:

  • Use the "pick highest/lowest value" expression under the family "Allies" object, select your health variable and choose lowest. This will pick the instance with the lowest health, then add another condition "pick nearest / furthest" expression also under the "Allies" object, this will pick the closest instance. Store this picked instance in a variable of the healer then do pathfinding to it.

    Because of the translation I did here, this was the maximum I understood

    drive.google.com/file/d/1QGZkTTg9axgXT6p7z0nqU0AiQYjTK6T3/view

    Could you help me with more details?