Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- minbet = 1e-8
- target = balance * 0
- incr = 30 --%
- nextbet = balance/1e5
- every = 2
- setch = {2,8,16}
- maxbal = balance
- index = 1
- chance = setch[index]
- maxpf = 0
- multi = 1.5
- nextbet = math.max(nextbet,minbet)
- function dobet()
- if (balance >= target and target > 0) then
- stop()
- end
- if (chance >= 20) then
- chance = setch[math.random(#setch)]
- nextbet = math.max(minbet,nextbet/1.5)
- end
- if (win) then
- if (profit > maxpf) then
- maxpf = profit
- maxbal = balance
- nextbet = maxbal/1e5
- multi = 1.5
- else
- multi = math.max(1.5, multi/2)
- if (chance == setch[#setch]) then
- nextbet = nextbet/8
- else
- nextbet = maxbal/1e4
- end
- end
- index = math.random(1,#setch)
- else
- if (chance == setch[1]) then
- index = math.random(2,#setch)
- else
- if (chance == setch[2]) then
- index = math.random(1,#setch)
- else
- index = math.random(1,2)
- end
- end
- if (bets%every == 0) then
- nextbet = previousbet + (previousbet * (incr/100))
- end
- end
- chance = setch[index]
- if(bets%5 == 0) then
- nextbet = previousbet * multi
- chance = math.random(20,40)
- multi = multi * 1.3
- end
- nextbet = math.max(nextbet,minbet)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement