Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- base = (balance/640)
- floatingbasebet = base
- target = 1000
- tens = (base*10)
- sevens = (base*6.9)
- eights = (base*7.9)
- bogus = balance
- chance = 49.5
- bethigh = false
- oldDegen = 0
- dope = balance
- nextbet = floatingbasebet
- resetstats()
- function dobet()
- if win then
- dope = dope+lastBet.Amount
- else
- dope = dope-lastBet.Amount
- end
- if (balance!=dope) then
- print("scam")
- stop()
- end
- if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (not (balance==oldDegen))) then
- floatingbasebet = floatingbasebet*2
- oldDegen = balance
- end
- if (((balance-(floatingbasebet*160))<=0) and (!win) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
- floatingbasebet = base
- oldDegen = 0
- end
- nextbet = floatingbasebet
- if (balance>=target) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement