Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Leader Tong v. 2 20%
- minbalance = 1000 ---<<<--- put your current balance here!
- minbet = minbalance/100000
- base = (balance/100000 + minbet)/2
- Hchance = math.random(75,80)+math.random(75,80)/100
- Lchance = 100 - Hchance
- roll = 0
- losecount = 0
- nextbet = balance/100000 --0.01
- chance = 70
- target = balance+base*2
- limit = balance*1.20
- --------------------------
- bigtarget = balance*1.20
- stoploss = balance*0.90
- --------------------------
- function dobet()
- if balance-nextbet >= bigtarget then
- stop();
- print(balance)
- print("TARGET ACHIEVED!!!")
- print("You Won")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- if balance-nextbet <= stoploss then
- stop()
- ching()
- resetseed()
- print(balance)
- print("ALARM!!!")
- print("You Lose")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("for this Session")
- end
- if balance >= limit then
- print("winner 20% good!")
- stop()
- ching()
- end
- if profit >= base*3 then
- resetstats()
- resetseed()
- nextbet = base
- chance = Hchance
- end
- if profit > 0 then
- pro = balance/100000 --0.01
- else
- pro = -profit + minbet
- end
- bethigh = bethigh
- roll+=1
- if win and chance<30 then
- nextbet = pro*1.5
- chance = Hchance
- else
- nextbet = previousbet*0.90
- chance = Hchance
- end
- if !win then
- if lastBet.chance > 30 then
- multi = 0.33
- else
- multi = 1.99
- end
- nextbet = pro*multi
- chance = 100 - lastBet.chance
- bethigh = !bethigh
- end
- if balance > target then
- nextbet = base
- resetstats()
- resetseed()
- chance = 100 - lastBet.chance
- target = balance+base*2
- Hchance = math.random(75,79)+math.random(75,79)/100
- Lchance = math.random(22,26)+math.random(22,26)/100
- end
- if currentstreak >= 3 then
- bethigh = !bethigh
- chance = (95+lastBet.chance)/2
- nextbet = pro
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement