Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Flak 88 Flugabwehrkanone
- -- https://youtu.be/IeqeUyPlRRs
- -- c0.8
- -- basebet=bal/1,000,000
- -- bets=88
- -- increase on loss 0.88%
- ------------------
- basechance = 0.88
- basebet = balance/1000000
- ------------------
- nextbet=basebet
- chance=basechance
- ------------------
- bethigh=false
- lowhigh = 1
- rollcount = 0
- betcount = 0
- ------------------
- stoploss = balance*0.90
- wintarget = balance*1.01
- function dobet()
- -- Check Balance
- if balance-(nextbet) >= wintarget and wintarget ~= 0 then
- print("\n\nWoo-hoo, soon X-mas! :p\n\n")
- print("-------------------------------------------")
- print(" BALANCE: ") print(balance)
- print("-------------------------------------------")
- print("-----------------------------------")
- print("PROFIT:") print(profit)
- print("-----------------------------------")
- resetseed()
- resetstats()
- nextbet = basebet
- stop();
- ching();
- end
- if balance-(nextbet) <= stoploss and stoploss ~= 0 then
- print("\n\nOh-nooo - bosted :(\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.0088
- end
- if betcount==88 then
- print("--------------------------")
- print(" Flak 88 Flugabwehrkanone :p")
- resetseed()
- --stop();
- ching();
- betcount = 0
- print("Dare continue..?")
- print("--------------------------")
- 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