Author

Topic: Just-Dice BOT * Martingale at 2.3% * (Read 939 times)

legendary
Activity: 2310
Merit: 1047
June 22, 2016, 07:24:31 AM
#10
Awesome bot, keep up the good work.
legendary
Activity: 3332
Merit: 3116
June 22, 2016, 07:16:30 AM
#9
What makes this so special compared to other bots though ?

mine is open source, that mean every one have access and can modify the code.

I have never worked with JD. With how much balance did you start this? and how much profit did you gain?
I can't really make it out.

Well, i'm having fun with satoshis, i'm runing it with 0.33 clams, and now 1 clams is less than 0.001 btc. i have a profit of 0.004btc now, i know, not big number, but you can try with a bigger bank roll to chase a bigger profit.

I already run it like 8 times, and only 1 time it got busted.

Woah great man. Nice startegy + you got only 1 times busted in 8 runs. Thats what it is driving me ceazy to use it as soon as possible. Can i decrese the multiplier in the script? Just want to drop it a little bit to 2% win chance.

for that change the code line:

Code:
macro0 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:pct_chance CONTENT=2.3" + "\n";

to

Code:
macro0 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:pct_chance CONTENT=2" + "\n";
legendary
Activity: 3094
Merit: 1472
June 21, 2016, 10:28:20 PM
#8
I have never worked with JD. With how much balance did you start this? and how much profit did you gain?
I can't really make it out.

Well, i'm having fun with satoshis, i'm runing it with 0.33 clams, and now 1 clams is less than 0.001 btc. i have a profit of 0.004btc now, i know, not big number, but you can try with a bigger bank roll to chase a bigger profit.

I already run it like 8 times, and only 1 time it got busted.

Woah great man. Nice startegy + you got only 1 times busted in 8 runs. Thats what it is driving me ceazy to use it as soon as possible. Can i decrese the multiplier in the script? Just want to drop it a little bit to 2% win chance.
hero member
Activity: 1162
Merit: 500
CryptoTalk.Org - Get Paid for every Post!
June 21, 2016, 09:18:25 PM
#7
Did you really code this ? It's nice. Really well done ! Bots I sometimes use, the reason why is then there is less worry, it doesn't do badly so it's ok.
Nothing wrong with this bot, just everyone must know it wont make you win it is just automatic that is all.
legendary
Activity: 3374
Merit: 3095
BTC price road to $80k
June 21, 2016, 08:16:30 PM
#6
Well theres no problem if i just try this bot.. and i know its always depends our luck.. but i can still test for fun..
Do you think this script still working as of now or there's a new patch in the system of just dice?
hero member
Activity: 574
Merit: 500
June 21, 2016, 07:14:20 PM
#5
What makes this so special compared to other bots though ?

Damnit!, If you're looking for a very special bot go buy it or hire a person to make you one. WTF!
hero member
Activity: 966
Merit: 535
June 21, 2016, 07:03:00 PM
#4
What makes this so special compared to other bots though ?
legendary
Activity: 3332
Merit: 3116
June 21, 2016, 03:40:48 PM
#3
I have never worked with JD. With how much balance did you start this? and how much profit did you gain?
I can't really make it out.

Well, i'm having fun with satoshis, i'm runing it with 0.33 clams, and now 1 clams is less than 0.001 btc. i have a profit of 0.004btc now, i know, not big number, but you can try with a bigger bank roll to chase a bigger profit.

I already run it like 8 times, and only 1 time it got busted.
sr. member
Activity: 409
Merit: 250
Strive for Success
June 21, 2016, 03:37:20 PM
#2
I have never worked with JD. With how much balance did you start this? and how much profit did you gain?
I can't really make it out.
legendary
Activity: 3332
Merit: 3116
June 21, 2016, 03:01:33 PM
#1
Hello guys, yesterday was the Just-Dice bday, congrats for that ^_^ and i create a crazy bot who make martingale at 2.3% with iMacros and JS.

I make a bot who martingale at 2.3% chance to win and 5% increment after lost, it start at 10500 clamoshis, and with 0.2741 bank-roll you have the chance to bet 100 times.

Te code work easy, just run the next iMacros:

Code:
var y = 0.0001;
macro0 =  "CODE:";
macro0 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro0 +=  "WAIT SECONDS=2" + "\n";
macro0 +=  "SET !EXTRACT NULL" + "\n";
macro0 +=  "TAG POS=1 TYPE=SPAN ATTR=CLASS:myprofit EXTRACT=TXT" + "\n";
macro0 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:pct_chance CONTENT=2.3" + "\n";
iimPlay(macro0);
var r = iimGetLastExtract();
while(true) {
var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "WAIT SECONDS=2" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=CLASS:myprofit EXTRACT=TXT" + "\n";
iimPlay(macro1);
var s = iimGetLastExtract();
var j = 0.05;
y = y + (y * j)
var k = (y).toFixed(8)
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:pct_bet CONTENT="+ k + "\n";
macro2 +=  "TAG POS=1 TYPE=BUTTON ATTR=ID:a_lo" + "\n";
macro2 +=  "WAIT SECONDS=1" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:pct_bet CONTENT=0.0001" + "\n";
macro3 +=  "WAIT SECONDS=2" + "\n";
if(parseFloat(s) <= parseFloat(r)) {
var r = s;
    iimPlay(macro2);
}
if(parseFloat(s) > parseFloat(r)) {
var r = s;
var y = 0.0001;
    iimPlay(macro3);
}
}

*The file need to be *.js


It work the next way:

  • *Start martingale at 2.3%
  • *Iincreases by 5% every loses
  • *After win return to base bet

If you want to know how much the long run cost, you can use this script:

Quote
Code:
[Linux@Usr ~]$ x=0.0001; y=$x; for a in $(seq 1 100); do x=$(echo "$x+($x*0.05)" | bc -l); echo "0$x" | cut -c1-10; y=$(echo "$y+$x" | bc -l); done; echo "Total spend"; echo $y #0.003

Where:

  • x = startng bet
  • "seq 1 100" = number of bets
  • "*0.05" = increment after lost


With this bot i have some nice results:




Now the code is open source and any one can make his own version, enjoy it  Cheesy.

BtcBoss - ClamBoss (1209565)
Jump to: