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:GTP-dobra robota !!
Uploaded by: orecho
Discription:
I tested on 0.07 coin account
when I moved the chance from 45 to 1 +1 up in 10 bets I won over 700%, not very smart I admit. I haven't changed anything since then and the script works very well. I wish you a lot of happy bets





CommentsLogin or Register
IceAssas129:04:2024 17:09
ej bo mam lekki problem z tym skryptem pomoglbys? moje dc to hopson0001 jezeli bedziesz mial czas to napisz
    Login or Register
bobwood123402:05:2024 19:23
-- Variables
baseBet = 0.00000001  -- Initial bet
current_round = 0  -- Current round number
chance = 45  -- Initial win chance
nextbet = 0.00000001
a = 0  -- Variable to accumulate bet values

function dobet()
    -- Set the bet outcome (high or low) randomly
    bethigh = math.random() < 0.5  

    -- Calculate the next bet value based on the chance
    payout = (100 - 1) / chance
    multi = payout / (payout - 1)
    nextbet = a / (payout / multi)

    -- If won, reset round number and restore chance
    if win then 
        a = 0 
        current_round = 0
        chance = 45
        nextbet = baseBet  -- You may want to revert to `baseBet` here instead of recalculating
    else
        -- Update round number after a loss
        current_round = current_round + 1

        -- Decrease chance by 1% after a loss
        chance = chance - 1
        
        a = a - currentprofit  -- Update 'a' value

        -- If chance falls below a certain threshold (e.g., 1%), you may want to reset or stop the script
        if chance < 1 then
            stop() -- Stops the script
        end
    end

    -- Additional safeguards for `nextbet` value
    if nextbet < baseBet then 
        nextbet = baseBet 
    end 
    
    -- If `sitemin` variable exists, you may also add:
    -- if nextbet < sitemin then nextbet = sitemin end

    -- Round `nextbet` to 8 decimal places
    nextbet = math.floor(nextbet * 10^8) / 10^8
end
    Login or Register
IceAssas103:05:2024 21:34
This comment has been removed.
    Login or Register