Ad Code

Responsive Advertisement

Crazy Script v2

 -- risky script - fast profit, high risk


chance       = 50                    

base         = 0.00000001 -- base bet 1 

base1        = 0.00000001 -- base bet 2

target       = balance * 2.0 -- Set target profit: 1.1 = 10%, 1.2 = 20%, 1.3 = 30%, 2.0 = 100%


base2        = base1

nextbet      = base

bethigh      = false

balance2     = balance

multiplier   = 1.18 -- multiplier bet

risk = 1.0 -- multiplier risk

underover = 2 -- 0-under, 1-over, 2-random, 3-on win

streak1 = 1

streak2 = 2

streak3 = 3

streak4 = 4


chancemin1 = 30

chancemax1 = 55


chancemin2 = 10

chancemax2 = 30


chancemin3 = 15

chancemax3 = 50


winn = true


if underover == 0 then

bethigh = false

end 

if underover == 1 then

bethigh = true

end

if underover == 2 then

r=math.random(2)

if r == 1 then

bethigh=true

else

bethigh=false

end

end

if underover == 3 then

if winn then

r=math.random(2)

if r == 1 then

bethigh=true

else

bethigh=false

end

end

end



function dobet()


if underover == 0 then

bethigh = false

end 

if underover == 1 then

bethigh = true

end

if underover == 2 then

r=math.random(2)

if r == 1 then

bethigh=true

else

bethigh=false

end

end

if underover == 3 then

if win then

r=math.random(2)

if r == 1 then

bethigh=true

else

bethigh=false

end

end

end


    if balance > balance2 then

        base2    = base * risk

        balance2 = balance

    else

        base2 = balance2 - balance

        if base2 < base * risk then

            base2 = base * risk

        end

    end


    --bethigh = true


    if balance < nextbet then

        stop()

        print(balance)

        print("You lose!")

    end


    if balance >= target then

        stop()

        print("\n\n")

        print (">>> Profit reached: " .. profit)

        print("\n\n")

    end


    if base2 < base1 then

        base2 = base1

    end


    chance = math.random(chancemin1*100, chancemax1*100)/100


    if profit > 0 then

        base2 = base1

    end


    if win then

        chance  = math.random(chancemin2*100, chancemax2*100)/100

        nextbet = base

    else

        nextbet = previousbet * multiplier

    end


    if currentstreak == -streak1 then

        chance  = math.random(chancemin2*100, chancemax2*100)/100

        nextbet = base2 * multiplier

    end


    if currentstreak == -streak2 then

        chance  = math.random(chancemin2*100, chancemax2*100)/100

        nextbet = previousbet

    end


    if currentstreak == -streak2 then

        base2 = previousbet

    end


    if currentstreak == -streak3 then

        chance  = math.random(chancemin2*100, chancemax2*100)/100

        nextbet = previousbet

    end


    if currentstreak == -streak3 then

        base2 = previousbet

    end


    if currentstreak == -streak4 then

        nextbet = (balance2 - balance) * multiplier

        chance  = math.random(chancemin3*100, chancemax3*100)/100

    end


    print("currentstreak = "..currentstreak)

    print("chance = "..chance)

end


Post a Comment

0 Comments