Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -------------------
- basechance = 93.91
- basebet = 0.001
- ------------------
- nextbet=basebet
- chance=basechance
- ------------------
- bethigh = false
- lowhigh = 1
- rollcount = 0
- betcount = 0
- target = 0.000001
- investtarget = 0.00001
- tmpprofit = 0
- investprofit = 0
- startbalance = balance
- stoploss = balance*0.9
- wintarget = balance*1.20
- function dobet()
- if balance-(nextbet) >= wintarget and wintarget ~= 0 then
- print("\n\nWinTarget Reach\n\n")
- resetseed()
- stop()
- nextbet = basebet
- end
- if balance-(nextbet) <= stoploss and stoploss ~= 0 then
- print("\n\nStoploss Reach\n\n")
- stop()
- end
- if win then
- chance = 93
- print("Winner! Chicken dinner!")
- nextbet=basebet
- lowhigh = math.random(0,1)
- betcount=betcount+1
- end
- if !win then
- betcount = betcount+1
- nextbet = previousbet*1.114999
- end
- lowhigh = math.random(0,1)
- f betcount >79 then
- chance = math.random(8.88,9.99)
- print("99 Luftballons :p")
- resetseed()
- betcount = 0
- print("Dare to continue..?")
- 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