Ad Code

Responsive Advertisement

Crazy Script v1

 -- safe script - slow profit


chance = 50

minchancewin = 1 -- min chance on win

maxchancewin = 98 -- max chance on win

minchancelose = 5 -- min chance on lose

maxchancelose = 35 -- max chance on lose


testbet = 0.00000001 -- test bet

testbets = 10 -- test bets

base = 0.00000001 -- base bet

casino = 1 -- % risk


test = true

bethigh = true

nextbet = testbet  

payout = 1


testb = 0

wincount = 0

losecount=0

lastbalance=balance


-- set profit target here (Final Balance after Winning)

profittarget = 1.00000000 -- target balance


function dobet() ---------------------------------


if (balance) >= profittarget then

stop();

print(balance)

print("TARGET ACHIEVED!!!")

end


if (balance) < (nextbet) then

stop();

print(balance)

print("INSUFFICIENT FUNDS")

end


r=math.random(2)

if r == 1 then

bethigh=true

else

bethigh=false

end


if balance >= lastbalance then

      lastbalance=balance

      chance=(math.random(minchancewin*100.00,maxchancewin*100.00)/100.00)

      nextbet = testbet

      test = true

      testb = 0

else 

      if test==true then

         testb+=1

         chance=(math.random(minchancewin*100.00,maxchancewin*100.00)/100.00)

         nextbet = testbet

         if testb >= testbets then

            test = false

         end

      else

         chance=(math.random(minchancelose*100.00,maxchancelose*100.00)/100.00)

         --payout = ((100-casino)*math.log(maxchancelose)-(100-casino)*math.log(minchancelose))/(maxchancelose-minchancelose)

         payout = (100-casino)/chance

         nextbet = (lastbalance-balance+base)/(payout-1)

         if nextbet<base then

            nextbet=base

         end

     end

end 


end


Post a Comment

0 Comments