Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Faucet_to_WD by Keiichi
- --@ minbet
- prebet = 0.00000010
- --@ number of prebet rolls
- prebetnumber = 10
- --@ target balance
- targetxx = 0.00204
- --@ to change seed after wins
- winseed = true
- -------------------------------
- base = prebet
- nextbet = prebet
- losecount = 0
- betcount = 0
- startbalance = balance
- chance = 8.4
- loseround = 0
- resetstats()
- prebetnum = prebetnumber
- bethigh = true
- -------------------------------
- print("\nStarting Balance = " .. startbalance)
- print("\nTarget = " .. targetxx )
- print("\nChance = " .. chance .. "%")
- print("\nPrebets = " .. prebetnumber)
- phase0 = true
- phase1 = false
- phase2 = false
- phase3 = false
- phase4 = false
- phase5 = false
- -------------------------------
- function dobet()
- if win then
- ching()
- nextbet = prebet
- losecount = 0
- betcount += 1
- loseround = 0
- if winseed then
- resetseed()
- end
- else
- losecount += 1
- betcount += 1
- nextbet = prebet
- print("loseround = " .. loseround)
- end
- -----------------------------------------------
- if phase0 then
- print("\n---------\n")
- print("\nPhase 0")
- print("\nChance = " .. chance .. "%")
- if loseround < 1 then
- prebetnum = prebetnumber
- print("\nlose " .. losecount)
- print("Prebets = " .. prebetnum)
- print("Max losestreak = " .. prebetnum + 9)
- else
- print("\nlose R2 " .. prebetnum + 9 + losecount)
- prebetnum = -2
- print("Round 2 Prebets = " .. prebetnum)
- end
- print("\nTarget Balance = " .. targetxx )
- print("% of Target Reached = " .. string.format("%3.1f",(balance / targetxx * 100)) .. "%")
- print("Next Phase Balance = " .. string.format("%3.8f",(targetxx * 0.22)))
- print("% till Next Phase = " .. string.format("%3.1f",(balance / (targetxx * 0.22) * 100)) .. "%")
- print("\nTotal Bets = " .. betcount)
- print("\n---------\n")
- end
- -------------------------------------------
- if phase1 then
- print("\n---------\n")
- print("\nPhase 1")
- print("\nChance = " .. chance .. "%")
- if loseround < 1 then
- print("\nlose " .. losecount)
- prebetnum = prebetnumber - 2
- print("Prebets = " .. prebetnum)
- print("Max losestreak = " .. prebetnum + 13)
- else
- print("\nlose R2 " .. prebetnum + 13 + losecount)
- prebetnum = -2
- print("Round 2 Prebets = " .. prebetnum)
- end
- print("\nTarget Balance = " .. targetxx )
- print("% of Target Reached = " .. string.format("%3.1f",(balance / targetxx * 100)) .. "%")
- print("Next Phase Balance = " .. string.format("%3.8f",(targetxx* 0.33)))
- print("% till Next Phase = " .. string.format("%3.1f",(balance / (targetxx * 0.33) * 100)) .. "%")
- print("\nTotal Bets = " .. betcount)
- print("\n---------\n")
- end
- -------------------------------------------
- if phase2 then
- chance = 7.5
- print("\n---------\n")
- print("\nPhase 2")
- print("\nChance = " .. chance .. "%")
- if loseround < 1 then
- print("\nlose " .. losecount)
- prebetnum = prebetnumber - 2
- print("Prebets = " .. prebetnum)
- print("Max losestreak = " .. prebetnum + 15)
- else
- print("\nlose R2 " .. prebetnum + 15 + losecount)
- prebetnum = -2
- print("Round 2 Prebets = " .. prebetnum)
- end
- print("\nTarget Balance = " .. targetxx )
- print("% of Target Reached = " .. string.format("%3.1f",(balance / targetxx * 100)) .. "%")
- print("Next Phase Balance = " .. string.format("%3.8f",(targetxx * 0.44)))
- print("% till Next Phase = " .. string.format("%3.1f",(balance / (targetxx * 0.44) * 100)) .. "%")
- print("\nTotal Bets = " .. betcount)
- print("\n---------\n")
- end
- -------------------------------------------
- if phase3 then
- chance = 7
- print("\n---------\n")
- print("\nPhase 3")
- print("\nChance = " .. chance .. "%")
- if loseround < 1 then
- print("\nlose " .. losecount)
- prebetnum = prebetnumber - 2
- print("Prebets = " .. prebetnum)
- print("Max losestreak = " .. prebetnum + 17)
- else
- print("\nlose R2 " .. prebetnum + 17 + losecount)
- prebetnum = -2
- print("Round 2 Prebets = " .. prebetnum)
- end
- print("\nTarget Balance = " .. targetxx )
- print("% of Target Reached = " .. string.format("%3.1f",(balance / targetxx * 100)) .. "%")
- print("Next Phase Balance = " .. string.format("%3.8f",(targetxx * 0.55)))
- print("% till Next Phase = " .. string.format("%3.1f",(balance / (targetxx * 0.55) * 100)) .. "%")
- print("\nTotal Bets = " .. betcount)
- print("\n---------\n")
- end
- -------------------------------------------
- if phase4 then
- chance = 6.5
- print("\n---------\n")
- print("\nPhase 4")
- print("\nChance = " .. chance .. "%")
- if loseround < 1 then
- print("\nlose " .. losecount)
- prebetnum = prebetnumber - 1
- print("Prebets = " .. prebetnum)
- print("Max losestreak = " .. prebetnum + 19)
- else
- print("\nlose R2 " .. prebetnum + 19 + losecount)
- prebetnum = -2
- print("Round 2 Prebets = " .. prebetnum)
- end
- print("\nTarget Balance = " .. targetxx )
- print("% of Target Reached = " .. string.format("%3.1f",(balance / targetxx * 100)) .. "%")
- print("Next Phase Balance = " .. string.format("%3.8f",(targetxx * 0.77)))
- print("% till Next Phase = " .. string.format("%3.1f",(balance / (targetxx * 0.77) * 100)) .. "%")
- print("\nTotal Bets = " .. betcount)
- print("\n---------\n")
- end
- -------------------------------------------
- if phase5 then
- chance = 8
- print("\n---------\n")
- print("\nPhase 5")
- print("\nChance = " .. chance .. "%")
- if loseround < 1 then
- print("\nlose " .. losecount)
- prebetnum = prebetnumber - 6
- print("Prebets = " .. prebetnum)
- print("Max losestreak = " .. prebetnum + 22)
- else
- print("\nlose R2 " .. prebetnum + 22 + losecount)
- prebetnum = -2
- print("Round 2 Prebets = " .. prebetnum)
- end
- print("\nTarget Balance = " .. targetxx )
- print("% of Target Reached = " .. string.format("%3.1f",(balance / targetxx * 100)) .. "%")
- print("\nTotal Bets = " .. betcount)
- print("\n---------\n")
- end
- -------------------------------------
- if (losecount > prebetnum +1 ) then
- nextbet = base * 7
- end
- if (losecount > prebetnum +2 ) then
- nextbet = base * 7.5
- end
- if (losecount > prebetnum +3 ) then
- nextbet = base * 8
- end
- if (losecount > prebetnum +4 ) then
- nextbet = base * 9.5
- end
- if (losecount > prebetnum +5 ) then
- nextbet = base * 14
- end
- if (losecount > prebetnum +6 ) then
- nextbet = base * 16
- end
- if (losecount > prebetnum +7 ) then
- nextbet = base * 18
- end
- if (losecount > prebetnum +8 ) then
- nextbet = base * 20
- end
- if (losecount > prebetnum +9 ) then
- if (phase0 and loseround < 1) then
- nextbet = base
- losecount = 0
- loseround += 1
- else
- nextbet = base * 22
- end
- end
- if (losecount > prebetnum +10 ) then
- nextbet = base * 24
- end
- if (losecount > prebetnum +11 ) then
- nextbet = base * 26
- end
- if (losecount > prebetnum +12 ) then
- nextbet = base * 28
- end
- if (losecount > prebetnum +13 ) then
- if (phase1 and loseround < 1) then
- nextbet = base
- losecount = 0
- loseround += 1
- else
- nextbet = base * 30
- end
- end
- if (losecount > prebetnum +14 ) then
- nextbet = base * 33
- end
- if (losecount > prebetnum +15 ) then
- if (phase2 and loseround < 1) then
- nextbet = base
- losecount = 0
- loseround += 1
- else
- nextbet = base * 37
- end
- end
- if (losecount > prebetnum +16 ) then
- nextbet = base * 43
- end
- if (losecount > prebetnum +17 ) then
- if (phase3 and loseround < 1) then
- nextbet = base
- losecount = 0
- loseround += 1
- else
- nextbet = base * 48
- end
- end
- if (losecount > prebetnum +18 ) then
- nextbet = base * 55
- end
- if (losecount > prebetnum +19 ) then
- if (phase4 and loseround < 1) then
- nextbet = base
- losecount = 0
- loseround += 1
- else
- nextbet = base * 63
- end
- end
- if (losecount > prebetnum +20 ) then
- nextbet = base * 70
- end
- if (losecount > prebetnum +21 ) then
- nextbet = base * 80
- end
- if (losecount > prebetnum +22 ) then
- if (phase5 and loseround < 1) then
- nextbet = base
- losecount = 0
- loseround += 1
- else
- nextbet = base * 90
- end
- end
- if (losecount > prebetnum +23 ) then
- nextbet = base * 100
- end
- if (losecount > prebetnum +24 ) then
- nextbet = base * 110
- end
- if (losecount > prebetnum +25 ) then
- nextbet = base * 121
- end
- if (losecount > prebetnum +26 ) then
- nextbet = base * 133
- end
- if (losecount > prebetnum +27 ) then
- nextbet = base * 146
- end
- if (losecount > prebetnum +28 ) then
- nextbet = base * 160
- end
- if (losecount > prebetnum +29 ) then
- nextbet = base * 176
- end
- if (losecount > prebetnum +30 ) then
- nextbet = base * 193
- end
- if (losecount > prebetnum +31 ) then
- nextbet = base * 210
- end
- if (losecount > prebetnum +32 ) then
- nextbet = base * 240
- end
- if (losecount > prebetnum +33 ) then
- nextbet = base * 300
- end
- if (losecount > prebetnum +34 ) then
- nextbet = base * 350
- end
- if (losecount > prebetnum +35 ) then
- nextbet = base * 400
- end
- if (losecount > prebetnum +36 ) then
- nextbet = base * 440
- end
- if (losecount > prebetnum +37 ) then
- nextbet = base * 484
- end
- if (losecount > prebetnum +38 ) then
- nextbet = base * 532
- end
- if (losecount > prebetnum +39 ) then
- nextbet = base * 586
- end
- if (losecount > prebetnum +40 ) then
- nextbet = base * 645
- end
- if (losecount > prebetnum +41 ) then
- nextbet = base * 710
- end
- if (losecount > prebetnum +42 ) then
- nextbet = base * 781
- end
- if (losecount > prebetnum +43 ) then
- nextbet = base * 820
- end
- if (losecount > prebetnum +44 ) then
- nextbet = base * 910
- end
- if (losecount > prebetnum +45 ) then
- nextbet = base * 1000
- end
- if (losecount > prebetnum +46 ) then
- nextbet = base * 1100
- end
- if (losecount > prebetnum +47 ) then
- nextbet = base * 1300
- end
- if (losecount > prebetnum +48 ) then
- nextbet = base * 1500
- end
- if (losecount > prebetnum +49 ) then
- nextbet = base * 1700
- end
- if (losecount > prebetnum +50 ) then
- nextbet = base * 2000
- end
- if (losecount > prebetnum +51 ) then
- nextbet = base * 2300
- end
- if (losecount > prebetnum +52 ) then
- nextbet = base * 2600
- end
- if (losecount > prebetnum +53 ) then
- nextbet = base * 2800
- end
- if (losecount > prebetnum +54 ) then
- nextbet = base * 3080
- end
- if (losecount > prebetnum +55 ) then
- nextbet = base * 3380
- end
- if (losecount > prebetnum +56 ) then
- nextbet = base * 3780
- end
- if (losecount > prebetnum +57 ) then
- nextbet = base * 4000
- end
- if (losecount > prebetnum +58 ) then
- nextbet = base * 4800
- end
- if (losecount > prebetnum +59 ) then
- nextbet = base * 5600
- end
- if (losecount > prebetnum +60 ) then
- nextbet = base * 6000
- end
- if (losecount > prebetnum +61 ) then
- nextbet = base * 7000
- end
- if (losecount > prebetnum +62 ) then
- nextbet = base * 7700
- end
- if (losecount > prebetnum +63 ) then
- nextbet = base * 8500
- end
- if (losecount > prebetnum +64 ) then
- nextbet = base * 10003
- end
- if (losecount > prebetnum +65 ) then
- nextbet = base * 11000
- end
- if (losecount > prebetnum +66 ) then
- nextbet = base * 12100
- end
- if (losecount > prebetnum +67 ) then
- nextbet = base * 13310
- end
- if (losecount > prebetnum +68 ) then
- nextbet = base * 14641
- end
- if (losecount > prebetnum +69 ) then
- nextbet = base * 16106
- end
- if (losecount > prebetnum +70 ) then
- nextbet = base * 17717
- end
- if (losecount > prebetnum +71 ) then
- nextbet = base * 19489
- end
- if (losecount > prebetnum +72 ) then
- nextbet = base * 21438
- end
- if (losecount > prebetnum +73 ) then
- nextbet = base * 23582
- end
- if (losecount > prebetnum +74 ) then
- nextbet = base * 25582
- end
- if (losecount > prebetnum +75 ) then
- nextbet = base * 29582
- end
- if (losecount > prebetnum +76 ) then
- nextbet = base * 33582
- end
- if (losecount > prebetnum +77 ) then
- nextbet = base * 39582
- end
- if (losecount > prebetnum +78 ) then
- nextbet = base * 46582
- end
- if (losecount > prebetnum +79 ) then
- nextbet = base * 55582
- end
- if (losecount > prebetnum +80 ) then
- nextbet = base * 67582
- end
- if (losecount > prebetnum +81 ) then
- nextbet = previousbet * 1.08
- end
- -------------------------------------
- if (phase0 and nextbet > prebet * 2) then
- nextbet = nextbet * 0.9
- end
- if phase2 then
- nextbet = nextbet * 1.075
- end
- if phase3 then
- nextbet = nextbet * 1.15
- end
- if phase4 then
- nextbet = nextbet * 1.2
- end
- if phase5 then
- nextbet = nextbet * 1.3
- end
- -------------------------------
- if (balance >= targetxx * 0.22 and balance < targetxx * 0.33) then
- phase0 = false
- phase1 = true
- phase2 = false
- phase3 = false
- phase4 = false
- phase5 = false
- end
- if (balance >= targetxx * 0.33 and balance < targetxx * 0.44) then
- phase0 = false
- phase1 = false
- phase2 = true
- phase3 = false
- phase4 = false
- phase5 = false
- end
- if (balance >= targetxx * 0.44 and balance < targetxx * 0.55) then
- phase0 = false
- phase1 = false
- phase2 = false
- phase3 = true
- phase4 = false
- phase5 = false
- end
- if (balance >= targetxx * 0.55 and balance < targetxx * 0.77) then
- phase0 = false
- phase1 = false
- phase2 = false
- phase3 = false
- phase4 = true
- phase5 = false
- end
- if (balance >= targetxx * 0.77) then
- phase0 = false
- phase1 = false
- phase2 = false
- phase3 = false
- phase4 = false
- phase5 = true
- end
- -------------------------------
- if balance >= targetxx then
- print("\n---------\n")
- print("\nTarget Reached")
- print("\n---------\n")
- stop()
- end
- end
Add Comment
Please, Sign In to add comment