Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --by AlsoKnown
- --Revolver Roller
- --My Doge wallit: DRywDACdWUgzaqKXj8beuj1g2RdYvWPwVm
- resetstats(); resetstats(); resetstats();
- nextbet=0.00000001
- resetseed(); resetseed();resetseed();
- nextbet=0.00000001
- ---divider variable
- divmin = 999000
- divmax = 1000000
- div = math.random(divmin*100.0, divmax*100.0)/100.0
- ---hi/lo variable
- minC = 16.50
- maxC = 17.50
- mychance = math.random(minC*100.0, maxC*100.0)/100.0
- bethigh = true
- basebet = balance/div --0.00000001
- nextbet = balance/div --0.00000001
- stoploss = balance*0.97
- profitbalance = balance*1.03
- lowhigh = 1
- rollcount = 10
- resetstats();
- resetseed();
- print("---------------------------------------------------------------------------------------------")
- print("BALANCE:") print(balance)
- print("---------------------------------------------------------------------------------------------")
- --mychance = 16.50 --10
- chance = mychance
- bethigh = true
- losses = 0
- wins = 0
- IncreaseOnLoss = 1.25 --1.15
- target = balance*0.99 --0.05000000
- rollcount = 50
- function dobet()
- -- Check Balance
- if balance-nextbet <= stoploss and stoploss ~= 0 then
- print("\n\nStoploss Reach\n\n")
- print("Profit: " .. string.format("%9.8f", profit) )
- stop()
- ching()
- end
- losses+=1 wins+=1
- if balance > profitbalance then
- chance = mychance
- nextbet = balance/div --balance*0.00001 --basebet
- resetseed(); ching();
- stop()
- stop()
- print("---------------------------------------------------------")
- print("WOW!!! TARGET BALANCE REACHED")
- print("---------------------------------------------------------")
- print("Profit: " .. string.format("%9.8f", profit) )
- print("---------------------------------------------------------")
- end
- if (win) then
- div = math.random(divmin*100.0, divmax*100.0)/100.0
- mychance = math.random(minC*100.0, maxC*100.0)/100.0
- nextbet = balance/div --0.00000001
- lowhigh = math.random(0,1)
- if (profit > target) then
- chance = mychance
- nextbet = balance/div --balance*0.00001 --basebet
- resetstats();
- resetseed(); resetseed();resetseed();
- end
- resetseed(); resetseed();resetseed();
- losses+=1
- wins+=1
- chance = mychance
- nextbet = balance/div --balance*0.00001 --basebet
- else
- if (losses > 1) then
- chance = mychance
- nextbet = previousbet*IncreaseOnLoss
- end
- if (profit > target) then
- chance = mychance
- nextbet = balance/div --balance*0.00001 --basebet
- resetstats();
- resetseed(); resetseed();resetseed();
- end
- 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