Nav: (Display/Hide) - Home - About the Author / this page

Current Projects: Americana Engine (Game Engine Development)

Tuesday, October 30, 2012

Sharing More Coins Per ZB Post

Note: Solved by daily gifts and message center, which give you 4k per gift received (once per friend, per day).

Previously, people had a much easier time grabbing mojo though conventional methods (mainly through fortune cookies, which through a trick allowed players to collect hundreds of thousands of mojo from a single person), allowing people with just a few friends to play quite a bit with that extra mojo. Now, coins gained are only based off of leveling up and feeds, and top players were mainly determined by those who could collect the most - which meant having to join groups and add tons of fellow players for both competition and coin sharing.

Unfortunately not everyone is comfortable adding tons of strangers in order get lots of coins. Even more are not comfortable about the near requirement of using third party programs to collect bonuses for them.

Solution? More coins shared in fewer posts - it won't have much effect for those with hundreds of Zuma friends, but for players who are only comfortable with a small amount Zuma players on their friend lists, this should even the odds a bit.

Effect: Greatly increases the amount of coins you can share to others per post. You get no additional coins from doing the below steps.

1. Fire up Fiddler, make sure you disable FB Secure Browsing

2. Enter the following, somewhere between the OnBeforeResponse Brackets...

        if(oSession.uriContains("/facebook/zumablitz/ajax.php")
            && oSession.GetRequestBodyAsString().Contains("getZumaSpinResults"))
        {
            oSession.utilSetResponseBody('{"response":{"payoutColumn":10,"consecutiveDays":1}}');
        }

This will make the game think you got 1 million coins per spin (and this is the only payout that allows you to share 4000 coins compared to 1000). However the server will know your true coin total, and will reset to that amount when you refresh.

3. (Optional) Enter somewhere between the OnBeforeRequest Brackets...

         if (oSession.uriContains("/dailyspin.xml")) {
            oSession.url = "bchantech.dreamcrafter.com/zumablitz/custom/dailyspin.xml";
        }

Not required, but prevents spamming others with feeds saying 'I just won ONE MILLION free coins', because you didn't. It connects to my server to get a replacement string file, so if you are unable to load the game, you can omit these lines.

4. Clear browser cache.

5. Start Zuma Blitz (from bookmarks, not via a collect feed). - and keep Fiddler open while the game is running to share extra coins for your spins.

0 comments: