Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- *Aqayen* --
- --Contact for more scripts - https://T.me/aqayen
- basebet = balance/1000000000
- nextbet = basebet
- chance = 12
- multiplier = 1.6
- seedcounter = 0
- resetseedspin = 10
- target = balance* 100.1
- stoplose = balance - 400
- function dobet()
- bethigh = false
- if (previousbet>1) then
- if (math.random(1,2) % 2 == 0)
- then bethigh = bethigh
- else
- bethigh = false
- end
- end
- chance = math.random(900,2500)/100
- if(seedcounter==resetseedspin) then
- seedcounter = 0
- resetseed()
- else
- seedcounter = seedcounter+1
- end
- if win then
- nextbet = basebet
- seedcounter = 0
- resetseed()
- else
- nextbet = previousbet * multiplier
- end
- nextbalance = balance - nextbet
- if nextbalance <= stoplose then
- stop()
- end
- if(balance>=target) then
- print("target reached")
- stop()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement