Ad Code

Responsive Advertisement

Random Win Chance / High Payout Strategy

 resetseed();

min          = 1

max          = 2

chance       = math.random(min*100.0, max*100.0)/100.0

bethigh      = false

losses       = 0

wins         = 0

Increase     = 1.02

Decrease     = 1.00010

basebet      = balance/10000000

nextbet      = basebet

StopOnProfit = balance*10/100

 

function dobet() 

    losses+=1 

    wins+=1 

     if profit > StopOnProfit then 

         losses  = 0

         wins    = 0

         nextbet = basebet

         chance  = math.random(min*100.0, max*100.0)/100.0

         

         ching();

         resetseed3();

         resetseed3();

         resetseed3();

    end 

     if currentstreak%5==0 and win then

        resetseed();

        chance = math.random(min*100.0, max*100.0)/100.0

    end

if (win) then 

    nextbet = balance/10000000

    chance  = math.random(min*100.0, max*100.0)/100.0

    bethigh = !bethigh

else

    if (losses > 1) then

        nextbet = previousbet*Increase

        cchance = math.random(min*100.0, max*100.0)/100.0

    end   

end   

    if currentstreak%3==0 then

        chance  = math.random(min*100.0, max*100.0)/100.0

        

    end

    if currentstreak%2==0 then

        chance  = math.random(min*100.0, max*100.0)/100.0

    end

    if currentstreak%5==0 then

        

        chance = math.random(min*100.0, max*100.0)/100.0

    end

    if currentstreak%6==0 then

        nextbet = previousbet*Increase

        chance = math.random(min*100.0, max*100.0)/100.0

    end

end

Post a Comment

0 Comments