Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cat = 25000
- mybet = balance/cat
- mybets = balance/cat
- lol = 0
- chance = 49.95
- nextbet = mybet
- bethigh = false
- target = 10000
- oldbalance = balance
- myseed = 7777
- 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)
- lol = lol+previousbet
- if (lol>=(mybet*32)) then
- nextbet = previousbet*2
- mybet = nextbet
- lol = 0
- else
- nextbet = previousbet
- end
- if balance>=oldbalance then
- mybets = balance/cat
- nextbet = mybets
- mybet = mybets
- lol = 0
- oldbalance = balance
- end
- if balance>=target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement