Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- enablezz=false
- enablesrc=false
- perte=0
- casino=1
- n=0
- div=100000000 --satoshi
- --balance=10000 --simulation
- --SETTING--------------
- bb = (balance*0.01)/100 --basebet 1/div = 1 satoshi
- pr = bb*10 --profit
- target = profit+((balance)*30)/100 --STOP_IF_BALANCE_OVER target
- limite = profit-((balance)*20)/100 --STOP_IF_BALANCE_UNDER limite
- bethigh = math.random(0,100)%2==0 --sens
- -----------------------
- resetseed()
- counter = 0
- xCH = 1
- Tchance = {50,95,90,85,80,75,70,65,60,55,nil}
- function payout()
- payout=1
- for x=1 ,10000 ,1 do
- if Tchance[x]==nil then break end
- payout += ((100-casino)/Tchance[x])-1
- end
- end
- MRTGLLOPT=false
- function increase()
- if (win) and (Tchance[xCH+1]==nil) then
- xCH=0
- nextbet=bb
- bethigh = math.random(0,100)%2==0
- end
- if !win then
- nextbet=(-perte+pr)/(payout-1)
- chance=Tchance[1]
- xCH=1
- -- print("PAYOUT= " ..payout)
- end
- if nextbet < bb then nextbet=bb end
- end
- function target_et_limite()
- if profit<limite then
- stop()
- print ("STOPLOSS REACHED!")
- end
- if profit >= target then
- print("TARGET REACHED GG !!!")
- stop()
- end
- end
- function rstseed()
- if counter==500 then
- resetseed()
- counter = 0
- else
- counter+=1
- end
- end
- nextbet = bb
- payout()
- chance=Tchance[1]
- function dobet()
- rstseed()
- perte +=currentprofit
- if perte > 0 then
- perte = 0
- bb = (balance*0.01)/100
- end
- increase()
- if win then
- xCH+=1
- chance = Tchance[xCH]
- end
- -- target_et_limite()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement