Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---=====================
- --HIGH RISK--
- ---=====================
- bb = 1e-7
- w1 = 1
- w2 = 21
- pc = 0
- ip = 0.01385
- ilos = 1.3183
- iwin = 1.25
- rs = 10
- rl = 0
- tlp = 100000
- stoplose = 0
- cutlsval = 0.5
- cutloss = false
- chancetemp = 0
- l = 0
- loss = 0
- red = 0
- winmax = 0
- target = balance*1.5
- resetseed()
- resetstats()
- resetchart()
- nextbet = bb
- chance = w1
- function dobet()
- if profit
- pb = previousbet
- pf = profit
- ch = {w1,w2}
- if (rl == rs) then
- rl = 0
- resetseed();
- resetpartialprofit()
- else
- rl = rl + 1
- end
- if win then
- inmax = winmax +1
- l = 0
- loss = 0
- red = 0
- if (pf >= pc + ip) then
- stoplose = balance - (balance * cutlsval)
- pc = pf
- nb = bb
- chancetemp = 0
- else
- if chancetemp == 0 or chancetemp <= 30 then
- chancetemp = w2
- ch = {chancetemp,chancetemp}
- else
- chancetemp = chancetemp - rs
- ch = {chancetemp,chancetemp}
- end
- nb = pb * iwin
- end
- else
- l = l +1
- loss = loss +1
- red = red +1
- winmax = 0
- nb = pb * ilos
- end
- if (winmax >=2) or (red >= 1) then
- bethigh = not bethigh
- end
- nextbet = nb
- if balance >= tlp then stop() end
- chance = math.random(ch[1]*100.0, ch[2]*100.0)/100.0
- if cutloss then
- if balance <= stoplose then stop() end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement