Pages:
Author

Topic: Just-Dice Automated betting, investing and stat scripts. [discontinued] (Read 5432 times)

full member
Activity: 210
Merit: 100
Nix i have been using your script for a few days and had some decent luck but nothing worth talking about so I started playing with the betting system and discovered a method that pays very well.  For example tonight I bought in with 6k cashed out with 140k not a bad investment for a couple of hours..  I would love to have you or someone else modify your code to work with my method.

If you are interested please let me know.

newbie
Activity: 12
Merit: 0
HI Nixsy, good job and the BOT looks nice! But I have some questions about this BOT:
1. What's the meaning of and
2. What's the profit rate for this BOT according your experience?
Thanks!
newbie
Activity: 12
Merit: 0
I started using this today and I hope I get lucky with, I was using Gray's bot and the result was overall decent, I did few mistakes and got some heavy losses but I comeback slowly.

what I would love to see in your Bot Nix for Doge at least is the possibility to save the initial value (so when we hit start it will get it from that field not what was bet lastly) as it's easy to have omission and the bot start at something big and we figure out sometimes after it's too late.

another good idea I guess is to add a counter of the long streaks or add something to represent them in the graph so we can see the pattern of which repeat the most and we can exploit this information in the tweaks.

one more thing is to be able to survive a restart of servers of course so we can set it and forget it... I will configure an old machine just for this, so it will run 24/7 at small initial bet and I hope I will get a good surprise after few days (of course I will not forget you and your efforts).

I have few more ideas about strategies, so please contact me in private to discuss about.
legendary
Activity: 1199
Merit: 1047
Really nice, I love the investor suite.
full member
Activity: 151
Merit: 100
Just tried to use this, cant seem to use this on the site.

The bet areas are in pink, not allowing to bet after I set everything up.

This would happen when you do not have enough bank to run the martingale. The latest version will instead of preventing you starting the bot, Has a display showing you how much balance is needed to run the martingale you have specified. This way is up to the user to decide if they wish to risk betting on a martingale without the available balance to run through a complete martingale sequence.
legendary
Activity: 1456
Merit: 1002
Just tried to use this, cant seem to use this on the site.

The bet areas are in pink, not allowing to bet after I set everything up.
full member
Activity: 151
Merit: 100
Can this bot dynamically change your increase percentage on loss depending on what multiplier you use?

We don't always need to double the bet especially on high multipliers (3x and up) and for low multipliers we need to more than double to cover loss or at least break even. If the bot could adjust dynamically this would be awesome. Is that possible?

do you mean the reset % with the martingale bot? if so it is worked out as a percentage of your total bank, So I guess its dynamic.

Actually I think I'm talking about something different.

In martingale you usually double your bet on loss, regardless of your bankroll until you run out. This works great on a 2x multiplier.

But if your multiplier is different say 3x (33% win chance) you don't need to double your bet every time.

Is this what your bot does already?


Oh and thank you for the awesome bot!

I understand now =) @33% just use 1.5 in the multiplier field. I guess that is the same as multiplying by 3 every second bet. But to answer the question. there is currently not a delay between bets and multiplication. It sounds like a nice idea though, Just not sure how to implement such an idea yet =)

[Update] This will do what you are asking =)
https://github.com/CriticalNix/inkha-just-dice.com
MZD
full member
Activity: 189
Merit: 100
Can this bot dynamically change your increase percentage on loss depending on what multiplier you use?

We don't always need to double the bet especially on high multipliers (3x and up) and for low multipliers we need to more than double to cover loss or at least break even. If the bot could adjust dynamically this would be awesome. Is that possible?

do you mean the reset % with the martingale bot? if so it is worked out as a percentage of your total bank, So I guess its dynamic.

Actually I think I'm talking about something different.

In martingale you usually double your bet on loss, regardless of your bankroll until you run out. This works great on a 2x multiplier.

But if your multiplier is different say 3x (33% win chance) you don't need to double your bet every time.

Is this what your bot does already?


Oh and thank you for the awesome bot!
full member
Activity: 252
Merit: 100
MARKETPLACE FOR PAID ADVICE LIVE BROADCASTS
Thanks for the work Smiley
sr. member
Activity: 350
Merit: 250
Ok, thank you.
I will test it out next time I bet on just-dice Smiley
full member
Activity: 151
Merit: 100
How does it handle "latency" problems with the website?

The only trouble I have had is when the server restarts. That usually needs a page refresh and a bot restart. other than that they have an auto timer based on the delay for bets that the server uses.

like this.

Code:
 
function martinDelay_loop() { //auto tweaks the delay speed according to values found on the just-dice FAQ

  setInterval(function () {

        if (new_val != new_val2) {
            new_val2 = new_val;
            if (new_val > 0.00100000) {
                martinDelay = 300;
                console.log('running speed changed to ' + (martinDelay / 1000) + ' seconds');
            } else if (new_val > 0.00010000 && new_val < 0.00100000) {
                martinDelay = 600;
                console.log('running speed changed to ' + (martinDelay / 1000) + ' seconds');
            } else if (new_val > 0.00001000 && new_val < 0.00010000) {
                martinDelay = 800;
                console.log('running speed changed to ' + (martinDelay / 1000) + ' seconds');
            } else if (new_val > 0.00000100 && new_val < 0.00001000) {
                martinDelay = 1000;
                console.log('running speed changed to' + (martinDelay / 1000) + ' seconds');
            } else if (new_val > 0.00000010 && new_val < 0.00000100) {
                martinDelay = 1200;
                console.log('running speed changed to ' + (martinDelay / 1000) + ' seconds');
            } else {
                martinDelay = 1500;
                console.log('running speed changed to ' + (martinDelay / 1000) + ' seconds');
            }

        }

    }, 100);
}

[edit 26/12/13] The latest version waits for the last be to complete before placing a new bet.
sr. member
Activity: 350
Merit: 250
How does it handle "latency" problems with the website?
full member
Activity: 336
Merit: 100
full member
Activity: 151
Merit: 100
"Patient Martingale" seems kinda pointless except for those who fall for Gambler's Fallacy.

It was more of a learning experience dude =), But With luck it could work.
ni|
member
Activity: 84
Merit: 10
"Patient Martingale" seems kinda pointless except for those who fall for Gambler's Fallacy.

I agree with Rannasha on this, sooner or later reds will catch up. Nevertheless , good work sir , bot works and looks pretty good
hero member
Activity: 728
Merit: 500
"Patient Martingale" seems kinda pointless except for those who fall for Gambler's Fallacy.
full member
Activity: 151
Merit: 100
Can this bot dynamically change your increase percentage on loss depending on what multiplier you use?

We don't always need to double the bet especially on high multipliers (3x and up) and for low multipliers we need to more than double to cover loss or at least break even. If the bot could adjust dynamically this would be awesome. Is that possible?

do you mean the reset % with the martingale bot? if so it is worked out as a percentage of your total bank, So I guess its dynamic.
MZD
full member
Activity: 189
Merit: 100
Can this bot dynamically change your increase percentage on loss depending on what multiplier you use?

We don't always need to double the bet especially on high multipliers (3x and up) and for low multipliers we need to more than double to cover loss or at least break even. If the bot could adjust dynamically this would be awesome. Is that possible?
b!z
legendary
Activity: 1582
Merit: 1010
This is very sensible advice And again let me emphasize the importance of never having more in your balance than you are willing to lose. It would be a good idea to make a new account to mess around with bots until you fully understand them and feel you wish to risk more.

That's very good advice. Users should not gamble what they cannot afford to lose, with a bot in its early stages of development.

It looks like you've put a lot of great effort into it. Great job Smiley
full member
Activity: 151
Merit: 100
Just-Dice does not recommend the usage of bots however they are not banned from usage. It's important to use 2 key authenticator at all times.

This is very sensible advice And again let me emphasize the importance of never having more in your balance than you are willing to lose. It would be a good idea to make a new account to mess around with bots until you fully understand them and feel you wish to risk more.
Pages:
Jump to: