Author

Topic: ▄■▀■▄ 🌟BITVEST.io🌟 💰WIN BY 🔶PLAY 📈INVEST➡🔺🎲🎰🔲 | BET CONTEST ▄■▀■▄ - page 260. (Read 201655 times)

hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
hero member
Activity: 896
Merit: 1000
We're going down for maint in ~15 min, it should last no longer than 10-15 minutes, probably shorter
donator
Activity: 3228
Merit: 1226
★Bitvest.io★ Play Plinko or Invest!
 Info: It's Mega Happy Hour for 8 Hours today, Rainbot Payout is 400%!
member
Activity: 69
Merit: 10
member
Activity: 69
Merit: 10
A big thank you to sparked for helping to co-ordinate these events! <3
hero member
Activity: 896
Merit: 1000
legendary
Activity: 1988
Merit: 1007
Charts don't show up for me in Chrome. Console logs show the following error: "Uncaught ReferenceError: Hh is not defined"
Looking into it.

Edit: Does clearing your cache have any effect? Do you have any plugins which may effect how things are loaded?

Everything's good to go now Smiley I cleared my cache and disabled Adblock for that page, and it's working fine now. It seems to be Adblock that was giving it trouble.

Weird. Since yours was fixed I loaded the page again just now and it works fine here too. I had adblock off all yesterday and had no effect.
full member
Activity: 168
Merit: 100
Charts don't show up for me in Chrome. Console logs show the following error: "Uncaught ReferenceError: Hh is not defined"
Looking into it.

Edit: Does clearing your cache have any effect? Do you have any plugins which may effect how things are loaded?

Everything's good to go now Smiley I cleared my cache and disabled Adblock for that page, and it's working fine now. It seems to be Adblock that was giving it trouble.
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
Multi-Drop Bets now determine their win/loss correctly

Code:
var bet = {base: 0.00001, current: 0.00001, currency: "bitcoins", bits:1, max:0.01, multiplier:10}; //Modify these values to change your base bet, currency may be "tokens" or "bitcoins", bits is the number of drops made
var placeBet=function(){
   $.post( "action.php", { prizes: "125,20,1.52,1.42,1.32,1.32,1.22,1.12,0,1.12,1.22,1.32,1.32,1.42,1.52,20,125",
                  token: token,
                  secret:0,
                  bet:bet.current,
                  bits:bet.bits,
                  currency:bet.currency,
                  user_seed:makeid(),
                  act:"play",
                  v:ver,
                  })
  .done(function( data ) {
   if (!data.success){
      alert(data.msg);
      return 0;
   }
   
   var win = total_win(data.game_result.win);
   var total_bet = data.game_result.total_bet;
   console.log( win, data.data.balance );
   if (win >= total_bet){
      bet.current = bet.base;
      if (bet.current < bet.base) bet.current = bet.base;
   } else if (win < total_bet) {
      bet.current = (bet.current-win/bet.bits) * bet.multiplier;
      if (bet.current > bet.max) bet.current=bet.base;
      if (bet.current < bet.base) bet.current=bet.base;
   }
   placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},5000);
  });
}

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

function makeid(){
    if (typeof window.crypto !== 'undefined' && typeof window.crypto.getRandomValues === 'function'){ //Check if CSPRNG is supported
        var array = new Uint32Array(16);
        window.crypto.getRandomValues(array); //Set each value in the array to random 32-bit CSPRNG values
        var r='';
        for (var i = 0; i < array.length; i++) {
            r += String(array[i] + "-"); //Join all items in the array into a string with 256Bits of CSPRNG
        }
        return CryptoJS.SHA256(r).toString(); //Hash the string into a valid format for a user seed
    } else {
        return CryptoJS.SHA256(String(Math.random())).toString();
    }
}

function total_win(win){
    var total = win.reduce(function(a, b) {
        return a + b;
    });
    return total;
}

placeBet();
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
Charts don't show up for me in Chrome. Console logs show the following error: "Uncaught ReferenceError: Hh is not defined"
Looking into it.

Edit: Does clearing your cache have any effect? Do you have any plugins which may effect how things are loaded?
full member
Activity: 168
Merit: 100
Charts don't show up for me in Chrome. Console logs show the following error: "Uncaught ReferenceError: Hh is not defined"
legendary
Activity: 1988
Merit: 1007
We've added live (5-minutely) charts for some of our site stats, this will be expanded greatly in the near future Bitvest Charts

glad to hear that we will have more info about the stats , but I don't know why the charts aren't working with me
are they coming soon ?? or they are already available cause as I said they are not working here
Keep the good work up , Regards
Are you running any script blockers? They require JavaScript to render.

No script blockers here but still can't view. Things like Bitcoinwisdom and other sites with charts are all fine, Sad. Also disabled adblock.
hero member
Activity: 896
Merit: 1000
300% happy hour is now live.
It will be one for two hours
legendary
Activity: 2436
Merit: 1804
guess who's back
We've added live (5-minutely) charts for some of our site stats, this will be expanded greatly in the near future Bitvest Charts

glad to hear that we will have more info about the stats , but I don't know why the charts aren't working with me
are they coming soon ?? or they are already available cause as I said they are not working here
Keep the good work up , Regards
Are you running any script blockers? They require JavaScript to render.

oh yeah now they are working pretty good , thanks for pointing that out
hopefully we will see more stats coming soon
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
We've added live (5-minutely) charts for some of our site stats, this will be expanded greatly in the near future Bitvest Charts

glad to hear that we will have more info about the stats , but I don't know why the charts aren't working with me
are they coming soon ?? or they are already available cause as I said they are not working here
Keep the good work up , Regards
Are you running any script blockers? They require JavaScript to render.
legendary
Activity: 2436
Merit: 1804
guess who's back
We've added live (5-minutely) charts for some of our site stats, this will be expanded greatly in the near future Bitvest Charts

glad to hear that we will have more info about the stats , but I don't know why the charts aren't working with me
are they coming soon ?? or they are already available cause as I said they are not working here
Keep the good work up , Regards
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
We've added live (5-minutely) charts for some of our site stats, this will be expanded greatly in the near future Bitvest Charts

hero member
Activity: 896
Merit: 1000
At bet id 16500000 i will match the winning bet up to 0.01 btc
Your last bet must be over 5000sats or tokens to be eligible for the win.
If you hit but didnt have the amount required it will go to the next person who did.
hero member
Activity: 896
Merit: 1000
New code woot woot

Come an kick it with us in chat guys.
hero member
Activity: 616
Merit: 524
Bitvest & 777Coin Developer
I've updated KLYE's betting script. It now detects bets above max bet win/loss correctly, allows setting an absolute max bet and uses CSPRNG whenever possible

Code:
var bet = {base: 0.00001, current: 0.00001, currency: "bitcoins", bits:1, max:0.01, multiplier:10}; //Modify these values to change your base bet, currency may be "tokens" or "bitcoins", bits is the number of drops made
var placeBet=function(){
   $.post( "action.php", { prizes: "125,20,1.52,1.42,1.32,1.32,1.22,1.12,0,1.12,1.22,1.32,1.32,1.42,1.52,20,125",
                  token: token,
                  secret:0,
                  bet:bet.current,
                  bits:bet.bits,
                  currency:bet.currency,
                  user_seed:makeid(),
                  act:"play",
                  v:ver,
                  })
  .done(function( data ) {
   if (!data.success){
      alert(data.msg);
      return 0;
   }
  
   var win=data.game_result.win;
   var total_bet = data.game_result.total_bet;
   console.log( win, data.data.balance );
   if (win >= total_bet){
      bet.current = bet.base;
      if (bet.current < bet.base) bet.current = bet.base;
   } else if (win < total_bet) {
      bet.current = (bet.current-win) * bet.multiplier;
      if (bet.current > bet.max) bet.current=bet.base;
   }
   placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},5000);
  });
}

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

function makeid(){
    if (typeof window.crypto !== 'undefined' && typeof window.crypto.getRandomValues === 'function'){ //Check if CSPRNG is supported
        var array = new Uint32Array(16);
        window.crypto.getRandomValues(array); //Set each value in the array to random 32-bit CSPRNG values
        var r='';
        for (var i = 0; i < array.length; i++) {
            r += String(array[i] + "-"); //Join all items in the array into a string with 256Bits of CSPRNG
        }
        return CryptoJS.SHA256(r).toString(); //Hash the string into a valid format for a user seed
    } else {
        return CryptoJS.SHA256(String(Math.random())).toString();
    }
}


placeBet();
Jump to: