Post
Topic
Board Gambling
Re: ★INVESTDICE.COM★1% house edge,Provably Fair,5k BTC wagered,Auto-Bet,1 sat minbet
by
investdice
on 19/12/2015, 05:38:57 UTC
A cool code for the madrollerbot you could give a try! (at own risk)


Startup Bot Code:
Code:
botBaseBet=0.00000001;
botBaseGame=49.50;
botBaseMulti=2;
botBaseType=0;
resetToBase();

Main Bot Code:
Code:
if(botCurrBalance > 0.5) botRunning = false;
if(botDidWin){
    resetToBase();
    if(botTotalRuns % 10 == 1){
  botCurrGame = 50.50;botCurrBet = 0.00000001;botCurrMulti = 1.1;botCurrType = 1;
 }
 if(botTotalRuns % 10 == 3){
  botCurrGame = 40;botCurrBet = 0.00000001;botCurrMulti = 1.6;botCurrType = 1;
 }
 if(botTotalRuns % 10 == 5){
  botCurrGame = 30;botCurrBet = 0.00000001;botCurrMulti = 2.5;botCurrType = 1;
 }
 if(botTotalRuns % 10 == 7){
  botCurrGame = 70;botCurrBet = 0.00000001;botCurrMulti = 2.5;botCurrType = 0;
 }
 if(botTotalRuns % 10 == 9){
  botCurrGame = 60;botCurrBet = 0.00000001;botCurrMulti = 1.6;botCurrType = 0;
 }   
} else {
    botCurrBet = (botCurrBet * botCurrMulti) + botCurrBet;
    if(botCurrGame == 80 && botCurrLossRun >= 3) pauseBot(1200);
    if(botCurrGame == 50.50 && botCurrLossRun >= 7) pauseBot(1200);
    if(botCurrGame == 60 && botCurrLossRun >= 5) pauseBot(1200);
    if(botCurrGame == 40 && botCurrLossRun >= 5) pauseBot(1200);
    if(botCurrGame == 70 && botCurrLossRun >= 4) pauseBot(1200);
    if(botCurrGame == 30 && botCurrLossRun >= 4) pauseBot(1200);
}

Goodluck!