Ad Code

Responsive Advertisement

Crazy Script v4

-- strategy fibonacci


basebet  = 0.00000001 -- base bet

chance   = 49.5  -- chance

nextbet  = basebet

level    = 0

fibstep  = 1

fibreset = 30 -- steps fibonacci to reset

target   = balance * 2 -- target balance to stop

lastbalance = balance


function fib(level)

    fibno     = basebet

    temp      = 0

    prevfibno = 0

    if (level  == 0) then

        fibno = basebet

    else

        for j = 0,level-1,1 do     

            temp      = fibno 

            fibno     = fibno + (prevfibno * fibstep)

            prevfibno = temp

        end

    end

    return fibno    

end


function dobet()

    if balance > target then 

stop() 

print(balance)

print("TARGET ACHIEVED!!!")

    end

    if (balance) < (nextbet) then

stop()

print(balance)

print("INSUFFICIENT FUNDS")

    end


    if balance >= lastbalance then

    lastbalance = balance

level = 0

    else

    if win then

        level -= 1

    else

        level += 1 

    end 

    end


    if level > fibreset then

        level = 0

    end

    nextbet = fib(level)   

end


Post a Comment

0 Comments