Author

Topic: bustabit.com -- The Social Gambling Game - page 141. (Read 293938 times)

newbie
Activity: 56
Merit: 0
October 15, 2014, 01:56:25 PM
One thing we know for sure, is when the hash is sent to the client -- the result is locked in place
and the server *cannot* change the outcome
That is provably the case
It is impossible for me to vary the outcome of the game depending of bets
that is a fact



^^^^^^^^^^^^^^^^




the cumulative bet amounts do in fact influence the outcome because they will crash the game if they reach a certain limit.

 Tongue


so the chosen outcome is not set in stone ...


what am i missing?



legendary
Activity: 2940
Merit: 1333
October 15, 2014, 01:07:14 PM
Dooglus, can you check if the game is rigged?  Embarrassed

The game used to be hosted on heroku, which only lets you change things by uploading a whole new version, and each upload gets logged, along with its git sha identifier which means it's possible to know what code is running and to be sure that it hasn't been tampered with.

When that was the case, I checked the code out, and it was identical to what is available in the github repository.

The 'crash point' generation code is pretty simple, random, and not based on anything to do with how much people bet (other than that games end early with a forced payout to stop the house losing more than 2 BTC in any single game).

Someone reported Eric to heroku, saying his site was in violation of their T&C, and it was removed. He has since moved to a different host, and I no longer have access to verify what code is running.

tl;dr: no, but I could in the past and it looked good then
newbie
Activity: 56
Merit: 0
October 15, 2014, 12:58:18 PM
Dooglus, can you check if the game is rigged?  Embarrassed


dooglus is linked with them why would he bash his own investment? lmfao  Cheesy
full member
Activity: 149
Merit: 100
October 15, 2014, 12:52:40 PM
Dooglus, can you check if the game is rigged?  Embarrassed
member
Activity: 100
Merit: 10
Vires in numeris.
October 15, 2014, 04:23:48 AM
Eric, the site's down Sad

The web server is online but the game server isn't
Code:
Failed connect to game.moneypot.com:443; Connection refused


The host is up though. It's 4:25am in GDL, so I guess you have to be patient some more.
member
Activity: 100
Merit: 10
Vires in numeris.
October 15, 2014, 04:19:29 AM
As always, nice work Doog.

I'm not convinced it's right, because it's not clear how to say that part of the bonus pool you expect to get if you win or lose. I think I would prefer to see the calculator ignore the bonus completely, since it's almost a zero sum game.

I agree, I'lll change it to be zero sum for the house (instant crash in 1 in 101 games, as opposed to 1 in 100) and we can really simplify the calculator and calculations.

The calculator is a bit inconsistent. It doesn't take the bonus into account for 'Profit if win', but it does for 'House Expected Return' and 'House Margin'. One can be more explicit about the potential bonus for the profit. I don't know what a good story for the house numbers are except for assuming 1% bonus, because that's what it basically is from the house's point of view.

Yea thanks Doog!

It's definitely not very intuitive for such a simple game looking at the equations. I took a  for 25k bet amount @ 1.21x after seeing the example  calculations and factoring out the bonus. Let me know if you concur Eric/Doog.

b = player bet
m = player multiplier
probCrashing = 0.01 + (1 - 0.99/(m-0.01))

Your crash probability is slightly off. It should be 0.01 + 0.99 * (1 - 0.99/(m-0.01)) or more explicitly p + (1-p) * (1 - 0.99/(m-0.01)) where p is the instant crash probability.

winProb = 1 - probCrashing = 1 - (0.01 + (1 - 0.99/(m-0.01)))
expRet = expHouseWinAmount - expHouseLossAmount = (b*((1 - 0.99/(m-0.01)))) - (b*(m-1)*(1/m))

Has to be adjusted with the correct crash probabilit, but then it's fine. But note that the expRet doesn't take bonus into account.
full member
Activity: 149
Merit: 100
October 15, 2014, 03:09:26 AM
Eric, the site's down Sad
newbie
Activity: 9
Merit: 0
October 15, 2014, 02:37:08 AM
https://www.moneypot.com home page is loading OK however https://www.moneypot.com/play just displays Connecting to server... Anyone else having the same issue?

I've tried from Chrome & Safari and from two different computers.

Same here.  Game froze but chat window was still active.  I tried to refresh and got the same error.
member
Activity: 80
Merit: 10
October 15, 2014, 02:28:14 AM
https://www.moneypot.com home page is loading OK however https://www.moneypot.com/play just displays Connecting to server... Anyone else having the same issue?

I've tried from Chrome & Safari and from two different computers.
full member
Activity: 168
Merit: 100
GreenCoin
October 15, 2014, 12:51:42 AM
If I was to auto-bet and stop at 1.01, and the game crashed at 1.01, then do I get paid the amount back or is it accounted as a loss?
legendary
Activity: 3654
Merit: 1165
www.Crypto.Games: Multiple coins, multiple games
October 14, 2014, 09:43:39 PM
to many 1.0 then crashed .. lol
always lost my kite =P
hero member
Activity: 882
Merit: 1000
Exhausted
October 14, 2014, 09:41:07 PM
can i have some to try?

iD: banklunjo

After you register your account, you can claim 2 bits (200 satoshi) every hour on https://www.moneypot.com/request
newbie
Activity: 9
Merit: 0
October 14, 2014, 06:50:11 PM
As always, nice work Doog.

I'm not convinced it's right, because it's not clear how to say that part of the bonus pool you expect to get if you win or lose. I think I would prefer to see the calculator ignore the bonus completely, since it's almost a zero sum game.

I agree, I'lll change it to be zero sum for the house (instant crash in 1 in 101 games, as opposed to 1 in 100) and we can really simplify the calculator and calculations.

Yea thanks Doog!

It's definitely not very intuitive for such a simple game looking at the equations. I took a crack for 25k bet amount @ 1.21x after seeing the example  calculations and factoring out the bonus. Let me know if you concur Eric/Doog.

b = player bet
m = player multiplier
probCrashing = 0.01 + (1 - 0.99/(m-0.01))

winProb = 1 - probCrashing = 1 - (0.01 + (1 - 0.99/(m-0.01)))
expRet = expHouseWinAmount - expHouseLossAmount = (b*((1 - 0.99/(m-0.01)))) - (b*(m-1)*(1/m))

winProb = 0.815
expRet = 36.157
full member
Activity: 154
Merit: 101
October 14, 2014, 02:45:22 PM
As always, nice work Doog.

I'm not convinced it's right, because it's not clear how to say that part of the bonus pool you expect to get if you win or lose. I think I would prefer to see the calculator ignore the bonus completely, since it's almost a zero sum game.

I agree, I'lll change it to be zero sum for the house (instant crash in 1 in 101 games, as opposed to 1 in 100) and we can really simplify the calculator and calculations.
legendary
Activity: 2940
Merit: 1333
October 14, 2014, 01:54:57 PM
Also if anyone can do the calculations and show their work I'd be thankful.

Can you use 25,000 wager with 1.21x multiplier, plug it into a formula and show me how the calculator gives the player a 81.675% probability of winning. Also plug it into equations that show House Expected Return of 45.8125 and House Margin of 0.18325%?

Here's how the calculator gets the numbers it displays:

>>> winProb = 0.99 * 0.99 / (1.21-0.01)
>>> winProb
0.81675

>>> expRet = 0.01 * 25000 - winProb * (0.01 * 25000 + 25000 * (1.21 - 1)) + (0.99 - winProb) * 25000*0.99
>>> expRet
45.8125

>>> margin = 100 * expRet / 25000
>>> margin
0.18325

The expected return is found like this:

Code:
       houseExpectedReturn: function(amount, cashOut) {

             var p1,p2,p3;
             var v1,v2,v3;

             // Instant crash.
             p1 = 0.01;
             v1 = amount;

             // Player win.
             p2 = this.winProb(amount,cashOut);
             v2 = - 0.01 * amount - this.profit(amount,cashOut);

             // Player loss.
             p3 = 1 - p1 - p2;
             v3 = 0.99 * amount;

             // Expected value.
             return p1 * v1 + p2 * v2 + p3 * v3;
        }

I'm not convinced it's right, because it's not clear how to say that what part of the bonus pool you expect to get if you win or lose. I think I would prefer to see the calculator ignore the bonus completely, since it's almost a zero sum game.

99 times out of a hundred the game pays out an extra 1% as bonus prizes, and the other 1 time it keeps all the bets.

Suppose every round had a total of 100 bits bet. 99 rounds in a hundred will pay 1 bit in bonuses, and the other round will keep all 100 bits.
newbie
Activity: 9
Merit: 0
October 14, 2014, 12:17:58 PM
Does anyone know the new webhost being used? Also if anyone can do the calculations and show their work I'd be thankful. https://bitcointalksearch.org/topic/m.9193154
member
Activity: 66
Merit: 10
October 14, 2014, 06:29:15 AM
can i have some to try?

iD: banklunjo
full member
Activity: 182
Merit: 100
October 14, 2014, 06:14:03 AM
Are you planning for another sig campaign soon?

There is already one sig campaign going on right now. Since the site is going to be auctioned off, I doubt there will be another sig campaign by the current owner.
full member
Activity: 157
Merit: 100
HUKOM BITAY! ✝✝✝
October 14, 2014, 05:54:44 AM
Are you planning for another sig campaign soon?
member
Activity: 77
Merit: 10
October 14, 2014, 12:03:13 AM
1. Look for games where the top bet is not disproportional compared to overall pot.  If pot is 120k and top bet is 100k, the most in bonus you can get is 1.2% of your wager, which will not likely cover the house edge since you contribute 1% of that bonus.

I'm not sure.

Are you including your own bet with that?

If the top bet is 100k, you should bet 100k too, meaning you get a little over 2% of the pot if you cash out just after the other 100k player.

I think it's optimal to match the highest bet.

If pot is 120k and top bet is 100k, that means my own bet is included.  "Pot" is entire bet pool.

I agree that if bankroll is not an issue, matching largest bet is optimal or at least close to it.  In some situations it might be the difference between max bet and sum of remaining wagers, but I'm not sure.  e.g., whale bets 1M, 5 other players bet total of 700K, a bet of 300K might be better than 1M, since you only have to beat the whale to "cash" in the bonus.

More than often that is not the case, and for those smaller bankrolls playing against whales it is important to know that in many situations it simply cannot be +ev.

Jump to: