auto betting methods:
wow its cool and fun.
nice feature custom bet
need autobet
Thanks for the feedback, If you want auto-bet follow below:
- Get Mozilla Firefox.
- Install iMacros add-on.
- Open bitvest.io and close all other tabs.
- Click record and stop after a second.
- Right click #Current.iim and click edit macro.
- Put this code to the file and save it:
VERSION BUILD=8940826 RECORDER=FX
TAG POS=1 TYPE=BUTTON ATTR=TXT:Red
- Go to Play, Max to 5000 and start loop.
- You can change your color by editing Red to Green, Blue, Teal, or your color!
Good Luck!
and
Temporary Auto-Bet Script:setInterval(function(){$(".play.red").click();},1000);
Just press F12 and put it in your console.
You can change red with the color bar you want to bet on, To stop it: Reload the page.
and fast betting method with auto seed switching
Well, I was considering keeping this code private but figured given the lack of automated betting on the site I may as well make it public.
Below is the code for a simple martingale but for Bitvest. It features up to 5 bets a second, A client seed re-randomizer and stop loss. You can also modify your base bet and on loss multiplier as well (assuming you aren't afraid to tweak a bit of code).
Currently it is set to dust bet and win 1 satoshi a roll. A bankroll of atleast .005 BTC is recommended. You can use this script by pasting it into your browsers console (hit f12 in chrome) and hitting enter. It will continue to bet until you refresh your browser.
var bet = {base: 0.00000050, current: 0.00000050}; //Modify these values to change your base bet
var placeBet=function(){
$.post( "action.php", { prizes: "4,1.1,1.05,1,1.1,1.02,1.02,1.02,1.02,1.02,1.02,1.02,0,0,0,0,0",
token: token,
secret:0,
bet:bet.current,
bits:null, // Controls how many drops just change null to 1-32 drops. Delete this before use.
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<bet.base) bet.current=bet.base;
}else if (win<bet.current){
bet.current=(bet.current-win)*50; //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();
The code above will directly bet to the site, You won't see plinko balls falling down however you will see your balance begin to grow by satoshis at a time. Please be careful using this script and of course never risk more than what you are willing to lose. I take no responsibility for any betting errors or loses incurred from the use of this script.
If you win something and would like to shoot me a tip, Or just appreciate the bot and use it, Feel free to send a tip to:
1ART8MzPqABmqWz4SsaKLZfrwb9HjNF5dv
Cheers everyone and good luck.
KLYE