Bitcoin Forum
June 05, 2024, 09:40:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Just-Dice BOT * Martingale at 2.3% *  (Read 921 times)
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3178
Merit: 2965


Top Crypto Casino


View Profile
June 21, 2016, 08:01:33 PM
Last edit: June 21, 2016, 09:15:58 PM by seoincorporation
 #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)

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
StuffSneak
Sr. Member
****
Offline Offline

Activity: 405
Merit: 250

Strive for Success


View Profile
June 21, 2016, 08: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.
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3178
Merit: 2965


Top Crypto Casino


View Profile
June 21, 2016, 08: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.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Mike Mayor
Hero Member
*****
Offline Offline

Activity: 966
Merit: 535


View Profile
June 22, 2016, 12:03:00 AM
 #4

What makes this so special compared to other bots though ?

rezilient
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
June 22, 2016, 12:14:20 AM
 #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!

You don't pay enough.
BitMaxz
Legendary
*
Offline Offline

Activity: 3276
Merit: 2997


BTC price road to $80k


View Profile WWW
June 22, 2016, 01:16:30 AM
 #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?

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Daffadile
Hero Member
*****
Offline Offline

Activity: 1162
Merit: 500

CryptoTalk.Org - Get Paid for every Post!


View Profile WWW
June 22, 2016, 02:18:25 AM
 #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.

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.YoBit AirDrop $.|.Get 700 YoDollars for Free!.🏆
Avirunes
Legendary
*
Offline Offline

Activity: 3094
Merit: 1468


View Profile WWW
June 22, 2016, 03:28:20 AM
 #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.
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3178
Merit: 2965


Top Crypto Casino


View Profile
June 22, 2016, 12:16:30 PM
 #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";

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
andulolika
Legendary
*
Offline Offline

Activity: 2310
Merit: 1047



View Profile
June 22, 2016, 12:24:31 PM
 #10

Awesome bot, keep up the good work.

🔥 🔥 🔥  Satochip - Secure the future  🔥 🔥 🔥
⭐️ Hardware wallet on a smartcard | Affordable and easy to use | Open source and community driven | BTC, LTC, BCH (SLP tokens), ETH (ERC-20 tokens)... ⭐️
──WebsiteShop  |  Bitcointalk  |  Twitter  |  Telegram  |  Github──
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!