Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 0.000010002511
- nextbet = basebet
- chance = 49.95
- targetProfit = balance * 13
- multi = 1.13
- roll = 1
- addToBetAmount = 0.00100002869
- 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(900,1200)/100
- resetpartialprofit()
- -- 6 :: first streak of 2 wins, reset bet amount
- -- 7 :: streak greater than 2 wins, reset bet amount
- if currentstreak >= 2 then
- nextbet = basebet
- end
- else
- -- 3 :: every 1 losses, increase bet amount 35%
- ctLosses = ctLosses + 1
- if ctLosses%roll == 0 then
- chance = math.random(10,2500)/100
- nextbet = previousbet *1.0092
- -- 4 :: first streak of 6 losses, add 0.002 to bet amount
- if currentstreak <= 6 then
- chance = math.random(10,1200)/100
- nextbet = nextbet + addToBetAmount
- end
- end
- -- 5 :: every 10 losses, set win chance 22%
- if losses - tempLosses == 10 then
- chance = math.random(10,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