Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 0.0000102511
- nextbet = basebet
- chance = 49.95
- targetProfit = balance * 1379
- multi = 1.13
- roll = 1
- addToBetAmount = 0.0012869
- tempBets = 0
- tempLosses = 0
- ctLosses = 0
- dobet = function()
- if win and (partialprofit > 0)then
- ctLosses = 0
- -- 1 :: every 1 wins, decrease bet amount 20%
- nextbet = previousbet - (previousbet * (20 / 100))
- -- 2 :: every 1 wins, set win chance 38%
- chance = math.random(90,8200)/100
- resetpartialprofit()
- -- 6 :: first streak of 2 wins, reset bet amount
- -- 7 :: streak greater than 2 wins, reset bet amount
- if currentstreak >= 1 then
- nextbet = basebet
- end
- else
- -- 3 :: every 1 losses, increase bet amount 35%
- ctLosses = ctLosses + 1
- if ctLosses%roll == 0 then
- chance = math.random(90,8500)/100
- nextbet = previousbet * 1.04742
- -- 4 :: first streak of 6 losses, add 0.002 to bet amount
- if currentstreak <= -6 then
- chance = math.random(90,6200)/100
- nextbet = nextbet + addToBetAmount
- end
- end
- -- 5 :: every 3 losses, set win chance 52%
- if losses - tempLosses == 3 then
- chance = math.random(1,2280)/100
- tempLosses = losses
- end
- -- 8 :: every 100 bets, switch over-under
- if bets - tempBets == 100 then
- bethigh = not bethigh
- tempBets = bets
- end
- -- 9 :: greater than XX profit, stop autobet
- -- for this condition, you only need to set "targetProfit"
- -- then, bot will stop himself if your profit target is reached
- if balance > targetProfit then stop() end
- end
- if(partialprofit > 0) then
- nextbet = basebet
- ctLosses = 0
- resetpartialprofit()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement