Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- bb:5e-8 pf:46 dd:19 ls:549
- chance = math.random(60,198)/100
- basebet = 0.00000005
- nextbet = basebet
- function dobet()
- if win then
- chance = math.random(60,198)/100
- nextbet = basebet
- else
- nextbet = previousbet*((99/chance)/((99/chance)-1)*1.02)
- end
- manageRisk()
- print("++ " .. incdrop .. inmdrop)
- end
- ifpause = 0
- ifdrop = 50
- ifprofit = 500
- sbal, mbal = balance, balance
- cdrop, mdrop = 0, 0
- stwin = false
- stbal = balance + (balance * (ifprofit / 100))
- function manageRisk()
- if balance > stbal and ifprofit > 0 then
- stop()
- end
- if balance > mbal then
- if stwin then
- stop()
- end
- if currentprofit / sbal * 100 > ifpause and ifpause > 0 then
- pause()
- end
- mbal = balance
- end
- cdrop = mbal - balance
- mdrop = math.max(mdrop, cdrop)
- if cdrop / mbal * 100 > ifdrop and ifdrop > 0 then
- stwin = true
- end
- incdrop = string.format(" [ %.8f ] ", cdrop)
- inmdrop = string.format(" [ %.8f ] ", mdrop) .. string.format(" [ %.2f ]", mdrop / mbal * 100)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement