Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = balance/20000
- nextbet = basebet
- lol = balance
- oldbal = balance
- snowy = 0
- chance = 49.95
- bethigh = false
- target = 30000
- bill = false
- six = false
- slob = 0
- smit = 0
- bim = 0
- sam = false
- resetstats()
- function dobet()
- basebet = balance/20000
- if !win then
- snowy+=1
- slob+=1
- else
- snowy = 0
- slob = 0
- end
- if (balance>lol) and (balance<(lol+(basebet*5))) and sam==false and bill==false then
- nextbet = previousbet*2
- snowy = 0
- lol = balance
- sam = true
- end
- if (balance<lol) and (slob>=2) then
- nextbet = previousbet*2
- slob = 0
- sam = false
- lol = balance
- end
- if balance>=oldbal and bill==true and win then
- nextbet = basebet
- snowy = 0
- slob = 0
- six = false
- sam = false
- lol = balance
- oldbal = balance
- bill = false
- end
- if snowy>=3 then
- bill = true
- six = true
- snowy = 0
- end
- if (six==true) then
- lol = balance
- nextbet = previousbet
- end
- if win and six==true then
- six = false
- lol = balance
- end
- if (balance>=(oldbal+(basebet*5))) and win then
- nextbet = basebet
- lol = balance
- snowy = 0
- slob = 0
- sam = false
- oldbal = balance
- bill = false
- six = false
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement