A cool code for the madrollerbot you could give a try! (at own risk)Startup Bot Code:botBaseBet=0.00000001;
botBaseGame=49.50;
botBaseMulti=2;
botBaseType=0;
resetToBase();
Main Bot 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!