Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fraction = 50000
- basebet = balance/fraction
- nextbet = basebet
- bethigh = false
- chance = 20
- target = 100000
- james = balance
- zim = 0
- zye = 0
- lye = 0
- him = 0
- vim = 0
- kim = 0
- mim = 0
- butch = false
- function dobet()
- if win then
- zim+=1
- kim+=1
- vim = 0
- else
- vim+=1
- kim+=1
- end
- if (vim==1) and (chance==20) and (zim<=1) then
- chance = 24
- nextbet = previousbet*3
- vim = 0
- end
- if (vim==1) and (chance==24) then
- chance = 49.95
- zye+=1
- nextbet = previousbet*3
- end
- if (zim==1) then
- mim+=1
- zim = 0
- end
- if (mim>=1) then
- butch = true
- end
- if (butch==true) and (chance==20) then
- chance = 24
- nextbet = previousbet
- zim = 0
- end
- if (butch==true) and (chance==24) and !win then
- chance = 49.95
- mim = 0
- butch = false
- nextbet = previousbet*3
- end
- if (math.fmod(kim,1)==0) and (chance==49.95) then
- nextbet = previousbet*2
- lye+=1
- end
- if (lye>=1) and (math.fmod(kim,4)==0) and (chance==49.95) and !win then
- chance = 95
- nextbet = previousbet*100
- lye = 0
- him+=1
- end
- if(him==1) then
- chance = 95
- nextbet = previousbet*3
- end
- if (nextbet==nil) then
- nextbet = previousbet
- end
- if balance>james and win then
- nextbet = balance/fraction
- chance = 20
- kim = 0
- mim = 0
- butch = false
- lye = 0
- him = 0
- james = balance
- end
- if balance>target then
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement