0% found this document useful (0 votes)
289 views

Dicebot Script 3

- The document describes a dicebot script that reduces the chance of winning after a certain number of bets until it hits or loses all funds - It resets the chance to the original level after a streak of wins to introduce spikes in bet sizes - The user should be aware that the chance resets can lead to higher bets each time

Uploaded by

bharatdhodi76
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)
289 views

Dicebot Script 3

- The document describes a dicebot script that reduces the chance of winning after a certain number of bets until it hits or loses all funds - It resets the chance to the original level after a streak of wins to introduce spikes in bet sizes - The user should be aware that the chance resets can lead to higher bets each time

Uploaded by

bharatdhodi76
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

--DICEBOT SCRIPT v1.

12

--Easy to understand, but it basically reduces the chance after


--x amount of bets till it hits or dies
--There are spikes of bets everytime the chance resets so keep that in mind.

game = "dice" --Not needed unless you swap between games


chance = 48.5
base = balance/50000
nextbet = base
bethigh = false
ath = 0
rr = balance
cc = 4
function dobet()
bethigh = not bethigh
if sr >= 5 then
resetseed()
sr = 0
print "reset seed"
end

if win then
nextbet = base
chance = chance
losecount = 0
sr = 0
else
bethigh = ! bethigh
sr+=1
nextbet = previousbet* (110/(99-chance))
losecount+=1
print " "
print "------------------------------------"
print (balance)
print "------------------------------------"
end
if (win) then
nextbet = base
chance = chance-1
else
nextbet = previousbet * (110/(99-chance))
chance = chance+ 1
end
if chance <= 40 then chance = 40
end

end
end
if win then
nextbet = basebet
chance = 48.5
cc = 4
else
if currentstreak%cc==0 then
cc = cc+3
chance = chance - 10 ------ select 10, 5, 3, 1, etc.---
if chance < 20 then
chance = 50
end
end
nextbet = previousbet * (110/(99-chance))
end
end

You might also like