IndieKiwi's Forum Posts

  • its very nicely polished

  • 1) If i buy it's for one time or per year ?

    One Time

    2) Can i use this license on my laptop and my desktop PC (because i travelling) ?

    Yes

    3) Tor publishing is included or i pay fees Google Play and IOS ?

    You'll need to buy licences yourself for those

    4) Can i export the project on my computer (for testing with my phone) and .exe ?

    I haven't done it for exe, but you will be able to export for your phone and pc easily.

    5) Before the price it is 99$ and now is 129$ it's me or the bug and why ?

    Don't know, but there are some deals on right now: https://www.scirra.com/blog/151/constru ... ale-now-on

  • Good idea, logging meta data would also work for a competition. My suggestion is to not let the player know you are collecting this data. Maybe have a submit score button that submits along with the meta data, with each score.

    Don't send by email, it is inconvenient and open to tampering.

    And remember ANYTHING can be faked, especially images and data. Good luck

  • To my knowledge changing the programming language doesn't make the game more difficult to hack once it is compiled.

    At the hobby/indie level of game development it might be too much to worry about if it is a single player game. If it needs to go online then you could consider using thresholds like if a score can realistically be 100 like in flappy birds, but ends up being over 1,000,000 then you can detect this easily and block some game features or their account.

    Hackers will target the variables, but they won't need to know how they are named and their type, one of the most basic forms of hacking would be scanning values and looking for changes to alter scores, health (godmode), and time. You could also wait for them to do it and then ban them and their score as they appear.

    Mobiles can implement the detection just as easily with the same methods as on pc. Most mobile users wouldn't have the option to hack unless they are running android through an emulator or if they have rooted their phones.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • https://support.google.com/googleplay/a ... 9140?hl=en

    You can get a developer account, but not a merchant account.

    You should consider using advertising instead of selling your app

  • Package name is already used in the market. Look out for "not.yet.specified" when you export your project in intel xdk / cacoon export settings and change it to something else that no one has used before.

    Also in your project settings in C2, change it there too in case it is not.yet.specified

  • If the RSS is in xml, add the Ajax and XML objects.

    Use the Ajax Object to get the xml document and then load in into the XML document.

    Then format and extract the data from the XML document and to display it

  • very nice video indeed!

  • So as a student i got a free Windows app store licence that i didn't' renew when it expired. Today I got a email from Microsoft and it appears that my account is reenabled because they changed their subscription to a one-off. (email below)

    Has anyone published their C2 games to the Windows app store, and Is there an audience on the Windows App Store?

    Lifetime Dev Center subscriptions 
    
    Starting September 16, 2014, all Windows and Windows Phone developer accounts in Dev Center will transition to a one-time only Dev Center registration fee. 
    
    With this change, you will no longer have to pay an annual renewal fee to maintain your Dev Center account. 
    
    If you recently received an account renewal notification via email or in your Dev Center dashboard, you can ignore it as it was generated prior to instituting the change. 
    
    All current Dev Center accounts will continue, without interruption. For more detail, please refer to today’s announcement for further detail. 
    
    Thank you, 
    The Windows Store team[/code:ff3y85rc]
  • If you want to open it in a external website. Add the browser object, and make it load the url of where more of your games are listed

  • Random time or random object?

    Random time

    System > every x seconds with random(0,10) > spawn object from the spawner object

    Random item

    1. generate random number floor(random(0,10)) and assign to a local variable

    2. After this is done, if random = 0 spawn itemA, if random = 1 spawn itemB etc.

  • I think if your not purposely making a virus then you have nothing to worry about. If something like that occurred then the responsibility would be much more on google that a user could accidentally program a virus on their controlled operating system and release it on their marketplace!

  • op made the pou clone

  • Include the function object in your c2 project, then you can call functions with

    iframe.contentWindow.c2_callFunction("Func",[]);

    Edit: Where "Func" is the name of the function to call and [] is an array of arguments.

    Thanks for this. Is it possible on client side to have the C2 iframe call the parent container's js?

  • Another way like the json method is using xml. it is formatted a little better that json so that it is human readable and you can use xpath to extract the values.

    Try googling "online json tool" or "online xml tool" those should help you build your files faster without needing to download software/plugins