Cascade Games's Forum Posts

  • Ads will overlap. Therefore, you should arrange your objects in such a way that they don't interfere with the ad. Be aware that Apple and Google have rules that prohibit you from purposely placing buttons close to the ads to prevent accidental clicking. (even though I've seen many still do it) ;)

    Thanks for the reply

  • Hi,

    I am thinking about using banner ads in my project (I haven't used banner ads earlier). I am having few doubts regarding it:-

    The size of my game is 720x1280. If I add banner ads, will it overlap content of my game,or will it itself shift below the content so that it does not overlap the content? If it does, this means that size of my game will change?

    Thanks in advance

  • I just did a debug APK build and it worked fine. So I can't see that anything's wrong with the build server here.

    Can you give a check to error log in the build server? Maybe you get some clues

  • Same issue. Mine shows "Build Failed" and size of project is around 80 MB

    Ashley ,don't take me wrong but build server should be robust. There may be some urgent need for someone to compile something

  • Just make a function that sets the values of the global variables you want to change. Don't overcomplicate it!

    There are more than 200 mini games inside a single game. So...

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • > Sorry for a random question

    > Why many don't use Construct 3 online APK service to make apps? Few clicks and APK is made

    >

    > Is there some extra advantage on manually making APK file?

    The standard Cordova builds are not compliant with Google quality standards.

    For example: native GUIs (like popups) uses deprecated themes. The Back-button doesn't work. The (fallback) icon is created incorrectly. All those things must be amended manually before building the APK.

    edit: also for analyses reasons, since it is very easy to investigate logs while running you app in AS.

    Sorry but what is fallback icon?

    And is it very tough to do these things? I have never even touched AS

  • Sorry for a random question

    Why many don't use Construct 3 online APK service to make apps? Few clicks and APK is made

    Is there some extra advantage on manually making APK file?

  • > Code will detect the variables declared in the current event sheet and reset only them

    No, this is not possible, because global variables are not really assigned to event sheets.

    Maybe if you add a specific prefix to a group of variables (for example EnemySpeed, EnemyDamage), you will be able to loop through all variables with this Enemy* prefix in a script. But still I don't think it's possible to get their default values to reset them to.

    Yes, there is prefix in variables allocated for every different event sheet.

  • Isn't there some way through scripting that I can accomplish this?

    For example:- Code will detect the variables declared in the current event sheet and reset only them

    Anyway, super thanks for trying to help me. I think that I should apply for new feature

  • Hi,

    I want to reset global variables,but only for "current event sheet". I don't want to reset global variables for whole game

    How can I do this? I am even ready to go for script way

    Thanks in advance

    Ashley Is it even possible?

    Same situation

    Error: Checking Java JDK and Android SDK versions

    ANDROID_SDK_ROOT=~~/androidSDK (recommended setting)

    ANDROID_HOME=~~/androidSDK (DEPRECATED)

    Using Android SDK: ~~/androidSDK

    :wrapper

    BUILD SUCCESSFUL in 1s

    1 actionable task: 1 executed

    Subproject Path: CordovaLib

    Subproject Path: app

    FAILURE: Build failed with an exception.

    * What went wrong:

    Could not initialize class java.nio.file.FileSystems$DefaultFileSystemHolder

    * Try:

    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

    * Get more help at https:/~~/help.gradle.org

    BUILD FAILED in 1s

    Command failed with exit code 1: ~~/gradlew cdvBuildRelease -b ~~/build.gradle

  • Hi,

    In my game,I want to show user ads every 3 minutes(may change the interval later on). But I can't figure out how to implement this. Any ideas friends?

    Thanks in advance

  • I don't think it's possible. Also, it's a violation of Google Play policy, possibly AppStore too:

    https://support.google.com/googleplay/android-developer/answer/9898684

    Ya,you are right.It may be illegal

  • Hi,

    I was playing with an idea:- user will rate my game on play store/app store and in return a portion of the game will be unlocked.

    Is there any way to detect whether user has rated my game or not?

    Thanks in advance

  • Hi Ashley

    Suppose I have a function like this

    * On function 'Function1'

    * Parameter 'x' (Number)

    -> System: Set Variable1 to ""

    -> Functions: Set return value "horray"

    ----+ System: x = 0

    -----> System: Set Variable2 to "qwerty"

    After executing the return statement,why is the substatement after return statement is getting executed? I mean,shouldn't function end after return statement?