Bitcoin Forum
June 17, 2024, 01:45:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 »
381  Economy / Gambling / Re: ★☆★777Coin★☆★ - ✔ Full Range of Games! ✔ Instant Withdraw! ✔ Progressive Jackpot on: February 26, 2016, 06:30:44 PM
My deposit isn't crediting for some reason. What's going on here? This confirmation is taking way too long! Way too long.
Please PM me if your account still remains uncredited.
382  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 26, 2016, 05:18:08 PM
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();
383  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 26, 2016, 04:24:56 PM
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?
384  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 26, 2016, 06:21:32 AM
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.
385  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 26, 2016, 06:12:14 AM
We've added live (5-minutely) charts for some of our site stats, this will be expanded greatly in the near future Bitvest Charts

386  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 24, 2016, 10:16:57 AM
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();
387  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 23, 2016, 10:50:53 PM
Just a quick sneak-peek of some upcoming charts which will be publicly accessible soon. The look and scales/labels will be improved before these are fully public, they will be updated every 5 minutes once they are as well.
388  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Plinko Invest▐ Create Rows▐ Multidrop▐ 1st to Level 20 wins 1 BTC on: February 22, 2016, 11:44:09 PM
Yesterday I was online on site but today my password not working @zodiac can you help in this problem sending you my id and account number in pm and waiting for your reply thanks
That is weird  Undecided
Hope nobody has hacked your account especially if you have funds in there. Are you sure it's nothing silly like forgetting the password?

Its likely a forgotten password they don't just stop working.
That or worst case you got kelogged somehow try logging in again an make sure you're remembering your user name correctly
username is same as I have here in bitcointalk
This issue has been resolved Smiley
389  Economy / Services / Re: ★☆★ Bitvest.io ★☆★ Looking for moderators on: February 21, 2016, 11:00:26 PM
Just posting here to verify this thread is an official thread for Bitvest.
390  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Modify Rows▐ Multidrop▐ 1st to LV 20 wins 1 BTC on: February 18, 2016, 08:25:07 AM
CryptoEarn Solves puzzle 2, with Question: "if cats are feline what are sheep?" Answer: "Ovine"
And wins 575,000 tokens, level 3 is still remaining for being solved.
Congratulations to CryptoEarn for solving puzzle 3 as well
391  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Modify Rows▐ Multidrop▐ 1st to LV 20 wins 1 BTC on: February 18, 2016, 05:54:03 AM
There's a storm going on over at Bitvest, it's time for a 1100% Double Happy Hour!

Edit: The event is over, congratulations to our winners
392  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Modify Rows▐ Multidrop▐ 1st to LV 20 wins 1 BTC on: February 16, 2016, 08:34:39 AM
Need some funds and can't withdraw  Roll Eyes
I'm online now, please make divest the amount you would like to withdraw so you have sufficient funding. I can process anything up to 1.5 BTC with the funds I have access to myself.
393  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 13, 2016, 02:04:51 AM
Update: We've deployed some updates which improve performance of live bet display by over 100% on most systems. This should help with anyone who may have had issues with lag.
394  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 12, 2016, 08:55:32 AM
We've recently added "request desktop version" support for mobile. We're also going to be adding a few new account/ui settings, such as allowing you to enable or disable hotkeys.
395  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 11, 2016, 10:45:51 PM
Website offline...
all right guys?
We appear to have been offline for ~8 minutes due to issues with Cloudflare.

As always, stay tuned in chat for our random events and giveaways.
396  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 08, 2016, 10:30:14 PM
We've just deployed some updates which should help the site perform more quickly Smiley
397  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 08, 2016, 02:55:18 AM
Access to the VIP room is permanent once you've met the betting requirement. the VIP/Superuser rank can take up to 10 minutes to be granted.
398  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 07, 2016, 03:40:39 AM
Faucet payments are now based on your betting rank, you can earn up to 500% as much as before!
399  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 06, 2016, 07:59:28 PM
We'll be offline for a few minutes for some updates to our databases.
Edit: We're back
400  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: February 03, 2016, 12:11:58 AM
Cool, thanks for the updated script Zodiac!

What prompted the faucet change to tokens? It's not something I think I've seen on any other sites, but I'm assuming it makes good business sense. Does it just simply save the site some bitcoin and allows it to keep the rain/trivia going?
Our problem was giving out BTC with the faucet, and having nearly 100% of it go to investors, this made the faucet very expensive to run (We've paid out several BTC already). Now we use tokens so that bets from the faucet are played against the house, until you reach enough to convert your tokens to BTC. This allows us to have a larger faucet than before.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!