[MADE 1100$ FROM 50$ ] CRYPTO AUTOPILOT METHOD [NEW STRATEGY]

/* Random CoinsCRASH script.<br> * Current status: Random<br> * Version 2.2.7-custom<br> * + When editing the variables, be careful to not remove any ';' or ',' character.<br> */<br> <br> // The bot will bet a random number between `smallRangeBet` and `bigRangeBet` on a random cashout point.<br>var smallRangeBet = 2, // (10 bits) can't bet less than 1 bit<br> bigRangeBet = 10, // (18 bits) cant bet more than your bankroll<br> maxBet = 0, // (900 bits, set to 0 to disable) The bot won't bet higher than this amount<br> maxCashout = 3; // (100x) this is the maximum cashout point the script can go<br> <br>var Simulation = false; // (true/false) Setting this to true will make the bot to simulate a betting run.<br> <br>// --- Edit over this line --- \\<br> <br> var totalLost = 0;<br> var lastBet = 0, bet = 0, profit = 0, wins = 0, loss = 0, firstgame = true, cashout;<br> var chilling = false;<br>engine.on('game_starting', function(info) {<br> console.log((Simulation?"(SIMULATION) ": "")+"Current Profit: "+(profit/100).toFixed(2)+" bits ("+wins+" Wins | "+loss+" Loses)");<br> if(chilling) chilling = false;<br> if(firstgame) firstgame = false;<br> bet = Math.round(randomInt(smallRangeBet*100,bigRangeBet*100)/100)*100;<br> var rand = randomInt(1,100);<br> for(var i=1;i&lt;maxCashout+1;i+=0.01){<br> var curProb = (9900/(101*((i*100)-1)))*100;<br> if(rand==1 &amp;&amp; i == 1){<br> console.log(" /!\\ 1% protection... Not betting!");<br> chilling = true;<br> break;<br> }<br> if(!chilling &amp;&amp; rand&gt;curProb){<br> cashout = i.toFixed(2);<br> cashout = Math.round(cashout*100);<br> if(totalLost&gt;0){<br> var onLossIncrement = Math.round((totalLost * (randomInt(30, 90)/100)/100))*100;<br> bet += onLossIncrement;<br> console.log((Simulation?"(SIMULATION) ": "")+"(Recovery mode) adding "+(onLossIncrement/100)+" bits to the bet amount");<br> }<br> if(bet &gt; maxBet*100 &amp;&amp; maxBet != 0){<br> console.log(" /!\\ Bet amount higher than the maxBet. For your safty, setting the bet to: "+maxBet+" bits");<br> bet = maxBet * 100;<br> }<br> if(!Simulation){<br> engine.placeBet(bet, cashout, function(){<br> console.log("Betting "+(bet/100)+" bits on x"+(cashout/100));<br> lastBet = bet;<br> });<br> }else{<br> console.log("(SIMULATION) Betting "+(bet/100)+" bits on x"+(cashout/100));<br> lastBet = bet;<br> }<br> break;<br> }<br> }<br>});<br> <br>engine.on('cashed_out', function(data) {<br> if(data.username==engine.getUsername()){<br> console.log("(Win) Cashed out at x"+(data.stopped_at/100));<br> wins++;<br> profit += ((lastBet*(data.stopped_at/100))-lastBet);<br> if(totalLost&gt;0){<br> totalLost -= ((bet*(data.stopped_at/100))-lastBet);<br> if(totalLost&lt;0) totalLost = 0;<br> }<br> }<br>});<br> <br>engine.on('game_crash', function(data) {<br> if(!chilling &amp;&amp; data.game_crash &lt; cashout &amp;&amp; !firstgame){<br> console.log((Simulation?"(SIMULATION) ": "")+"(Lost)");<br> loss++;<br> profit -= lastBet;<br> totalLost += lastBet;<br> }<br> if(!chilling &amp;&amp; data.game_crash &gt;= cashout &amp;&amp; Simulation &amp;&amp; !firstgame){<br> console.log("(SIMULATION) (Win) Cashed out at x"+(cashout/100));<br> wins++;<br> profit += ((lastBet*(cashout/100))-lastBet);<br> if(totalLost&gt;0){<br> totalLost -= ((bet*(cashout/100))-lastBet);<br> if(totalLost&lt;0) totalLost = 0;<br> }<br> }<br> if(firstgame) firstgame = false;<br>});<br> <br>function randomInt(min,max){<br> return Math.floor(Math.random()*(max-min+1)+min);<br>}