A beta version of DiceBot v5 has been released. Download it from
github.com/Seuntjie900/Gambler.Bot/releases

LUA Scripts

Download a script for your bot, or upload your own to share with other users. Login or Register to upload

How do I use this?


Name:Please enter a script name
Uploaded by: valentinex555
Discription:
Next script without a name or a description doesn't get approved





CommentsLogin or Register
LTDice230:10:2017 11:49
changed the basebets and you forgot to add a reset after win so the script will keep increasing bets until it bankrolls you  or hits the target. 

if win then
chance=chance1
nextbet=0.00000001
end

Still testing, but as of right now I do not recommend using this script. Especially before changing the reset
    Login or Register
LTDice230:10:2017 12:01
Revisiting this script after fishing, then I will fix this completely broken code.
    Login or Register
Tomy4504:09:2020 13:02
Fixed this code by me:


-- Minimum Bankroll is Free faucets
-- 
-- 
chance1=47 
chance2=49 
chance3=53.151 
chance4=61.258 
chance5=64.032 

m1=1.9 
m2=2.1
m3=2.2
m4=2.8
m5=3.0
target=0.01000 --> Set your Target Profit here
betfactor=0.0005 
basebet=balance*betfactor/5000 
nextbet=basebet
chance=chance1
bethigh=false
betcount=0
session=0
wincount=0
lostchance=0
losecount=0
low=0
high=0
counter=0

resetseed()
resetstats()

function dobet()

betroll()
rstseed()
viewstats()
betcount+=1

if win
  then
    wincount+=1
    losecount=0
    if profit>target then  stop(); print("TARGET REACHED!") end
    hilo()
    basebet=balance*betfactor/5000
     if wincount<5 then chance=chance1 lostchance=1 end
     if wincount>4 then chance=chance2 lostchance=2 end
    if wincount>14 then chance=chance3 lostchance=3 end
    if wincount>29 then chance=chance4 lostchance=4 end
    if wincount>49 then chance=chance5 lostchance=5 end
    if wincount>75 then chance=chance1 lostchance=1 wincount=0 session+=1 low=0 high=0 end
    nextbet=basebet
  else

    losecount+=1

    if lostchance==1 
      then
        if chance==chance1
          then
            nextbet=previousbet*m1
          else
            chance=chance1
            nextbet=previousbet*m1
        end
    end

    if lostchance==2 
      then
        if chance==chance2
          then
            nextbet=previousbet*m2
          else
            chance=chance1
            nextbet=previousbet*m1
        end
    end

    if lostchance==3 
      then
        if chance==chance3
          then
            nextbet=previousbet*m3
          else
            chance=chance1
            nextbet=previousbet*m1
        end
    end

    if lostchance==4 
      then
        if chance==chance4 
          then
            nextbet=previousbet*m4
          else
            chance=chance1
            nextbet=previousbet*m1
        end
    end

    if lostchance==5 
      then
        if chance==chance5
          then
            nextbet=previousbet*m5
          else
            chance=chance1
            nextbet=previousbet*m1
        end
    end

end

end

function hilo()

if high > low then
bethigh=true
else
bethigh=false
end

if (high-low) > 15 then
bethigh=false
end

if (low-high)> 15 then
bethigh=true
end
end

function betroll()

if (lastBet.roll < chance) then
low += 1
end

if (lastBet.roll > (99.99 - chance)) then
high += 1
end 

end

function rstseed()

if counter==500 then

resetseed()
counter=0
low=0
high=0
else

counter+=1

end
end

function viewstats()
print(" ")
print("Total Bet : "..betcount)
print("Current Streak Loss : "..losecount)
print("Session Win : "..wincount)
print("Total Sessions : "..session)
print("Current Profit : "..string.format("%.8f",profit))
print("Target Profit : "..string.format("%.8f",target))
print("Current Balance : "..string.format("%.8f",balance))
print("High :"..high.." / ".."Low :"..low)
print(" ")
end





    Login or Register