Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 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