Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- c1 basebet=1sat bets=60
- -- on each 60bet streak loss basebet2x bets=60
- -- on win reset basebet bets=60
- ------------------
- basechance = 1
- basebet = balance/50000
- ------------------
- nextbet=basebet
- chance=basechance
- ------------------
- bethigh=false
- lowhigh = 1
- rollcount = 10
- betcount=0
- stoploss = balance*0.90
- wintarget = balance*1.10
- function dobet()
- -- Check Balance
- if balance-(nextbet) >= wintarget and wintarget ~= 0 then
- print("\n\nWinTarget Reach\n\n")
- resetseed()
- resetstats()
- nextbet = base
- stop();
- ching()
- end
- if balance-(nextbet) <= stoploss and stoploss ~= 0 then
- print("\n\nStoploss Reach\n\n")
- stop()
- ching()
- end
- if win then
- print("betcount 60 won!")
- chance=basechance
- nextbet=basebet
- lowhigh = math.random(0,1)
- betcount=0
- else
- betcount=betcount+1
- end
- if betcount==60 and !win then
- print("betcount 60 busted!")
- lowhigh = math.random(0,1)
- betcount = 0
- nextbet = previousbet*2
- end
- --sets hi/lo
- 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:") print(profit)
- print("-----------------------------------")
- else
- rollcount = rollcount + 1
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement