Post
Topic
Board Gambling
Re: I have a +EV method for a dice site,[CONFIRMED +EV is possible]
by
mfaspk
on 04/07/2015, 14:57:22 UTC
Sorry I wrote 3507x by mistake.. its 3307x currently with the worst house edge, about 33.86%. (Previously it was 4961x with 50.39%)

Quote
   manual_bet = function (type) {
        if (Runing == true) {
            return;
        }
        Runing = true;
        activate_user_bets();
        var bet = $("#txtBet").val();
        var multiplier = $("#txtMultiplier").val();
        if (manual_validate() == true) {
            var clientseed = localStorage.clientseed; // local client seed
            getResultManual(Longid, Idc, bet, multiplier, type, clientseed);
            provably_fair_reload();
        }
        else {
            Runing = false;
        }
    }

and worst of all... they still send multiplier value to make the roll, like they have learned nothing yet.