Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- TesModal = 217
- BaseTrade = 0.000000021700
- Chance1 = 2
- Chance2 = 20
- ResetIfwin = 2
- ifwin = 0.42
- iflos = 1.27
- AutoShootIfLose = 38
- BetShoot = 3.255
- ResetBasebetIfProfit = 0.000001085000
- c1 = Chance1*100
- c2 = Chance2*100
- cb = 100
- chance = math.random(c1,c2)/cb
- div = TesModal / BaseTrade
- base = balance / div
- nextbet = base
- betshot = balance / (TesModal/BetShoot)
- pr = 0
- opit1 = balance / (TesModal/ResetBasebetIfProfit)
- rifw = 0
- shotiflos1 = 0
- shotiflos2 = AutoShootIfLose
- prebet = 0.00000001
- target = balance+1281
- stoplos = 0
- bethigh = false
- if nextbet < prebet then nextbet = prebet end
- sid1 = 0
- sid2 = 500
- resetstats()
- --resetseed()
- function dobet()
- sleep(0.15)
- sid1 += 1
- sid2 = math.random (400,600)
- if sid1 >= sid2 then
- resetseed()
- sid1=0 end
- if math.random(1,2) == 1 then bethigh = true else bethigh = false end
- base = balance / div
- chance = math.random(c1,c2)/cb
- if win then
- rifw += 1
- nextbet = previousbet*ifwin
- if rifw == ResetIfwin then nextbet = base
- rifw = 0 end
- shotiflos1 = 0
- else
- rifw = 0
- nextbet = previousbet*iflos
- shotiflos1 += 1
- if shotiflos1 == shotiflos2 then nextbet = betshot end
- end
- pr += lastBet.profit
- if pr >= opit1 then nextbet = base
- pr = 0 end
- if nextbet < prebet then nextbet = prebet end
- if balance <= stoplos then stop() end
- if balance >= target then stop() end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement