gregmax17's Forum Posts

  • I'm using Cordova to build my game for iOS and I'm wondering if there is a cordova plugin I need to install. I'm able to get android working by installing the plugin: https://github.com/maxmoore14/AndroidInAppBilling

    But is there one for iOS?

    In the runtime.js file for the IAP plugin, if you search for

    window["store"][/code:33wppses], its assuming this property/object is set... BUT what should be setting this? 
    
    I'm very lost and I need a solution asap, I would appreciate any help on this. Thanks
  • I'm using the IAP plugin on the android trying to get consumables working. I have done some digging around and it seems the IAP plugin isn't finished?This is what I mean, looking at some code:

    CordovaAndroidStore.prototype.supportsConsumables = function ()
    {
    	return false;
    };[/code:1p2nv0an]
    
    The phonegap/cordova plugin for android (com.mcm.plugins.androidinappbilling/www/inappbilling.js) seems to have the ability ready (again looking at the code)
    
    [code:1p2nv0an]InAppBilling.prototype.consumePurchase = function (success, fail, productId) {
    if (this.options.showLog) {
    	log('consumePurchase called!');
    }
    return cordova.exec(success, fail, "InAppBillingPlugin", "consumePurchase", [productId]);
    };
    [/code:1p2nv0an]
    
    So why is this left out? Can someone please point me in the right direction on how to setup these events/actions in Construct 2? Or how to call these methods, etc.
    
    Thanks in advance
  • Just like the subject asks, I was wondering why CocoonJS was removed/hidden, thats all.

  • Any update on this? I am running into the same issue

  • damn... it looks like I missed the memo

    Looks like I need to enter one of these competitions!

  • Aww... I didn't get the memo!

    The beta is over and now I have to pay the full price :(

    Any chance of specials in the near future?

  • I have one suggestion: votes from new users should not be counted. If I had some time to waste, I would probably create a lot of new users to vote on my game :)

    HAHA.

    I second this.

  • About that, I wanted to hear people's feedback about my submission, should/could I create a thread about it, or it's is against the rules somehow?

    That is a great idea. It doesn't say anything in the rules about not doing it, so I don't see why not.

    It would be GREAT if people can give at least 1 pro and 1 con the games they play. I would also like to have the pro(s)/con(s) be private. Keeping it private will force users to give their honest opinion(s) and feedback, and not someone else's.

    Is it ok to ask users who played my game to PM me their pro(s)/con(s) on my game submission?

  • When I was making my game for the Competition recently. I had an object that would disappear and then reappear after 4 seconds. When I made my object disappear, I would set an action to be isVisible = false. The thing is though, when I did this, the Solid behavior still existed!

    This makes sense to me, but I would appreciate an option/action to set the Solid behavior by isSolid or something.

    My little small (and bad) work around was to set the position of the object I wanted to disappear to an X value of -9999. And then set it back to the original X position afterward I wanted it to reappear.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Just curious about this Anchor behavior, does the object(s) that you want to be anchored have to be on its own layer? So if I have 10 anchored objects, there needs to be 10 layers? Or can they all fit onto 1?

  • Just curious, when will the results be in? I didn't see it mentioned on the rules.

  • Yes as long as the link is the the WP blog entry itself not the blog front page!

    Yes, that is what I was going to do, to the blog entry itself.

    a) Space Racer

    b) http://www.big-g-games.com/2011/10/26/racing-game-prototype/

    c) United States

  • Is it ok, if I submit the URL to my game if its through my wordpress blog entry? (I prefer this so I can use Google Analytics, heh)

  • I don't think this would be hard to do. In fact, it would be great if it was a plugin. I would like to call a JS function, passing X number of arguments to it.

    If there isn't a way at the moment, I request this :)

  • I am looking through the Ajax plugin, and I have random general questions in regards to it, and possibly, a additional options for it.

    • why is it using the 'GET' method only?
    • what if I want to pass variables and values (I assume this has to be set in the URL string?)
    • is it only limited to the same domain? And/Or is mobile a bit more loose on this?
    • JSON? Can I get my data back in JSON format please?

    Thanks