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

0% found this document useful (0 votes)
309 views2 pages

Betting Strategy Script Guide

The document describes a betting algorithm that switches between betting high or low after each win or loss. It tracks the count of wins, losses, and bets. After the first win or loss, it switches the bet direction. After the second win or loss, it also switches the bet direction and resets some variables. If the third result is a win, it adjusts the bet based on the prior results. If the third is a loss, it also adjusts the bet amount depending on the prior win/loss sequence.

Uploaded by

Indra Samawi
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)
309 views2 pages

Betting Strategy Script Guide

The document describes a betting algorithm that switches between betting high or low after each win or loss. It tracks the count of wins, losses, and bets. After the first win or loss, it switches the bet direction. After the second win or loss, it also switches the bet direction and resets some variables. If the third result is a win, it adjusts the bet based on the prior results. If the third is a loss, it also adjusts the bet amount depending on the prior win/loss sequence.

Uploaded by

Indra Samawi
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/ 2

chance= 47.

13
base=0.01
bethigh = true
nextbet = base
wincount = 0
stopnow = false
first = true
second = false
secondwin = false
third = false
betcount=0
function dobet()
-- every 100 bets, reset the seed
if betcount >=100 then
resetseed();
else
betcount=betcount+1
end
done = false
if win then
---

switch high/low every win


bethigh = false
if(first) then
switch high/low on the first win
bethigh = !bethigh
nextbet = base
if(stopnow) then stop() end
end
if(second) then
switch high/low on the second win
bethigh = !bethigh
secondwin = true
second = false
third = true
done = true
end
if(third and !done) then
switch high/low on the third win
bethigh = !bethigh
if(secondwin) then
switch high/low on the second and third win
bethigh = !bethigh
nextbet = base
if(stopnow) then stop() end
else
switch high/low on one and two lose third win
bethigh = !bethigh
nextbet = previousbet * 3
end
third = false
first = true
end

---

---

-----

---

else

---

switch high/low on the every lose


bethigh = true
if(first and !done) then
switch high/low on the first lose
bethigh = !bethigh
first = false
second = true
done = true
end
if(second and !done) then
switch high/low on the second lose
bethigh = !bethigh
secondwin = false
second = false
third = true
done = true
end
if(third and !done) then
switch high/low on the third lose
bethigh = !bethigh
third = false
first = true
print("Go For WIN!!!")
if (secondwin) then
switch high/low on the one lose two in thrird lose
bethigh = !bethigh
nextbet = previousbet * 3
else
switch high/low only if all three lose
bethigh = !bethigh
nextbet = previousbet * 4
end
done = true
end

---

---

---

-----

end
end

You might also like