Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- scriptname = 'best on F(L)uck'
- divbal = 1
- initbal = balance/divbal
- minbet = 1e-8
- chance = 1
- inc = 33
- div = 1e6
- base = balance/div
- ctwin = 0 ctlose = 0 winrate = 0
- if base < minbet then base = minbet end
- nextbet = base resetseed()
- resetpartialprofit()
- function dobet()
- init_drop()
- winrate = (ctwin/ctlose)*100
- log("--- WinRate \t"..string.format("%.2f",winrate).."% \t - DropDown "..string.format("%.2f",dd).."% ")
- if win then
- ctwin = ctwin + 1
- if (currentstreak == 1) then bethigh =!bethigh end
- if partialprofit < 0 then
- if partialprofit < -initbal*0.1 then
- nextbet = partialprofit/-10
- else
- nextbet = previousbet/2
- end
- else
- nextbet = base resetpartialprofit()
- end
- else
- ctlose = ctlose + 1
- if (ctlose == 1) then
- if lastBet.roll < 50 and bethigh then bethigh = false end
- if lastBet.roll > 50 and (bethigh == false) then bethigh = true end
- if chance > 30 and partialprofit < -initbal*0.3 then
- if math.random(3,7) == 5 then bethigh = !bethigh end
- end
- end
- if lastBet.roll < 10 or lastBet.roll > 90 then
- if lastBet.roll < 1 or lastBet.roll > 99 then
- chance = math.random(1,10)/10
- else
- chance = math.random(2,5)
- end
- elseif lastBet.roll > 10 and lastBet.roll < 30 then
- chance = math.random(8,10)
- elseif lastBet.roll > 30 and lastBet.roll < 50 then
- chance = math.random(16,20)
- else
- chance = math.random(20,30)
- end
- if previousbet > initbal*0.01 and previousbet < initbal*0.05 and chance < 15 then nextbet = previousbet/2 end
- if previousbet > initbal*0.05 and previousbet < initbal*0.1 then chance = math.random(30,45) end
- if previousbet > initbal*0.1 then chance = math.random(45,60) end
- nextbet = previousbet+(previousbet*(inc/100))
- end
- if nextbet < minbet then nextbet = minbet end
- end
- -- drop down function
- balhi = 0 drop = 0 maxdrop = 0 dd = 0
- function init_drop()
- if balance > balhi then balhi = balance else balhi = balhi end
- drop = balhi - balance if drop > maxdrop then maxdrop = drop end
- dd = (maxdrop/balance)*100
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement