Author

Topic: ▄■▀■▄ 🌟BITVEST🌟 👍WIN BY 🔶PLAY 🏦INVEST 💬SOCIAL ➡ 🔺PLINKO🎲DICE🎰SLOT🎡SPIN - page 267. (Read 199785 times)

legendary
Activity: 1273
Merit: 1004
Why I must contact support to withdraw my funds?
hero member
Activity: 896
Merit: 1000
The odds to hit at each position, from the center outwards are

1:5.092, 1:5.729, 1:8.184, 1:15.004, 1:36.009, 1:117.029, 1:546.133, 1:4,096, 1:65,536

That is assuming you consider being 1 left of center not the same result of 1 right of center and so on. Double the odds of all but the center if you're using a mirrored row.

Thanks for the info zod
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
The odds to hit at each position, from the center outwards are

1:5.092, 1:5.729, 1:8.184, 1:15.004, 1:36.009, 1:117.029, 1:546.133, 1:4,096, 1:65,536

That is assuming you consider being 1 left of center not the same result of 1 right of center and so on. Double the odds of all but the center if you're using a mirrored row.
legendary
Activity: 3612
Merit: 1023
Cashback 15%
hero member
Activity: 896
Merit: 1000
Odds i found on page three of OP

Chance to hit -

Red Bar:
1111x -  1 out of 32768 chance to hit!
111x - 1 out of 2048 chance to hit!
22.7x - 1 out of 273 chance to hit!
7.77x - 1 out of 58.5 chance to hit!
4x - 1 out of 18 chance to hit!
2x - 1 out of 7.5 chance to hit!
0.25x - 1 out of 1.6 chance to hit!
0.2x - 1 out of 5 chance to hit!

Orange Bar:
444x -  1 out of 32768 chance to hit!
55.5x - 1 out of 2048 chance to hit!
15.5x - 1 out of 273 chance to hit!
6x - 1 out of 58.5 chance to hit!
3.52x - 1 out of 18 chance to hit!
1.5x - 1 out of 7.5 chance to hit!
0.7x - 1 out of 4 chance to hit!
0.5x - 1 out of 2.85 chance to hit!
0.2x - 1 out of 5 chance to hit!

Green Bar:
111x -  1 out of 32768 chance to hit!
44.4x - 1 out of 2048 chance to hit!
11x - 1 out of 273 chance to hit!
5x - 1 out of 58.5 chance to hit!
3x - 1 out of 18 chance to hit!
1.2x - 1 out of 7.5 chance to hit!
1x - 1 out of 4 chance to hit!
0.6x - 1 out of 2.85 chance to hit!
0.25x - 1 out of 5 chance to hit!

Teal Bar:
33x -  1 out of 32768 chance to hit!
11x - 1 out of 2048 chance to hit!
3.3x - 1 out of 273 chance to hit!
1.8x - 1 out of 58.5 chance to hit!
1.3x - 1 out of 18 chance to hit!
1.14x - 1 out of 7.5 chance to hit!
1.1x - 1 out of 4 chance to hit!
1.03x - 1 out of 2.85 chance to hit!
0.4x - 1 out of 5 chance to hit!

Blue Bar:
4x -  1 out of 32768 chance to hit!
3x - 1 out of 2048 chance to hit!
2x - 1 out of 273 chance to hit!
0.14x - 1 out of 58.5 chance to hit!
0x - 1 out of 3.3 chance to hit!
0.1x - 1 out of 7.5 chance to hit!
1.05x - 1 out of 2.85 chance to hit!
3x - 1 out of 5 chance to hit!

Your custom bar:
Same odds as of red! Wink

Hope it's helpful for all of you!

since some users where having issues not understanding odds
newbie
Activity: 54
Merit: 0
Yes, it should never occur again. Also, it doesn't prevent divesting. Only investing, playing, and withdrawals are locked.
I cannot tip, play, invest or withdraw.

EDIT: This issue was resolved to my satisfaction at the developers earliest convenience.
full member
Activity: 168
Merit: 100
My current build im using recommended starting is 60k plus but ive built to 0.01 with 20k sats.

Code:
var bet = {base: 0.0000001, current: 0.0000001}; //Modify these values to change your base bet
var placeBet=function(){
$.post( "action.php", { prizes: "1000,16.9,0,0,17,0,0,0,0,0,0,0,17,0,0,16.9,1000",
token: token,
secret:0,
bet:bet.current,
bits:null,
user_seed:makeid(),
act:"play"
})
  .done(function( data ) {
if (!data.success){
alert(data.msg);
return 0;
}
   
var win=data.game_result.win;
console.log( win, data.data.balance );
if (win>bet.current){
bet.current=bet.base;
if (bet.current }else if (win bet.current=(bet.current-win)*1.1; //Modify this value in order change the on loss multiplier
}
//console.log(balance);
placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},3000); //This is the value the script uses to re-send the rolls if the server doesn't respond
  });
}

//re-randomize our client seed to ensure provably faireness

function makeid()
{
    var text = "";
    var possible = "abcdef0123456789";

    for( var i=0; i < 16; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

placeBet();

Cool, thanks Sparked! I might have to pop back in to give this script a shot...
sr. member
Activity: 350
Merit: 250
My current build im using recommended starting is 60k plus but ive built to 0.01 with 20k sats.

Code:
var bet = {base: 0.0000001, current: 0.0000001}; //Modify these values to change your base bet
var placeBet=function(){
$.post( "action.php", { prizes: "1000,16.9,0,0,17,0,0,0,0,0,0,0,17,0,0,16.9,1000",
token: token,
secret:0,
bet:bet.current,
bits:null,
user_seed:makeid(),
act:"play"
})
  .done(function( data ) {
if (!data.success){
alert(data.msg);
return 0;
}
   
var win=data.game_result.win;
console.log( win, data.data.balance );
if (win>bet.current){
bet.current=bet.base;
if (bet.current }else if (win bet.current=(bet.current-win)*1.1; //Modify this value in order change the on loss multiplier
}
//console.log(balance);
placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},3000); //This is the value the script uses to re-send the rolls if the server doesn't respond
  });
}

//re-randomize our client seed to ensure provably faireness

function makeid()
{
    var text = "";
    var possible = "abcdef0123456789";

    for( var i=0; i < 16; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

placeBet();

Nice work dev was looking forward for it Smiley
sr. member
Activity: 448
Merit: 250
My current build im using recommended starting is 60k plus but ive built to 0.01 with 20k sats.

Code:
var bet = {base: 0.0000001, current: 0.0000001}; //Modify these values to change your base bet
var placeBet=function(){
$.post( "action.php", { prizes: "1000,16.9,0,0,17,0,0,0,0,0,0,0,17,0,0,16.9,1000",
token: token,
secret:0,
bet:bet.current,
bits:null,
user_seed:makeid(),
act:"play"
})
  .done(function( data ) {
if (!data.success){
alert(data.msg);
return 0;
}
   
var win=data.game_result.win;
console.log( win, data.data.balance );
if (win>bet.current){
bet.current=bet.base;
if (bet.current }else if (win bet.current=(bet.current-win)*1.1; //Modify this value in order change the on loss multiplier
}
//console.log(balance);
placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},3000); //This is the value the script uses to re-send the rolls if the server doesn't respond
  });
}

//re-randomize our client seed to ensure provably faireness

function makeid()
{
    var text = "";
    var possible = "abcdef0123456789";

    for( var i=0; i < 16; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

placeBet();


nice  amount big win small bets with great custom bet
but the custom bet so risky with big bet
to hit 17x so difficult but its imposible with low chances , on my side better red line Smiley
hero member
Activity: 896
Merit: 1000
My current build im using recommended starting is 60k plus but ive built to 0.01 with 20k sats.

Code:
var bet = {base: 0.0000001, current: 0.0000001}; //Modify these values to change your base bet
var placeBet=function(){
$.post( "action.php", { prizes: "1000,16.9,0,0,17,0,0,0,0,0,0,0,17,0,0,16.9,1000",
token: token,
secret:0,
bet:bet.current,
bits:null,
user_seed:makeid(),
act:"play"
})
  .done(function( data ) {
if (!data.success){
alert(data.msg);
return 0;
}
   
var win=data.game_result.win;
console.log( win, data.data.balance );
if (win>bet.current){
bet.current=bet.base;
if (bet.current }else if (win bet.current=(bet.current-win)*1.1; //Modify this value in order change the on loss multiplier
}
//console.log(balance);
placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},3000); //This is the value the script uses to re-send the rolls if the server doesn't respond
  });
}

//re-randomize our client seed to ensure provably faireness

function makeid()
{
    var text = "";
    var possible = "abcdef0123456789";

    for( var i=0; i < 16; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

placeBet();
hero member
Activity: 896
Merit: 1000
Yes, it should never occur again. Also, it doesn't prevent divesting. Only investing, playing, and withdrawals are locked.
really? would this lead the people to discontent this site due to the locked withdraws? you just wish people to lose? not a good sign to others including yours. Roll Eyes

The system only triggers when the site thinks a user's balance isn't what it should be. Any accounts made within the past month onward are unaffected by this auditing bug, as well as <1% of older accounts being effected. The audit errors are mostly caused from less data logging from the early days of Bitvest. The withdrawal "locking" only makes it so the withdrawal requires manual review instead of processing automatically.

ill make sure to explain this to new users who don't understand it.
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
Yes, it should never occur again. Also, it doesn't prevent divesting. Only investing, playing, and withdrawals are locked.
really? would this lead the people to discontent this site due to the locked withdraws? you just wish people to lose? not a good sign to others including yours. Roll Eyes

The system only triggers when the site thinks a user's balance isn't what it should be. Any accounts made within the past month onward are unaffected by this auditing bug, as well as <1% of older accounts being effected. The audit errors are mostly caused from less data logging from the early days of Bitvest. The withdrawal "locking" only makes it so the withdrawal requires manual review instead of processing automatically.
legendary
Activity: 1568
Merit: 1005
beware of your keys.
Yes, it should never occur again. Also, it doesn't prevent divesting. Only investing, playing, and withdrawals are locked.
really? would this lead the people to discontent this site due to the locked withdraws? you just wish people to lose? not a good sign to others including yours. Roll Eyes
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
Yes, it should never occur again. Also, it doesn't prevent divesting. Only investing, playing, and withdrawals are locked.
legendary
Activity: 1974
Merit: 1007
We modified how games are stored to allow for increased betting capacity and better storage. That error is a result of a new automated security system recently implemented. We're working out a few edge-cases where it false-positives on older accounts, or accounts which received admin credits before /tip existed.

Ohhh, cool. Thanks for the response! Just to clarify, once it's been resolved on our account, we can invest/divest freely, correct? Like it shouldn't pop up again?
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
We modified how games are stored to allow for increased betting capacity and better storage. That error is a result of a new automated security system recently implemented. We're working out a few edge-cases where it false-positives on older accounts, or accounts which received admin credits before /tip existed.
legendary
Activity: 1974
Merit: 1007
We are performing some schema changes and database optimizations, the site may appear slow or down for a while.

Edit: We're back, good luck everyone Smiley

Is this related to why investments are erroring out with "please contact support?"
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
We are performing some schema changes and database optimizations, the site may appear slow or down for a while.

Edit: We're back, good luck everyone Smiley
hero member
Activity: 896
Merit: 1000
Currently working on bitvest app, if there is any features you guys are interested in do tell.

Also come join us earn from btc from chatting.

what will be the feature we will see in the APP? android or iOS?

At first it will have chat support, then i will work on reading data so people can keep track of investments and so on.
As for adding the game and changing password an such ill likely not be able to do so unless its securely tied into the site.
you'll login via apikey an secret, an the app will save it. you'll have to choose to disconnect your api keys to switch over to different accounts.
hero member
Activity: 640
Merit: 500
Random 100 - 1000% Rainbot for the next hour in celebration of reaching 5,000,000 bets!

Did this end already? poor me. I haven't there again.

Yes it has ended for quite a while already. It was announced more than 9 hours ago, and the event was planned to run "for the next hour" only.
Jump to: