Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 99 Luftballons
- -- https://youtu.be/La4Dcd1aUcE
- -- c9.91
- -- basebet=bal/1,000,000
- -- bets=99
- -- increase on loss 19.99%
- ------------------
- basechance = 9.91
- basebet = balance/1000000
- ------------------
- nextbet=basebet
- chance=basechance
- ------------------
- bethigh=false
- lowhigh = 1
- rollcount = 0
- 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 = basebet
- stop();
- ching();
- end
- if balance-(nextbet) <= stoploss and stoploss ~= 0 then
- print("\n\nStoploss Reach\n\n")
- stop()
- ching()
- end
- if win then
- print("Winner! Chicken dinner!")
- nextbet=basebet
- lowhigh = math.random(0,1)
- betcount=betcount+1
- end
- if !win then
- betcount=betcount+1
- nextbet = previousbet*1.1999
- end
- if betcount==99 then
- print("99 Luftballons :p")
- resetseed()
- stop();
- ching();
- betcount = 0
- print("Dare to continue..?")
- --sets hi/lo
- if (lowhigh == 0) then
- bethigh = false
- else
- bethigh = true
- end
- --change seed every 10 rolls/bets
- if (rollcount == 99) 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