View difference between Paste ID: BR5H4fkw and inZ892r6
SHOW: | | - or go back to the newest paste.
1
target = balance *7.19 
2
chance = 88 
3
 
4
bethigh  = true 
5
 
6
 
7
bb = balance*1e-3 
8
cl = 0 
9
pc = 0 
10
is = 0.9241 
11
ib = 1.250 
12
tp = balance * 12 
13
sl = 0 
14
 
15
nextbet = bb  
16
chance  = 90 
17
bethigh = true 
18
resetstats() 
19
function dobet() 
20
     
21
    pb = previousbet 
22
    pf = profit 
23
    cx = math.random(1.04,8.09) 
24
     
25
    if (win) then 
26
        cl = 0 
27
        if (pf > pc + 0.000001) then 
28
            pc = pf 
29
            nb = bb   
30
            ch = {59,70}           
31
        else 
32
            if (cx > 70) then  
33
                ch = {74,88} 
34
                nb = pb * is 
35
                 
36
            else 
37
                nb = bb 
38
                ch = {6,13} 
39
            end 
40
        end 
41
    else 
42
        cl += 1 
43
        if (cl == 3) then  
44
            cl = 0 
45
            ch = {69,93} 
46
            nb = pb * ib 
47
        end 
48
    end 
49
 
50
    nextbet = nb 
51
    bethigh = math.random(3) > 1.5 
52
    chance  = math.random(ch[1],ch[2]) 
53
    if balance > tp then   
54
        if balance > tp then stop() end 
55
    end  
56
end