Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --bb:50
- basebet = 2e-8
- chance = 3
- chancef = chance
- nextbet = basebet
- function dobet()
- if win then
- nextbet = basebet
- chance = chancef
- else
- nextbet *= 1.5
- chance *= 1.05
- end
- manageRisk()
- print("++ " .. incdrop .. inmdrop)
- end
- ifpause = 0
- ifdrop = 30
- 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