Show Posts
|
Pages: [1]
|
I liked the idea of the game, its a greed game , you make your deposit and say how much you want to win, if at the end of the time the value is reached you win, if not you lose. For me it's the same risk than any other betting site. It is not an investment, it's a game. A game that can be fun. Anyway i will make a little deposit to test.
|
|
|
I have a strategy to try, but i don't know how to code, it's simple:
First You Need To Have a mininum bet, something like 100 bits. The payout is always 1.5 When you lose your multiplier is 2x, but when you won it don't back to the 100 bits, you multiply for 0.60. So this way you recover any loss without changing the odds and increase the risk.
The script need to always check the betsize and never bet less than 100 bits. It's the problem with the autobot from the dice sites, when i use this strategy the bet go to 0 very fast. Thanks
|
|
|
Thanks, i will test the gamemode 5 and i will put the results here.
|
|
|
I did not get the new version of bustabot in my email, my transaction ID is in your inbox
|
|
|
I'm trying your script at just-dice but after an hour its just stop the bets.
Yeah, I found my code didn't even run as intended once I got it to run more than 15 hands  I quit after a couple hundred to fix it Code has a tendancy to do what you tell it instead of what you want. I'm enjoying the results of your script so far. But since he is not doing what you want maybe you can explain to anyone who can solve the problem helps you. The bot obeys what you program without flaws , it may be something you did wrong.
|
|
|
I tried writing a new code that would just let the decimals do whatever they want, but update the minimum bet as my balance grew... chance=49.95 multiplier=0.4 minbet=0.01 divfactor=11763.8342980769
function dobet() if previousbet*(1-multiplier)<minbet and win then minbet=balance/divfactor nextbet=minbet elseif win then nextbet = previousbet*(1-multiplier) else nextbet = previousbet*(1+multiplier) end end
Same deal as before. 15-25 bets and then 999dice cuts my api connection off. have you tried running this script on another site? It seems that 999dice is doing weird things overall. It lets me keep playing on safedice. Thanks I'm trying your script at just-dice but after an hour its just stop the bets.
|
|
|
Hi, i need a simple code when if i won the bet i keep the same bet but reduce the chance, something like this, its possible to do?
chance= 98 nextbet = balance*(0.01)
function dobet() if win then chance = previouschance(-1) nextbet = lastbet else chance = 98 nextbet = balance*(0.01) end end
i really need a help because i dont know how to code
Pretty close, Try this chance= 98 nextbet = balance* .01 function dobet() if win then chance = chance - 1 -- nextbet = lastbet Not needed, but you could put nextbet = previousbet else chance = 98 nextbet = balance*.01 end end Thanks, works greate, but its not a good strategy... 
|
|
|
Hi, i need a simple code when if i won the bet i keep the same bet but reduce the chance, something like this, its possible to do?
chance= 98 nextbet = balance*(0.01)
function dobet() if win then chance = previouschance(-1) nextbet = lastbet else chance = 98 nextbet = balance*(0.01) end end
i really need a help because i dont know how to code
|
|
|
I bought the bot and enjoyed the pluscoup strategy, I wonder if you would make a bot with this strategy to sites like just-dice , primedice and others.
|
|
|
|