Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat = 64
- y = balance/cat
- x = balance/cat
- chance = 49.95
- bethigh = false
- target = 5
- nextbet = y
- elf = balance
- olf = balance
- older = balance
- g = true
- j = false
- resetstats()
- function dobet()
- if (balance>=(elf+(x*2))) then
- nextbet = previousbet*2
- x = nextbet
- elf = balance
- j = true
- g = false
- end
- if (balance<=(olf-(x*2))) and g==true then
- nextbet = previousbet*2
- x = nextbet
- olf = balance
- elf = balance
- g = false
- j = true
- end
- if (balance<=(olf-(x*2))) and j==true then
- nextbet = previousbet/2
- x = nextbet
- olf = balance
- elf = balance
- g = true
- j = false
- end
- if nextbet>=balance/4 then
- nextbet = previousbet/2
- x = nextbet
- olf = balance
- j = true
- g = false
- elf = balance
- end
- if nextbet<y then
- nextbet = y
- x = nextbet
- end
- if (balance>=older) then
- y = balance/cat
- nextbet = y
- x = y
- g = true
- j = false
- elf = balance
- olf = balance
- older = balance
- end
- if balance>=target or balance<nextbet then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement