Blaksmith / DiceBotScripts

Misc scripts I have written for DiceBot
28 stars 27 forks source link

You are a genius. #6

Open zzzAdy opened 1 year ago

zzzAdy commented 1 year ago

Hello there, as i said in the title you are a genius, this script work perfectly for the long run. But it's a bit low in profit as I have seen in previous discutions .. the script gain in profit around 2% a day of the balance. There are any chance to make this script a bit more profitable? I see you have a vast experience in Lua coding, one of my suggestions for this script it is if we can compound the profit in increasing the bet amount. At the moment i see the script try to win at least the payout. So, if we compound the total profit in a bet amount increasing i think it will be more profitable! Also, as many users are looking for bonuses for wagering, competition, rare back etc. A version of this script that wager a lot it will be so great, something like 98% chance we wager and at 50% chance we recover the losses. Thank you !

Blaksmith commented 1 year ago

Thank you for the kind words.

I will have to give it some thought for that. My hunter script kind-of does what you are suggesting, where it does a 98% win chance betting 100 toshi (of whatever coin) during the seek period, before it triggers the long run of a huge payout chance, starting with 5 toshi base bet. The longer the hunt runs, the more profit it returns. Sadly though, I have tried my hunter with higher base starting, and it didn't go well at all. It needs tweaking when I have the time. Now during the seek period, you can easily set the base bet to 1000, 5000, whatever, so it would bet big and get you up there in betting contests. Just don't change the 5 base for the hunt.

The main issue with increasing the base bets, means that it can get a super deep dig and if your balance is not that big, it can bust very easily. That's one of the main reasons why I created these scripts for lower balances.

Again thank you for your feedback. :)

zzzAdy commented 1 year ago

I have tried the BlaksHunter as well but in my opinion its need to be adjusted the ratio between hunting and recover. In a very long run the balance it will crash.

I have this script:

basebet = 0.01 chance = 49.5 nextbet = basebet

function dobet() -- Check if in profit or in loss if profit >= 0 then nextbet = basebet end if profit <= 0 then nextbet = previousbet * 2 end end

Can you help me to split this script in 2 phases ? Phase 1: We are in profit and we want to wager at 0.01 no matter if we lost or win. Phase 2: We are in lost and we want to recover at 0.001 with an increase on every lost of 100% and resetbet to 0.0001 on every win.

Obviously, it will take a bit to recover at phase 2. But in my view this conditions is seem safe and can have and unlimited wanger in a long run! Only thing it will be how many losses in row my balance can support at 0.001 with increase of 100%. Thank you!