igortyhon's Forum Posts

  • Hi.

    Maybe the file is not fully downloaded or your browser or OS security settings are preventing it from downloading or unpacking.

    Check with this archiver or on another PC.

    7-zip.org

  • Hello, lionz

    Are you the one who always negatively evaluated my posts? I noticed a long time ago in which topics we answer together, I always get a minus in karma. Do you have a problem with this?

  • The 8-direction behavior prevents you from overlapping solid objects. Therefore, it will not work directly.

    You can attach an invisible sprite with a sensor that is a few pixels larger than the character, and it will work.

  • Event 1: If (a=1 and b=2) or (c=1 and d=2) then (actions)

    Hai. This condition, which you have created and which can be generated in most modern programming languages, shows that your solution to the problem is not optimal. Unfortunately, the speed of development is now valued more than the rational use of computing power. That's why modern AAA games are so demanding on resources.

  • Hi.

    The new minification doesn't work on any level. There are only standard plugins in the project.

  • The latest beta version solves this problem.

    editor.construct.net/r402-2

    The latest beta version solves this problem.It's worth making a backup copy of the project beforehand.

  • Admob doesn't show you a real banner because the game hasn't been checked and isn't ready to show real ads. It has nothing to do with the type of banner.

    I use a standard banner for horizontal games. Here's a recent discussion.

    construct.net/en/forum/construct-3/how-do-i-8/add-banner-ads-183221

  • Hi.

    All this is the basis and is available in the tutorials and help.

  • Construct does not hide the banner when transitioning between scenes.

  • I show them at the beginning of the level and hide the banners only before showing other ads.

    I also use protect, I count the loading errors and if there are more than three, I don't try to show the banner for that session anymore.

  • I forgot to add that the most disappointing thing about a banner is when you see how much profit it brings in relative to a reward or interstitial.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hi.

    Unfortunately, the banner is not displayed in the preview, to check it you need to install the apk package and install it on your smartphone.

    Remember that you need to hide the banner when you show another type of advertising.

  • In that case I have an example: dropbox.com/scl/fi/3r96xbou4uoqrkxjmi9jr/aero_sword.capx

    That's funny.

    I wanted to create an example like that too.

    File *.c3p

  • I just discovered the "trigger once" mechanic and it looks useful. I am trying to spawn a sprite to orbit around the character, but when the conditions are met, it is not happening. Even if the vent triggered once, it should still orbit correct?

    The issue I was trying to solve, was that Create Object was creating many objects in orbit so it just looked like a complete circle around the character hence the Trigger Once solution.

    Is this the right use case?

    thanks

    Hi.

    It looks like you want to make mechanics as shown in many commercials, where weapons like swords rotate around the player.

    I recommend you to check all text objects and then compare their contents.

    Trigger once in your case will not help, it is better to check the number of objects on the sheet before creating, if zero then create a new one, you can compare with a variable limiting the maximum number of spoons. This way you can add many weapons of the same type.