Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat = 500000
- x = balance/cat
- y = balance/cat
- k = 0
- chance = 49.95
- nextbet = x
- bethigh = false
- target = 500000
- old = balance
- myseed = 7777
- olf = balance
- elf = balance
- resetstats()
- function dobet()
- xol = math.random(1,3)
- if (xol==1) then
- myseed = math.random(7777,9999)
- end
- if (xol==2) then
- myseed = math.random(50000,77777)
- end
- if (xol==3) then
- myseed = math.random(50,99)
- end
- seedclient = (myseed)
- k = k+previousbet
- if (k>=(x*14)) and (balance>=(olf+(x*6))) then
- nextbet = previousbet*2
- x = nextbet
- k = 0
- olf = balance
- end
- if (k>=(x*14)) and (balance<=(elf-(x*5))) then
- nextbet = previousbet*2
- x = nextbet
- k = 0
- elf = balance
- end
- if balance>=elf then
- elf = balance
- end
- if balance<=olf then
- olf = balance
- end
- if (balance>=old) then
- y = balance/cat
- nextbet = y
- x = y
- k = 0
- elf = balance
- olf = balance
- old = balance
- resethistory()
- end
- if balance>=target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement