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

Dicebot Script 35

The document defines variables and functions for a betting simulation. It sets an initial base bet and target balance. It increases the next bet amount and chance of loss by a certain percentage each time the number of consecutive losses reaches a threshold, up to 8 losses. It resets the seed and stats if the number of consecutive wins reaches 10.

Uploaded by

SUNIL PARADHI
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)
128 views2 pages

Dicebot Script 35

The document defines variables and functions for a betting simulation. It sets an initial base bet and target balance. It increases the next bet amount and chance of loss by a certain percentage each time the number of consecutive losses reaches a threshold, up to 8 losses. It resets the seed and stats if the number of consecutive wins reaches 10.

Uploaded by

SUNIL PARADHI
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 = 35

base = 1.5000000 --<<<<-set basebet


nextbet = base
losecount = 0
target = balance + balance/2
sr = 0

function dobet()

if balance > target then stop() end

if sr >= 10 then
resetseed()
sr = 0
print "reset seed"
end

if win then
nextbet = base
chance = 35
losecount = 0
sr = 0
else
bethigh = !betlow
sr+=1
nextbet = previousbet*1.6
losecount+=1
print " "
print "------------------------------------"
print (balance)
print "------------------------------------"
end

if ( losecount >= 1) then


nextbet = previousbet*1.63
chance = 36
end

if ( losecount >= 2) then


nextbet = previousbet*1.66
chance = 37
end
if ( losecount >= 3) then
nextbet = previousbet*1.69
chance = 38
end
if ( losecount >= 4) then

nextbet = previousbet*1.72
chance = 39
end
if ( losecount >= 5) then
nextbet = previousbet*1.75
chance = 40
end
if ( losecount >= 6) then
nextbet = previousbet*1.78
chance = 41
end
if ( losecount >= 7) then
nextbet = previousbet*1.81
chance = 43
end
if ( losecount >= 8) then
nextbet = previousbet*1.84
chance = 44
end
if ( losecount >= 2) then
nextbet = previousbet*1.87
chance = 45
end
if ( losecount >= 3) then
nextbet = previousbet*1.90
chance = 46
end
if ( losecount >= 4) then

nextbet = previousbet*1.93
chance = 47
end
if ( losecount >= 5) then
nextbet = previousbet*1.96
chance = 48
end
if ( losecount >= 6) then
nextbet = previousbet*1.99
chance = 49
end
if ( losecount >= 7) then
nextbet = previousbet*2
chance = 50
end
if ( losecount >= 8) then
nextbet = previousbet*2.03
chance = 51
end
end
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy