Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --over 69 [c30%] and multi 1.9 [190%] on 3rd consecutive loss
- --over/inder possible?
- --reset to basebet on win
- chance = 30
- div = 1000000
- base = balance/div
- bethigh=false
- lowhigh = 1
- rollcount = 10
- losestreak = 0
- print("-------------------------------------------")
- print(" BALANCE: ") print(balance)
- print("-------------------------------------------")
- resetseed(); resetseed(); resetseed(); resetseed();
- resetseed(); resetseed(); resetseed(); resetseed();
- resetstats();resetstats();resetstats();
- nextbet=0.000000001
- resetseed();resetseed();resetseed();
- resetseed(); resetseed(); resetseed(); resetseed();
- resetseed(); resetseed(); resetseed(); resetseed();
- stoploss = balance*0.97
- wintarget = balance*1.04
- function dobet()
- -- Check Balance
- if balance-(nextbet) >= wintarget and wintarget ~= 0 then
- print("\n\nWinTarget Reach\n\n")
- print("Profit: " .. string.format("%9.8f", profit) )
- resetseed()
- resetstats()
- nextbet = base
- stop();
- ching()
- end
- if balance-(nextbet) <= stoploss and stoploss ~= 0 then
- print("\n\nStoploss Reach\n\n")
- print("Profit: " .. string.format("%9.8f", profit) )
- stop()
- ching()
- end
- if win then
- chance = 30
- nextbet = balance/div
- lowhigh = math.random(0,1)
- losestreak = 0
- else
- losestreak = losestreak + 1
- end
- if !win and (losestreak == 3) then
- nextbet = previousbet*1.90
- losestreak = losestreak - 1
- end
- if (lowhigh == 0) then
- bethigh = false
- else
- bethigh = true
- end
- --change seed every 10 rolls/bets
- if (rollcount == 10) then
- rollcount = 0
- resetseed();
- print("---------------------------------------------------------------------------------------------")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("---------------------------------------------------------------------------------------------")
- else
- rollcount = rollcount + 1
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement