Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
61 views5 pages

Crazy Script v8

The document outlines a betting strategy involving preroll bets, where the user calculates a new base bet based on their balance and tracks wins and losses. It includes a function to manage bets, adjusting the next bet based on previous outcomes and maintaining statistics like win count and loss count. The strategy aims to reset and adapt based on the betting results to optimize future bets.

Uploaded by

sherkarsunil96
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views5 pages

Crazy Script v8

The document outlines a betting strategy involving preroll bets, where the user calculates a new base bet based on their balance and tracks wins and losses. It includes a function to manage bets, adjusting the next bet based on previous outcomes and maintaining statistics like win count and loss count. The strategy aims to reset and adapt based on the betting results to optimize future bets.

Uploaded by

sherkarsunil96
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 5

-- Preroll Bets

newbase=(balance/(2^14))

betcount=0

bethigh=true

chance = 49.5 -- Chance

counter=0

high=0

loss=0

losscount=0

lostchance=0

low=0

multiplier = 2 -- multiplier bet

prebet = 0.00000001 -- Prebet

preroll = 14 -- preroll bets

--resetseed()

--resetstats()

session=0

wincount=0

wins = 0

evencount = 0

maxlosscount = 0

maxwincount = 0

nextbet=prebet

function dobet()

if betcount < preroll then

betcount = betcount+ 1

nextbet=prebet

if win then
wins = wins+1

else

loss = loss+1

end

end

if betcount == preroll or betcount > preroll then

if betcount == preroll then

wins = preroll - loss

betcount = betcount+1

count=wins-loss

if ((count==0) or (count==-10) or (count==10)) then

nextbet=prebet

evencount =1

print("Resetting")

else

if ((count == -12) or (count == -8) or (count == -6) or (count == -2) or (count


== 4 ) or (count == 8 ) or (count == 14 )) then

if losscount==0 then

newbase = (balance/(2^14))

nextbet=newbase

else

nextbet=newbase*(2^losscount)

bethigh=true

end

else

if losscount==0 then

nextbet=newbase
else

nextbet=newbase*(2^losscount)

bethigh=false

end

end

end

else

if evencount ==1 then

print("maxwincount: ".. maxwincount)

print("maxlosscount: ".. maxlosscount)

print (string.format("New Base: %.8f", newbase))

bethigh=true

nextbet=prebet

betcount=0

wins=0

loss=0

--resetstats()

--resetseed()

evencount=0

else

if win then

wincount +=1

if wincount > maxwincount then

maxwincount = wincount

end

losscount=0
print("maxwincount: ".. maxwincount)

print("maxlosscount: ".. maxlosscount)

print (string.format("New Base: %.8f", newbase))

bethigh=true

nextbet=prebet

betcount=0

wins=0

loss=0

--resetstats()

--resetseed()

else

losscount +=1

if losscount > maxlosscount then

maxlosscount = losscount

end

wincount=0

print("maxwincount: ".. maxwincount)

print("maxlosscount: ".. maxlosscount)

print (string.format("New Base: %.8f", newbase))

bethigh=true

nextbet=prebet

betcount=0

wins=0

loss=0

--resetstats()

--resetseed()

end

end
end

end

end

You might also like