Ad Code

Responsive Advertisement

Crazy Script v6

 


--SETTING--------------

bb = 0.00000001 -- base bet 

casino = 1 --% edge house

target = balance*2 --STOP_IF_BALANCE_OVER target

limite = 0 --STOP_IF_BALANCE_UNDER limite

minChance = 0.1 --chance minimum

maxChance = 98 --chance maximum

-----------------------


perte=0

nextbet = bb

payout = ((100-casino)*math.log(maxChance)-(100-casino)*math.log(minChance))/(maxChance-minChance)

chance=math.random(minChance*100,maxChance*100)/100

bethigh=math.random(0,100)%2==0


function target_et_limite()

if (balance-nextbet) < limite then

stop()

end

if balance >= target then

stop()

end

end




function dobet()


chance=math.random(minChance*100,maxChance*100)/100

bethigh=math.random(0,100)%2==0


perte += currentprofit

if perte < 0 then

nextbet=(-perte+bb)/(payout-1)

if nextbet < bb then nextbet =bb end

else

perte=0

nextbet=bb

end

--print("PAYOUT= " ..payout)

target_et_limite()

--simu_printInfo() --simulation


end

Post a Comment

0 Comments