Chadori's Forum Posts

    • Post link icon

    Hi newt .

    ultimateassassin - Nice Edit.

    ams - I think you need a license for that. That is a risky move if you ask me. But if it is not for commercial then maybe you can do that.

    • Post link icon
    • Post link icon

    I'm talking about lifetime

    Of course!!! The richest man in the world. AKA Bill Gates worked all his life and only managed to earn $64 Billion (Net worth). So $70 Billion is definitely very big.

    • Post link icon

    [quote:1d2m89au]is 70 billion a day enough?

    ultimateassassin - Is this a click bait? $70 billion a day will make you richer than Bill Gates in a day.

    Regarding your question it's a very good monthly income if you ask me.

  • Currrently an external calculator is needed to scale any image other than a square.

    Hahaha. yeah + 1. I agree on this, but for the meantime you can always make a vbscript to calculate faster.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Sadly, the Official IAP is only for one time purchase items:

    For IntelXDK Crosswalk Export

    You can use Cordova IAP from cranberrygame to make consumable items.

    But it is a paid product :

    Scirra Store: https://www.scirra.com/store/construct2 ... ugins-1662

    Forum Topic:

    plugins-construct2-cordova-plugins_t109586

    Also, how can I display the product price converted in native currency format of the user/player?

    It is already automated by google play. You just need the plugin for C2, Cordova IAP plugin, I mean.

    For Cocoon.IO Export

    Free plugin:

    https://github.com/CocoonIO/cocoon-plugins-c2

    Tutorial: https://www.scirra.com/tutorials/5013/c ... out-paying

    A small tip:

    The stable one for me & easier to manage is the IntelXDK export with Cordova IAP plugin. That is only my opinion. I've tried both and I find

    IntelXDK to much more stable. But it is paid though.

    Good luck.

    • Post link icon

    prashant3999 - Yeah, and we age the same. So apparently you watch anime too.

    • Post link icon

    Clickteam fusion seems a little bit non-maintained but that is only my opinion. Remember you are in a C2 related forum, so obviously we'll go for Construct 2.

    But honestly, if you want to make RPGs. I suggest RPG Maker.... If you want a custom made RPG design, I suggest Construct 2 or Unity for 2D.

  • - Hey try mobile also if you want. Many mobile gamers like that kind of game.

  • It's nice to see apps made in C2 that aren't games but still successful.

  • Love it!!! Nice . Rhythm games are hard to make & you pulled it off.

  • Amazing Game. So many downloads already, and you have just started!

  • Well made. Nice game!

  • I have voted .

  • But I still have this doubt ->

    Would I be wrong to create a tile map 1280 x 768 and separate it into 256x256 blocks? And mount the background with 256 blocks as a puzzle. Or it would be like to play the whole picture?

    It would still consume the same amount of memory regardless if you use tilemaps, tiledbackgrounds or sprite if the whole image is imported.

    The only optimization in separating images is that you can use 1 image for similar objects. For instance, there are 2 castles but the body are both the same, only the

    head is different because it differs in color. So we can have 2 castle heads (red & blue) but only 1 body which will be cloned into 2 instances. Now you saved a few memory from the castle body.

    For Example Explanation:

    The Background Parts: (2 Castle Body & 2 Castle Head)

    Whole Image

    1 Castle Head = 500 KB

    1 Castle Body = 500KB

    Needed Castle Head : 2

    Needed Rotated Castle Body : 1

    Needed Non-Rotated Castle Body: 1

    Imported Castle Head : 2

    Imported Castle Body : 2

    Total Memory Usage: (500KB * 2) + (500KB * 2) = 2,000 KB or 2MB

    Separated Image

    1 Castle Head = 500 KB

    1 Castle Body = 500KB

    Needed Castle Head : 2

    Needed Rotated Castle Body : 1

    Needed Non-Rotated Castle Body: 1

    Since the actual Castle Body image is the same for both Castle, we only need one. We'll just clone the 1st Castle Body image to make a 2nd instance and modify it's angle to fit our need.

    Imported Castle Head : 2

    Imported Castle Body : 1

    Total Memory Usage: (500KB * 2) + (500KB * 1) = 1,500 KB or 1.5MB

    I hope that explains it.

    Reference: https://www.scirra.com/blog/ashley/3/te ... ap-tidbits