Search content
Sort by

Showing 6 of 6 results by Astartes248
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Astartes248
on 10/07/2025, 17:45:52 UTC
Sure

Here it is.  I was wondering if the bot can reset and restart everytime the profit is reached.

===================================

-- Base Configuration
base = 0.00000164
profitTarget = 0.00001647
resetAmount = 0.00000164

-- Initialize settings
function OnInit()
    NextBet.Chance = 66
    NextBet.High = true
    NextBet.Amount = base
end

-- Tracking Variables
currentStreak = 0
lastOutcome = nil

function CalculateBet()
    -- Always maintain these settings
    NextBet.Chance = 66
    NextBet.High = true
   
    -- Check profit condition
    if CurrentProfit > profitTarget then
        NextBet.Amount = resetAmount
        return
    end
   
    -- First bet handling (SIMPLIFIED)
    if PreviousBet == nil then
        NextBet.Amount = base
        return
    end
   
    -- Streak tracking (BULLETPROOF VERSION)
    if Win then
        currentStreak = math.max(1, (lastOutcome == "Win" and currentStreak + 1 or 1))
    else
        currentStreak = math.min(-1, (lastOutcome == "Loss" and currentStreak - 1 or -1))
    end
    lastOutcome = Win and "Win" or "Loss"
   
    -- Start with previous amount
    local newAmount = PreviousBet.Amount
   
    -- Apply conditions (PRIORITY ORDER)
    -- Condition 6: >4 Loss streak
    if currentStreak <= -4 then newAmount = newAmount * 0.80 end
   
    -- Condition 5: First loss
    if currentStreak == -1 then newAmount = newAmount * 0.57 end
   
    -- Condition 4: Every 2 losses
    if currentStreak < 0 and math.abs(currentStreak) % 2 == 0 then newAmount = newAmount * 0.85 end
   
    -- Condition 1: Every loss
    if currentStreak < 0 then newAmount = newAmount * 1.50 end
   
    -- Condition 3: <3 win streak
    if currentStreak > 0 and currentStreak < 3 then newAmount = newAmount * 1.50 end
   
    -- Condition 2: Every win
    if currentStreak > 0 then newAmount = newAmount * 1.50 end
   
    -- Final assignment
    NextBet.Amount = newAmount
end

function Reset()
    NextBet.Amount = base
    currentStreak = 0
    lastOutcome = nil
end

===============================================

Can you post your script that you've written so far?
[/quote]
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Astartes248
on 28/06/2025, 20:36:00 UTC
Hi

Is there anyone that can help me with a LUA script. The strategy is to increase on win and increase on loss. The winchance changes for win and loss. When it reaches profit, the script should reset and restart. I have all the conditions in but it stops on the first bet each time I try to run it. Not sure if the gamblerbot can do such a script.

Any advice/help would be appreciated.

Thanks
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Astartes248
on 27/06/2025, 10:59:24 UTC
Success.Thank you.  Now I am just trying to get a script to run.



If you're logging in with your API key you do not need to log in when the site loads in the browser, that is only to get the relevant headers from the site so the bot can connect. If you're using the browser log-in, just try to log in again, the page should stay visible a little longer the second time.
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Astartes248
on 26/06/2025, 18:59:25 UTC
Hi

Do I have to remove the 2FA to be able to log in? The login screen disappears in like 5-10 seconds so there is no time to complete the login.

Thanks for the constant updates.




I've released a new version of the beta: https://github.com/Seuntjie900/Gambler.Bot/releases/latest


Added browser login functionality, started implementing
Better browser bypass
Portable version crashing fix
Fixed freebitco.in login
Package updates
Blocking login without required fields and displays a required error

Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Astartes248
on 24/06/2025, 15:00:39 UTC
Hi. Thanks for the update. I downloaded the new version and tried to log in with Stake.com API key.  Unfortunately it is still failing on the login.

I would really love to test out this gamblerbot.




I've released a new version of the beta: https://github.com/Seuntjie900/Gambler.Bot/releases/tag/5.0.42

Fixed login bug for DuckDice, Stake, PrimeDice and Bitsler
Fixed bet verifiers for working sites
Fixed reset seed for supported sites
Added bet verifiers for different games
Added support for different games to simulators
Fixed version shown on app
Switched portable indicator to use installers
added OSX ARM build for Apple silicon devices
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
Astartes248
on 16/06/2025, 17:55:49 UTC
I just tried the new downloaded version for Stake.com and it won't accept the login with the API