Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- doc = balance
- chance = 49.5
- base = 0.0001
- bethigh = false
- sad = (base*10)
- nob = (base*2.9)
- frock = (base*2)
- idiot = (base*6.9)
- tom = ((math.floor(balance/sad))*sad)
- up = 6.9
- down = 2.9
- bob = (((math.floor(balance/sad))*sad)-nob)
- idios = ((balance-bob)/5)
- freak = math.floor(idios/frock)
- boom = freak*frock
- mighty = base
- nextbet = base
- resetstats();
- function dobet()
- if (balance>(tom+(nextbet*up))) then
- up = 4.9
- down = 4.9
- nextbet = previousbet*2
- tom = balance
- end
- if (balance<(tom-(nextbet*down))) then
- up = 4.9
- down = 4.9
- nextbet = previousbet*2
- tom = balance
- end
- if ((nextbet>=(balance/30)) and (balance>bob) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then
- idios = ((balance-bob)/5)
- freak = math.floor(idios/frock)
- boom = freak*frock
- mighty = previousbet-boom
- if mighty<base then
- mighty = base
- end
- nextbet = mighty
- up = 6.9
- down = 2.9
- tom = ((math.floor(balance/sad))*sad)
- end
- if ((nextbet>=(balance/30)) and (balance<bob) and (balance<(((math.floor(balance/sad))*sad)+idiot))) then
- idios = ((bob-balance)/5)
- freak = math.floor(idios/frock)
- boom = freak*frock
- mighty = previousbet-boom
- if mighty<base then
- mighty = base
- end
- nextbet = mighty
- up = 6.9
- down = 2.9
- tom = ((math.floor(balance/sad))*sad)
- end
- if (balance<base) then
- stop()
- end
- if (balance>=144) then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement