Sorry I wrote 3507x by mistake.. its 3307x currently with the worst house edge, about 33.86%. (Previously it was 4961x with 50.39%)
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.