Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- SC DARMAJI DICEKODE VERSI 1.0 --
- chance = 30.46
- --div = 0.0000025 --0001
- --basebet = balance * div
- basebet = 0.1
- prebet = 0.01
- cl = 0
- lastbet = basebet
- nextbet = prebet
- profith = 0
- stopwin = false
- sl = 200
- tp = 12000
- function dobet()
- if profit > profith then
- if stopwin then stop() end
- sl = profit + 200
- profith = profit
- --basebet = balance * div
- lastbet = basebet
- end
- if win then
- cl = 0
- else
- cl+= 1
- end
- if cl > 6 and cl <= 9 then
- if (cl == 7) then
- nextbet = lastbet
- else
- if win then
- nextbet = prebet
- else
- lastbet = previousbet * 5
- nextbet = lastbet
- end
- end
- else
- nextbet = prebet
- end
- if currentstreak%-5 == 0 then
- bethigh = !bethigh
- end
- print("==============================")
- print(">>cl : "..cl)
- print(">>nextbet : "..nextbet)
- print(">>stoplose : "..sl)
- --if nextbet > 50 then stopwin = true end
- if balance - nextbet < sl then stop() end
- if balance > tp then stop() end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement