Bitcoin Forum

Bitcoin => Project Development => Topic started by: seoincorporation on June 24, 2014, 08:33:25 PM



Title: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on June 24, 2014, 08:33:25 PM
***  UPDATE ***

999dice is not a legit site;

http://btcfeed.net/fraud/999dice-scam-exposed/

If they change and hide the client seed each bet, that make the bets not provably fair.

***************

Some days ago i create a bot for bet on 999dice:
https://bitcointalk.org/index.php?topic=658328.0

But the bot was on Bash Script for linux, and most of the people dont understand it.

Then i decide to make the 999dice bot 2.0, and these time on java script.

Its hard to make a always win bot... I lose a nice btc amount with the bots test. But at last i find a nice configurations, like my martingale 5% to win... it can make 100 bets with 0.002968 btc:

http://i62.tinypic.com/25qve3k.png

Code:
[windows@localhost ~]$ x=0.00000001; y=$x; for a in $(seq 1 100); do x=$(echo "$x+($x*0.08)" | bc -l); echo "0$x" | cut -c1-10; y=$(echo "$y+$x" | bc -l); done; echo "Total gastado"; echo $y #0.003
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000002
0.00000002
0.00000002
0.00000002
0.00000002
0.00000003
0.00000003
0.00000003
0.00000003
0.00000004
0.00000004
0.00000005
0.00000005
0.00000005
0.00000006
0.00000006
0.00000007
0.00000007
0.00000008
0.00000009
0.00000010
0.00000010
0.00000011
0.00000012
0.00000013
0.00000014
0.00000015
0.00000017
0.00000018
0.00000020
0.00000021
0.00000023
0.00000025
0.00000027
0.00000029
0.00000031
0.00000034
0.00000037
0.00000040
0.00000043
0.00000046
0.00000050
0.00000054
0.00000059
0.00000063
0.00000068
0.00000074
0.00000080
0.00000086
0.00000093
0.00000101
0.00000109
0.00000118
0.00000127
0.00000137
0.00000148
0.00000160
0.00000173
0.00000187
0.00000202
0.00000218
0.00000236
0.00000254
0.00000275
0.00000297
0.00000321
0.00000346
0.00000374
0.00000404
0.00000436
0.00000471
0.00000509
0.00000550
0.00000594
0.00000642
0.00000693
0.00000748
0.00000808
0.00000873
0.00000943
0.00001018
0.00001100
0.00001188
0.00001283
0.00001386
0.00001497
0.00001616
0.00001746
0.00001885
0.00002036
0.00002199
Total gastado
.00029684276960502502
[windows@localhost ~]$

If you have luck and dont lose 100 consecutive times, it is the perfect bot for you:

Code:
var y = 0.00000001;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 0.08;
y = y + (y * j)
var k = (y).toFixed(8)
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000010" + "\n";
macro3 +=  "WAIT SECONDS=10" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
var y = 0.00000001;
    iimPlay(macro3);
}
}

WARNING:Befor start the bot configure the manual bets 0.0000001 and 5%

http://i62.tinypic.com/2emq45i.jpg

And if you have luck:

http://i60.tinypic.com/3346ixv.png

Variables to change:

Code:
var j = 0.08; (Increment after lose)
var y = 0.00000001; (start bet)

But wath the code do?


1.-Make a bet
2.-Read bet result
3.-If lose, bet more, if win start again from 0.0000001

How can you run it?

These JavaScript Code is for Imacros for Firefox

Install Imacros: https://addons.mozilla.org/es/firefox/addon/imacros-for-firefox/

The next screen shot show us the Addon:

http://i57.tinypic.com/2ylu51c.png

For run the bot, join to 999dice, configure the manual bets 0.0000001 and 5%, copy the source code on a new iMacros file, and save it like 999dice.js. Run the JS from iMacros.

Im working now on diferen BTC and % configuration.

All ideas are wellcome and if you like the code, consider makeing a donation: 1GEomkEsQcPoaPDUGQU2L78b2YEFRikUxw

VIDEO:https://www.youtube.com/watch?v=5KCo3_I59Uo (https://www.youtube.com/watch?v=5KCo3_I59Uo)  8)


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on June 24, 2014, 11:50:19 PM
Here is the 95% win martingale edition:

Code:
var y = 0.0000002;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 200;
y = y + (y * j)
var k = (y).toFixed(8)
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=5" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.0000002" + "\n";
macro3 +=  "WAIT SECONDS=2" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
var y = 0.0000002;
    iimPlay(macro3);
}
}

Bets if lose

0.0000402
0.0080802
1.6241202


we can modify that in:
var j = 200;

x=0.000001 (Start bet)
y=x
y=y+(y*200)

Only lose 0.001 for 6 consec loses...

Code:
[windows@localhost ~]$ x=0.0000002; y=$x; for a in $(seq 1 6); do x=$(echo "$x+($x*4)" | bc -l); echo "0$x" | cut -c1-10; y=$(echo "$y+$x" | bc -l); done; echo "Total gastado"; echo $y #0.003
0.0000010
0.0000050
0.0000250
0.0001250
0.0006250
0.0031250
Total gastado
.0039062
[windows@localhost ~]$

var j = 4;


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 12:54:30 PM
PLEASE HELP. HOW MAKE THIS IN WINDOWS XP????


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: trand on June 26, 2014, 01:26:30 PM
PLEASE HELP. HOW MAKE THIS IN WINDOWS XP????
first of all please do not use Caps Lock it like Spamming
what the problem with windows XP?
u just install Firefox Browser and use imacross addons on FireFox,
after that run your imacross select #current and edit put all code on post 1 and save
thats all


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: leex1528 on June 26, 2014, 03:22:25 PM
So your martingale strategy is terrible. 

Basically you are betting you will hit 1 out of 100 rolls at 5%, which is great because hey, 5% chance = 100 rolls right.

Here is some simple math for you.

You are more likely to lose 100 rolls at 5% than lose 6 rolls at 49.5%, meaning, regular Martingale is WAY better than your strategy.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on June 26, 2014, 04:43:38 PM
New code, 95% to win...

Code:
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.0000002" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);

var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00005" + "\n";
macro2 +=  "WAIT SECONDS=1" + "\n";
macro2 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro2 +=  "WAIT SECONDS=3" + "\n";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.0002" + "\n";
macro2 +=  "WAIT SECONDS=1" + "\n";
macro2 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro2 +=  "WAIT SECONDS=3" + "\n";


var macro3;
macro3 =  "CODE:";
macro3 +=  "WAIT SECONDS=1" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
    iimPlay(macro3);
}
}

Note: By manual configure the manual bets 95% win

It bets 0.0000002 to 95% to win, when it lose make 2 bets:
*0.00005
*0.0002

when it wins, keep beting 0.0000002.

Donations: 1GEomkEsQcPoaPDUGQU2L78b2YEFRikUxw


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 05:41:09 PM
How much do you pay for this to work. Because the hitherto played progressively and start to not believe in this page 999dice.com


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 06:19:51 PM
I start in 0.00000999 and make this

while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.0000002" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);

var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.000002" + "\n";
macro2 +=  "WAIT SECONDS=1" + "\n";
macro2 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro2 +=  "WAIT SECONDS=3" + "\n";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.000003" + "\n";
macro2 +=  "WAIT SECONDS=1" + "\n";
macro2 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro2 +=  "WAIT SECONDS=3" + "\n";


var macro3;
macro3 =  "CODE:";
macro3 +=  "WAIT SECONDS=1" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
    iimPlay(macro3);
}
}


This slowlly work
Recently lost everything, because as a little make up for the losses that increase rates in the script. Thanks.
You can count on a grant from my side if I earn on this site ....


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 06:58:18 PM
999dice.com is set machine this is 95% win? NOT!!!!! I tried not only such configurations

MAXCOINWIN (8380128)   84.7815   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   75.1315   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   10.9681   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   03.6723   >04.9999   0.00000600   -0.00000600 <<<<<
MAXCOINWIN (8380128)   04.1608   >04.9999   0.00000040   -0.00000040 <<<<<
MAXCOINWIN (8380128)   59.8203   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   75.3112   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   63.2076   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   55.9477   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   57.6784   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   56.5591   >04.9999   0.00000600   +0.00000030
MAXCOINWIN (8380128)   03.8665   >04.9999   0.00000040   -0.00000040
MAXCOINWIN (8380128)   67.8432   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   40.3392   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   12.0149   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   10.3798   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   18.2683   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   05.4704   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   70.9175   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   28.6598   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   75.6369   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   24.2747   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   58.2370   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   77.3922   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   21.6228   >04.9999   0.00000600   +0.00000030
MAXCOINWIN (8380128)   04.1504   >04.9999   0.00000040   -0.00000040
MAXCOINWIN (8380128)   08.9104   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   25.9386   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   33.6721   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   79.2985   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   10.9401   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   73.6270   >04.9999   0.00000600   +0.00000030
MAXCOINWIN (8380128)   01.3689   >04.9999   0.00000040   -0.00000040
MAXCOINWIN (8380128)   66.4199   >04.9999   0.00000040   +0.00000002
MAXCOINWIN (8380128)   88.0308   >04.9999   0.00000600   +0.00000030
MAXCOINWIN (8380128)   04.7935   >04.9999   0.00000040   -0.00000040
MAXCOINWIN (8380128)   22.5996   >04.9999   0.00000040   +0.00000002


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 08:00:18 PM
edit


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 08:09:40 PM
I HAVE SITUATION IN 95% WIN +2+2+2+2+2+ and -next while -40 and I make  bet to back this is machine eat all balance on situaion to eat. End my time


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on June 26, 2014, 10:19:43 PM
Code for 66% to win:

Code:
var y = 0.00000010;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 3;
y = y + (y * j)
var k = (y).toFixed(8)
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000010" + "\n";
macro3 +=  "WAIT SECONDS=10" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
var y = 0.00000010;
    iimPlay(macro3);
}
}

Bet start 0.0000001

Increment after lose:

> 0.0000004
> 0.0000016
> 0.0000064
> 0.0000256
> 0.0001024
> 0.0004096
> 0.0016384
BTC bets cost.
> .0021845

If you are close to 0.0065536, send btc to your wallet because if the bot lose the 0.0016384 bet, he will bet 0.0065536 for the 8th lose.

Donations: 1GEomkEsQcPoaPDUGQU2L78b2YEFRikUxw




Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Maxscript on June 26, 2014, 11:02:03 PM
You earn / earn / earn or earn or lose? Your situation on this Page Man? 0.006 start?


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: ripzombie on July 21, 2014, 03:06:58 PM
hi friend,

When loss is 100 times stop and start bet ?  This code How can be added?

0.00000001 Start bet and %5

If you want to help donate , Thanks..

----------------------------------------------------------------------------------------
var y = 0.00000001;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 0.08;
y = y + (y * j)
var k = (y).toFixed(Cool
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000001" + "\n";
macro3 +=  "WAIT SECONDS=10" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
var y = 0.00000001;
    iimPlay(macro3);
}
}


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: leex1528 on July 21, 2014, 03:09:04 PM
You are playing the worst kind of martingale, just stick with what is the best at 49.5% chance of winning or whatever it is....It will still fail anyway....Hope you get better though!


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: ripzombie on July 21, 2014, 07:54:56 PM
Please help me seoincorporation


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: vladonchik on September 22, 2014, 04:00:47 PM
Code 33.3 to winBTC

Code:
var y = 0.00000001;
var count=0;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 2;
var macro2;
y = (y * j)
var k = (y).toFixed(8)
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=5" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000001" + "\n";
macro3 +=  "WAIT SECONDS=5" + "\n";
if(extract != "-") {
var y = 0.00000001;
    iimPlay(macro3);
var count = 0;
}

if(extract == "-") {
count = (count+1)
if (count == 3){
y = 0.00000008
}
}
if (count >= 4){
iimPlay(macro2);
}
}


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on September 24, 2014, 05:39:35 PM
Code 33.3 to winBTC

Code:
var y = 0.00000001;
var count=0;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 2;
var macro2;
y = (y * j)
var k = (y).toFixed(8)
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=5" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000001" + "\n";
macro3 +=  "WAIT SECONDS=5" + "\n";
if(extract == "0") {
var y = 0.00000001;
    iimPlay(macro3);
var count = 0;
}

if(extract == "-") {
count = (count+1)
if (count == 3){
y = 0.00000008
}
}
if (count >= 4){
iimPlay(macro2);
}
}
I make some test and i like how it works, i will deposit 0.002 and start from 100sat.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: h0lybyte on September 24, 2014, 06:46:45 PM
Is it worth the electricity you are using to run this? Or the hardware degeneration / implications?

I am happy you arnt on TBH selling this script but rather releasing it (Open Source).

Just a friendly reminder, the only person that wins from gambling is the house :/


Title: WARNING!!! WARNING!!! WARNING!!!
Post by: vladonchik on October 04, 2014, 10:06:08 AM
if(extract == "0") All scripts given string wrong, if there is a profit> 0.99999999 1.00000000 ie from and more, the rate will not return to the base, and will continue to grow :o!!! Therefore, replace this line, this if(extract != "-")

It is already working correctly.  ;)

P.S. My code I've already corrected.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: puzikoz on October 04, 2014, 01:23:27 PM
hi guys.

your script by 33.3% works great for small amount of the bill. Since I'm working on something dogekoin balance grows slowly. I tried to change the settings, but since I'm not a programmer I did not. Please help me: 1 - of which variable depends on the initial rate; 2 - 4 after the stroke to increase the rate from 16 to 100, for example. I would be grateful for your help


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 04, 2014, 03:56:05 PM
hi guys.

your script by 33.3% works great for small amount of the bill. Since I'm working on something dogekoin balance grows slowly. I tried to change the settings, but since I'm not a programmer I did not. Please help me: 1 - of which variable depends on the initial rate; 2 - 4 after the stroke to increase the rate from 16 to 100, for example. I would be grateful for your help

Doge coin BOT for 999dice

Code:

var y = 0.00001;
var count=0;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 2;
var macro2;
y = (y * j)
var k = (y).toFixed(8)
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00001" + "\n";
macro3 +=  "WAIT SECONDS=2" + "\n";
if(extract == "0") {
var y = 0.00001;
    iimPlay(macro3);
var count = 0;
}

if(extract == "-") {
count = (count+1)
if (count == 3){
y = 0.00008
}
}
if (count >= 4){
iimPlay(macro2);
}
}



Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: ligeros on October 07, 2014, 11:05:02 PM
Does somebody know another bitcoin gambling sites (like https://www.999dice.com) that allow to play using scripts?


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 07, 2014, 11:11:03 PM
Does somebody know another bitcoin gambling sites (like https://www.999dice.com (https://www.999dice.com/?19082882)) that allow to play using scripts?

I have made a bot for luckyb.it

Bot: https://bitcointalk.org/index.php?topic=806051.0 (https://bitcointalk.org/index.php?topic=806051.0)

Site: http://luckyb.it/# (http://luckyb.it/#)

And have another iMacros code for roulette...


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: ligeros on October 07, 2014, 11:40:40 PM
Does somebody know another bitcoin gambling sites (like https://www.999dice.com) that allow to play using scripts?

I have made a bot for luckyb.it

Bot: https://bitcointalk.org/index.php?topic=806051.0 (https://bitcointalk.org/index.php?topic=806051.0)

Site: http://luckyb.it/# (http://luckyb.it/#)

And have another iMacros code for roulette...

Thank you very much for your work!


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 08, 2014, 12:12:15 AM
Does somebody know another bitcoin gambling sites (like https://www.999dice.com (https://www.999dice.com/?19082882)) that allow to play using scripts?

I have made a bot for luckyb.it

Bot: https://bitcointalk.org/index.php?topic=806051.0 (https://bitcointalk.org/index.php?topic=806051.0)

Site: http://luckyb.it/# (http://luckyb.it/#)

And have another iMacros code for roulette...

Thank you very much for your work!

No problem, i have fun making this codes, if some day you need a bet bot for a site, maybe i can help you.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: puzikoz on October 11, 2014, 11:03:41 PM
Hello everyone.
Is there anyone else on the boat http://coincheckin.com on imacros (just copy the link if you do not open)?
I'm just not a programmer, use this script but has recently made ​​changes to the site and it stopped working.
maybe the same script can be altered and for this site http://dogecheckin.com  (http://dogecheckin.com)

Help someone who can.
Thank you
_________________________________________________________
VERSION BUILD=8820413 RECORDER=FX
SET !ERRORIGNORE YES
TAB T=1
TAG POS=1 TYPE=INPUT:BUTTON ATTR=ID:play_again
TAG POS=1 TYPE=INPUT:BUTTON ATTR=ID:checkin!
WAIT SECONDS=310
________________________________________________________


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 12, 2014, 03:40:44 PM
Hello everyone.
Is there anyone else on the boat http://coincheckin.com on imacros (just copy the link if you do not open)?
I'm just not a programmer, use this script but has recently made ​​changes to the site and it stopped working.
maybe the same script can be altered and for this site http://dogecheckin.com  (http://dogecheckin.com)

Help someone who can.
Thank you
_________________________________________________________
VERSION BUILD=8820413 RECORDER=FX
SET !ERRORIGNORE YES
TAB T=1
TAG POS=1 TYPE=INPUT:BUTTON ATTR=ID:play_again
TAG POS=1 TYPE=INPUT:BUTTON ATTR=ID:checkin!
WAIT SECONDS=310
________________________________________________________

Is hard to make a bot for that page because it has captcha... you can find a way to automate captcha solving but these services are not free.



Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: ligeros on October 12, 2014, 05:10:48 PM
Hello everyone.
Is there anyone else on the boat http://coincheckin.com on imacros (just copy the link if you do not open)?
I'm just not a programmer, use this script but has recently made ​​changes to the site and it stopped working.
maybe the same script can be altered and for this site http://dogecheckin.com  (http://dogecheckin.com)

Help someone who can.
Thank you
_________________________________________________________
VERSION BUILD=8820413 RECORDER=FX
SET !ERRORIGNORE YES
TAB T=1
TAG POS=1 TYPE=INPUT:BUTTON ATTR=ID:play_again
TAG POS=1 TYPE=INPUT:BUTTON ATTR=ID:checkin!
WAIT SECONDS=310
________________________________________________________

Is hard to make a bot for that page because it has captcha... you can find a way to automate captcha solving but these services are not free.



Yes, captcha appears when you visit site first time and then every 30 min. And usually owners of sites don´t like when users use scripts with antigate connection or somethings like that.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: puzikoz on October 13, 2014, 03:30:07 AM
kartchu I myself shall bring every 30 minutes, but every 5 minutes to press the button is annoying - I beg to correct press the button when there is no captcha, please


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 13, 2014, 04:39:35 AM
kartchu I myself shall bring every 30 minutes, but every 5 minutes to press the button is annoying - I beg to correct press the button when there is no captcha, please

Dont beg for codes buddy, better lear how to make these bots  :P

THE PROBLEM

Quote
VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=http://coincheckin.com/Main/re
TAG POS=1 TYPE=INPUT:BUTTON ATTR=TYPE:button&&CLASS:black_white&&VALUE:CHECK<SP>IN!&&ID:801dc5c7a9acaac

If you see they add a random number at the button, that is why you imacro code dont work now...

you have 2 options now, you can use the button coordinates for make the code, or you can read thar randome number from the source code and add that as a variable, but that is the hard way.

I make one easy script with click coordinates and it works fine for me, try the code and if it dont work find the right value to X and Y:

Code:
VERSION BUILD=8820413 RECORDER=FX
CLICK X=608 Y=357
WAIT SECONDS=300
URL GOTO=http://coincheckin.com/Main/re
WAIT SECONDS=2
CLICK X=608 Y=357
WAIT SECONDS=300
URL GOTO=http://coincheckin.com/Main/re
WAIT SECONDS=2
CLICK X=608 Y=357
WAIT SECONDS=300
URL GOTO=http://coincheckin.com/Main/re
WAIT SECONDS=2
CLICK X=608 Y=357
WAIT SECONDS=300
URL GOTO=http://coincheckin.com/Main/re
WAIT SECONDS=2
CLICK X=608 Y=357
WAIT SECONDS=300
URL GOTO=http://coincheckin.com/Main/re
WAIT SECONDS=2
CLICK X=608 Y=357


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: puzikoz on October 13, 2014, 06:51:11 PM
kartchu I myself shall bring every 30 minutes, but every 5 minutes to press the button is annoying - I beg to correct press the button when there is no captcha, please

Dont beg for codes buddy, better lear how to make these bots  :P

THE PROBLEM

Quote
VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=http://coincheckin.com/Main/re
TAG POS=1 TYPE=INPUT:BUTTON ATTR=TYPE:button&&CLASS:black_white&&VALUE:CHECK<SP>IN!&&ID:801dc5c7a9acaac

If you see they add a random number at the button, that is why you imacro code dont work now...

you have 2 options now, you can use the button coordinates for make the code, or you can read thar randome number from the source code and add that as a variable, but that is the hard way.

I make one easy script with click coordinates and it works fine for me, try the code and if it dont work find the right value to X and Y:

Code:
VERSION BUILD=8820413 RECORDER=FX
CLICK X=608 Y=357
WAIT SECONDS=300
...

Thank you set coordinates in the script - and it works.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 14, 2014, 01:52:35 AM
kartchu I myself shall bring every 30 minutes, but every 5 minutes to press the button is annoying - I beg to correct press the button when there is no captcha, please

Dont beg for codes buddy, better lear how to make these bots  :P

THE PROBLEM

Quote
VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=http://coincheckin.com/Main/re
TAG POS=1 TYPE=INPUT:BUTTON ATTR=TYPE:button&&CLASS:black_white&&VALUE:CHECK<SP>IN!&&ID:801dc5c7a9acaac

If you see they add a random number at the button, that is why you imacro code dont work now...

you have 2 options now, you can use the button coordinates for make the code, or you can read thar randome number from the source code and add that as a variable, but that is the hard way.

I make one easy script with click coordinates and it works fine for me, try the code and if it dont work find the right value to X and Y:

Code:
VERSION BUILD=8820413 RECORDER=FX
CLICK X=608 Y=357
WAIT SECONDS=300
...

Thank you set coordinates in the script - and it works.

Great to know it work fine for you. If you need something else, feel free to PM me.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: semarmesem22 on October 27, 2014, 03:14:41 AM
Hi...please help me to make a script.
-------------------------------
Start bet 0.0000002
Max chance 95%
Time wait 3 second/bet (conti

if lose bet once more time to win one.

Max bet to win one

Back to start bet above
-------------------------------

Thank you


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on October 27, 2014, 02:52:39 PM

if lose bet once more time to win one.

Max bet to win one

Back to start bet above


 ???

I dont understand that part, can you be more clear please?


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: byKurt on January 06, 2015, 08:16:07 AM
kartchu I myself shall bring every 30 minutes, but every 5 minutes to press the button is annoying - I beg to correct press the button when there is no captcha, please

Dont beg for codes buddy, better lear how to make these bots  :P

THE PROBLEM

Quote
VERSION BUILD=8820413 RECORDER=FX
TAB T=1
URL GOTO=http://coincheckin.com/Main/re
TAG POS=1 TYPE=INPUT:BUTTON ATTR=TYPE:button&&CLASS:black_white&&VALUE:CHECK<SP>IN!&&ID:801dc5c7a9acaac

If you see they add a random number at the button, that is why you imacro code dont work now...

you have 2 options now, you can use the button coordinates for make the code, or you can read thar randome number from the source code and add that as a variable, but that is the hard way.

I make one easy script with click coordinates and it works fine for me, try the code and if it dont work find the right value to X and Y:

Code:
VERSION BUILD=8820413 RECORDER=FX
CLICK X=608 Y=357
WAIT SECONDS=300
...

Thank you set coordinates in the script - and it works.

Great to know it work fine for you. If you need something else, feel free to PM me.

Hi. I do not use the coordinates. Problem was solved by the code:

Code:

VERSION BUILD=8871104 RECORDER=FX
SET !EXTRACT_TEST_POPUP NO
SET !ERRORIGNORE YES
SET !ERRORCONTINUE YES
SET !REPLAYSPEED SLOW
TAB T=1
URL GOTO=http://coincheckin.com/?r=fa7e5f1658
WAIT SECONDS=5
TAG POS=1 TYPE=INPUT:BUTTON ATTR=VALUE:CHECK*
WAIT SECONDS=5
URL GOTO=http://dogecheckin.com/?r=dcfe201d7e
WAIT SECONDS=5
TAG POS=1 TYPE=INPUT:IMAGE ATTR=SRC:*dogecoin*
WAIT SECONDS=5
URL GOTO=http://litecheckin.com/?r=eed00089d8
WAIT SECONDS=5
TAG POS=1 TYPE=INPUT:IMAGE ATTR=SRC:*litecoin*
WAIT SECONDS=280


+ Add similar faucets  :P

p.s. Thank you for Imacros Open Source * Bot *

p.p.s. Instead of thanks, you can leave my referral links  ;D


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: cofito1 on January 09, 2015, 11:04:39 PM
hi guys.

your script by 33.3% works great for small amount of the bill. Since I'm working on something dogekoin balance grows slowly. I tried to change the settings, but since I'm not a programmer I did not. Please help me: 1 - of which variable depends on the initial rate; 2 - 4 after the stroke to increase the rate from 16 to 100, for example. I would be grateful for your help

Doge coin BOT for 999dice

Code:

var y = 0.00001;
var count=0;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 2;
var macro2;
y = (y * j)
var k = (y).toFixed(8)
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00001" + "\n";
macro3 +=  "WAIT SECONDS=2" + "\n";
if(extract == "0") {
var y = 0.00001;
    iimPlay(macro3);
var count = 0;
}

if(extract == "-") {
count = (count+1)
if (count == 3){
y = 0.00008
}
}
if (count >= 4){
iimPlay(macro2);
}
}

As is the minimum amount dogecoins to bet with this bot? thx


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Shejker on January 10, 2015, 09:12:46 AM
hi guys.

your script by 33.3% works great for small amount of the bill. Since I'm working on something dogekoin balance grows slowly. I tried to change the settings, but since I'm not a programmer I did not. Please help me: 1 - of which variable depends on the initial rate; 2 - 4 after the stroke to increase the rate from 16 to 100, for example. I would be grateful for your help

Doge coin BOT for 999dice

Code:

var y = 0.1;
var count=0;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 2;
var macro2;
y = (y * j)
var k = (y).toFixed(8)
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.1" + "\n";
macro3 +=  "WAIT SECONDS=2" + "\n";
if(extract == "0") {
var y = 0.1;
    iimPlay(macro3);
var count = 0;
}

if(extract == "-") {
count = (count+1)
if (count == 3){
y = 0.8
}
}
if (count >= 4){
iimPlay(macro2);
}
}



I play with an initial rate of 0.1 and why, when the winning bid> 1, they still continue to grow, and will not be reset to the minimum? That this script needs to be fixed? Help please


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: nyktalgia on February 15, 2015, 09:16:26 AM
How many losses in a row can this go for?


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: anref on February 17, 2015, 09:47:10 AM
Good job. what will be the strategy if the script adding to the general rate of 1 in the case of loss rates, and vice versa. For example 1 -1 rate. Loss -2 (1 + 1) Loss - rate 3 (2 + 1) part-time labor Loss 4 (3 + 1) Profit - next bid 3 (4-1).


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on February 17, 2015, 05:06:29 PM
Good job. what will be the strategy if the script adding to the general rate of 1 in the case of loss rates, and vice versa. For example 1 -1 rate. Loss -2 (1 + 1) Loss - rate 3 (2 + 1) part-time labor Loss 4 (3 + 1) Profit - next bid 3 (4-1).

If you do a flowchart of this i will try to add it to the code.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: anref on February 17, 2015, 06:27:31 PM
Good job. what will be the strategy if the script adding to the general rate of 1 in the case of loss rates, and vice versa. For example 1 -1 rate. Loss -2 (1 + 1) Loss - rate 3 (2 + 1) part-time labor Loss 4 (3 + 1) Profit - next bid 3 (4-1).

If you do a flowchart of this i will try to add it to the code.

Hello. About of sistem http://www.bettingexpert.com/casino/roulette/strategy/d%E2%80%99alembert-system

"D'Alembert system

The system, also called montant et demontant (from French, meaning upwards and downwards), is often called a pyramid system. It is based on a mathematical equilibrium theory devised by a French mathematician of the same name. Like the martingale, this system is mainly applied to the even-money outside bets, and is favored by players who want to keep the amount of their bets and losses to a minimum. The betting progression is very simple: After each loss, you add one unit to the next bet, and after each win, one unit is deducted from the next bet. Starting with an initial bet of, say, 1 units, a loss would raise the next bet to 2 units. If this is followed by a win, the next bet would be 1 units.

This betting system relies on the gambler's fallacy—that the player is more likely to lose following a win, and more likely to win following a loss.[15]"


 https://i.imgur.com/i1spAbM.jpg


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: Transaction2015 on February 17, 2015, 07:11:39 PM
OMG

this work  :-*

i am very interest
and love auhtor  ::)

i am win regular use your method thanx my friend


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on February 18, 2015, 01:49:59 AM
Good job. what will be the strategy if the script adding to the general rate of 1 in the case of loss rates, and vice versa. For example 1 -1 rate. Loss -2 (1 + 1) Loss - rate 3 (2 + 1) part-time labor Loss 4 (3 + 1) Profit - next bid 3 (4-1).

If you do a flowchart of this i will try to add it to the code.

Hello. About of sistem http://www.bettingexpert.com/casino/roulette/strategy/d%E2%80%99alembert-system

"D'Alembert system

The system, also called montant et demontant (from French, meaning upwards and downwards), is often called a pyramid system. It is based on a mathematical equilibrium theory devised by a French mathematician of the same name. Like the martingale, this system is mainly applied to the even-money outside bets, and is favored by players who want to keep the amount of their bets and losses to a minimum. The betting progression is very simple: After each loss, you add one unit to the next bet, and after each win, one unit is deducted from the next bet. Starting with an initial bet of, say, 1 units, a loss would raise the next bet to 2 units. If this is followed by a win, the next bet would be 1 units.

This betting system relies on the gambler's fallacy—that the player is more likely to lose following a win, and more likely to win following a loss.[15]"


 https://i.imgur.com/i1spAbM.jpg

D’Alembert System, really nice information my friend.

I will read more about this and will do a bot using this system.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: anref on February 18, 2015, 08:34:14 AM
This is an interesting system. It fewer risks than Martingale but sometimes you need more time to profit


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: khantmg on November 22, 2015, 06:46:38 AM
Hello all.
I'm new to this forum and I first want to apologize if my post is under wrong topic.
I want to request imacro code or js code for the following strategy in 999dice.

01. First time bet with 0.000001 btc with 90% chance of win
02. Bet the same until lose twice.
03. After 2nd lose, change bet to 0.00001 btc with 51% chance of win.
04. Double the bet amount with the same % chance of win until I win the bet or lose 3 times with 51% chance of win.
05. If I win with 51% chance of win change bet setting to first time bet. If I lose for 3 times with 51% chance of win, change % chance of win to 57% and continue betting by doubling the previous lose bet amount until I win the bet.

I'm requesting the codes because I don't know about imacros coding or java coding.

Waiting for the codes :)

Thank you.



Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on November 22, 2015, 05:49:37 PM
Hello all.
I'm new to this forum and I first want to apologize if my post is under wrong topic.
I want to request imacro code or js code for the following strategy in 999dice.

01. First time bet with 0.000001 btc with 90% chance of win
02. Bet the same until lose twice.
03. After 2nd lose, change bet to 0.00001 btc with 51% chance of win.
04. Double the bet amount with the same % chance of win until I win the bet or lose 3 times with 51% chance of win.
05. If I win with 51% chance of win change bet setting to first time bet. If I lose for 3 times with 51% chance of win, change % chance of win to 57% and continue betting by doubling the previous lose bet amount until I win the bet.

I'm requesting the codes because I don't know about imacros coding or java coding.

Waiting for the codes :)

Thank you.


Hi khantmg, i can do the code but not for free, if you want to get it free you can take my opensource codes and work with them to work the way you want. If you want me to make the code i will do it for 0.1 btc.

Have a great day.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: eneyardi on January 29, 2016, 02:35:45 AM
How much i will pay you for this bet setting in imacro?

dogecoin
base bet: 0.01
%bet: 9
add %after loss: 11
after win: return to base bet
no of bets: infinite/loop



***  UPDATE ***

999dice is not a legit site;

http://btcfeed.net/fraud/999dice-scam-exposed/

If they change the client seed each bet, that make the bets not provably fair.

***************

Some days ago i create a bot for bet on 999dice:
https://bitcointalk.org/index.php?topic=658328.0

But the bot was on Bash Script for linux, and most of the people dont understand it.

Then i decide to make the 999dice bot 2.0, and these time on java script.

Its hard to make a always win bot... I lose a nice btc amount with the bots test. But at last i find a nice configurations, like my martingale 5% to win... it can make 100 bets with 0.002968 btc:

http://i62.tinypic.com/25qve3k.png

Code:
[windows@localhost ~]$ x=0.00000001; y=$x; for a in $(seq 1 100); do x=$(echo "$x+($x*0.08)" | bc -l); echo "0$x" | cut -c1-10; y=$(echo "$y+$x" | bc -l); done; echo "Total gastado"; echo $y #0.003
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000002
0.00000002
0.00000002
0.00000002
0.00000002
0.00000003
0.00000003
0.00000003
0.00000003
0.00000004
0.00000004
0.00000005
0.00000005
0.00000005
0.00000006
0.00000006
0.00000007
0.00000007
0.00000008
0.00000009
0.00000010
0.00000010
0.00000011
0.00000012
0.00000013
0.00000014
0.00000015
0.00000017
0.00000018
0.00000020
0.00000021
0.00000023
0.00000025
0.00000027
0.00000029
0.00000031
0.00000034
0.00000037
0.00000040
0.00000043
0.00000046
0.00000050
0.00000054
0.00000059
0.00000063
0.00000068
0.00000074
0.00000080
0.00000086
0.00000093
0.00000101
0.00000109
0.00000118
0.00000127
0.00000137
0.00000148
0.00000160
0.00000173
0.00000187
0.00000202
0.00000218
0.00000236
0.00000254
0.00000275
0.00000297
0.00000321
0.00000346
0.00000374
0.00000404
0.00000436
0.00000471
0.00000509
0.00000550
0.00000594
0.00000642
0.00000693
0.00000748
0.00000808
0.00000873
0.00000943
0.00001018
0.00001100
0.00001188
0.00001283
0.00001386
0.00001497
0.00001616
0.00001746
0.00001885
0.00002036
0.00002199
Total gastado
.00029684276960502502
[windows@localhost ~]$

If you have luck and dont lose 100 consecutive times, it is the perfect bot for you:

Code:
var y = 0.00000001;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 0.08;
y = y + (y * j)
var k = (y).toFixed(8)
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000010" + "\n";
macro3 +=  "WAIT SECONDS=10" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
var y = 0.00000001;
    iimPlay(macro3);
}
}

WARNING:Befor start the bot configure the manual bets 0.0000001 and 5%

http://i62.tinypic.com/2emq45i.jpg

And if you have luck:

http://i60.tinypic.com/3346ixv.png

Variables to change:

Code:
var j = 0.08; (Increment after lose)
var y = 0.00000001; (start bet)

But wath the code do?


1.-Make a bet
2.-Read bet result
3.-If lose, bet more, if win start again from 0.0000001

How can you run it?

These JavaScript Code is for Imacros for Firefox

Install Imacros: https://addons.mozilla.org/es/firefox/addon/imacros-for-firefox/

The next screen shot show us the Addon:

http://i57.tinypic.com/2ylu51c.png

For run the bot, join to 999dice, configure the manual bets 0.0000001 and 5%, copy the source code on a new iMacros file, and save it like 999dice.js. Run the JS from iMacros.

Im working now on diferen BTC and % configuration.

All ideas are wellcome and if you like the code, consider makeing a donation: 1GEomkEsQcPoaPDUGQU2L78b2YEFRikUxw

VIDEO:https://www.youtube.com/watch?v=5KCo3_I59Uo (https://www.youtube.com/watch?v=5KCo3_I59Uo)  8)



Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on January 29, 2016, 03:07:01 PM
How much i will pay you for this bet setting in imacro?

dogecoin
base bet: 0.01
%bet: 9
add %after loss: 11
after win: return to base bet
no of bets: infinite/loop



***  UPDATE ***

999dice is not a legit site;

http://btcfeed.net/fraud/999dice-scam-exposed/

If they change the client seed each bet, that make the bets not provably fair.

***************

Some days ago i create a bot for bet on 999dice:
https://bitcointalk.org/index.php?topic=658328.0

But the bot was on Bash Script for linux, and most of the people dont understand it.

Then i decide to make the 999dice bot 2.0, and these time on java script.

Its hard to make a always win bot... I lose a nice btc amount with the bots test. But at last i find a nice configurations, like my martingale 5% to win... it can make 100 bets with 0.002968 btc:

http://i62.tinypic.com/25qve3k.png

Code:
[windows@localhost ~]$ x=0.00000001; y=$x; for a in $(seq 1 100); do x=$(echo "$x+($x*0.08)" | bc -l); echo "0$x" | cut -c1-10; y=$(echo "$y+$x" | bc -l); done; echo "Total gastado"; echo $y #0.003
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000001
0.00000002
0.00000002
0.00000002
0.00000002
0.00000002
0.00000003
0.00000003
0.00000003
0.00000003
0.00000004
0.00000004
0.00000005
0.00000005
0.00000005
0.00000006
0.00000006
0.00000007
0.00000007
0.00000008
0.00000009
0.00000010
0.00000010
0.00000011
0.00000012
0.00000013
0.00000014
0.00000015
0.00000017
0.00000018
0.00000020
0.00000021
0.00000023
0.00000025
0.00000027
0.00000029
0.00000031
0.00000034
0.00000037
0.00000040
0.00000043
0.00000046
0.00000050
0.00000054
0.00000059
0.00000063
0.00000068
0.00000074
0.00000080
0.00000086
0.00000093
0.00000101
0.00000109
0.00000118
0.00000127
0.00000137
0.00000148
0.00000160
0.00000173
0.00000187
0.00000202
0.00000218
0.00000236
0.00000254
0.00000275
0.00000297
0.00000321
0.00000346
0.00000374
0.00000404
0.00000436
0.00000471
0.00000509
0.00000550
0.00000594
0.00000642
0.00000693
0.00000748
0.00000808
0.00000873
0.00000943
0.00001018
0.00001100
0.00001188
0.00001283
0.00001386
0.00001497
0.00001616
0.00001746
0.00001885
0.00002036
0.00002199
Total gastado
.00029684276960502502
[windows@localhost ~]$

If you have luck and dont lose 100 consecutive times, it is the perfect bot for you:

Code:
var y = 0.00000001;
while(true) {

var macro1;
macro1 =  "CODE:";
macro1 +=  "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 +=  "TAG POS=14 TYPE=SPAN ATTR=CLASS:BetControlTitle" + "\n";
macro1 +=  "WAIT SECONDS=3" + "\n";
macro1 +=  "SET !EXTRACT NULL" + "\n";
macro1 +=  "TAG POS=1 TYPE=SPAN ATTR=ID:LastBetInfoProfit EXTRACT=TXT" + "\n";
iimPlay(macro1);

var s = iimGetLastExtract();
var extract = s.charAt(0);
var j = 0.08;
y = y + (y * j)
var k = (y).toFixed(8)
var macro2;
macro2 =  "CODE:";
macro2 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT="+ k + "\n";
macro2 +=  "WAIT SECONDS=2" + "\n";
var macro3;
macro3 =  "CODE:";
macro3 +=  "TAG POS=1 TYPE=INPUT:TEXT ATTR=TYPE:text&&CLASS:StandardTextBox&&MAXLENGTH:15&&ID:BetSizeInput CONTENT=0.00000010" + "\n";
macro3 +=  "WAIT SECONDS=10" + "\n";
if(extract == "-") {
    iimPlay(macro2);
}
if(extract == "0") {
var y = 0.00000001;
    iimPlay(macro3);
}
}

WARNING:Befor start the bot configure the manual bets 0.0000001 and 5%

http://i62.tinypic.com/2emq45i.jpg

And if you have luck:

http://i60.tinypic.com/3346ixv.png

Variables to change:

Code:
var j = 0.08; (Increment after lose)
var y = 0.00000001; (start bet)

But wath the code do?


1.-Make a bet
2.-Read bet result
3.-If lose, bet more, if win start again from 0.0000001

How can you run it?

These JavaScript Code is for Imacros for Firefox

Install Imacros: https://addons.mozilla.org/es/firefox/addon/imacros-for-firefox/

The next screen shot show us the Addon:

http://i57.tinypic.com/2ylu51c.png

For run the bot, join to 999dice, configure the manual bets 0.0000001 and 5%, copy the source code on a new iMacros file, and save it like 999dice.js. Run the JS from iMacros.

Im working now on diferen BTC and % configuration.

All ideas are wellcome and if you like the code, consider makeing a donation: 1GEomkEsQcPoaPDUGQU2L78b2YEFRikUxw

VIDEO:https://www.youtube.com/watch?v=5KCo3_I59Uo (https://www.youtube.com/watch?v=5KCo3_I59Uo)  8)


Hi eneyardi, i can do that bot for 0.075, if you want it send me a PM.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: davien on January 29, 2016, 04:49:22 PM
Do you think that the bot could be profitable on long term?


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on February 01, 2016, 03:20:02 AM
Do you think that the bot could be profitable on long term?

There is no profitable system for a long term, the betting sites have a house edge, they are made to win in the long term.

But with the right luck, you can get some nice profit with the bot.


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: sdd333 on November 22, 2016, 06:59:20 PM
Four script for each cryptocurrency,
with your settings,the rates calculated from the size of your balance automatically.
The maximum bet is 1% of your balance.
You can drive all day long-as
in these scripts laid 12 game strategies from 49.95% to 95%,
which are constantly alternating,the maximum subsidence can
make 7-10% of the balance.On average, the script picks up the balance
20% per hour,after 3 weeks of tests all cryptocurrencies-there was no discharge.
Good luck to everyone!! If anyone wants to thank,be grateful (15gMp2K2z29iEr7JGBSUMYUzSYczqH2R8t )

BTC
http://my-files.ru/oyycya
DOGE
http://my-files.ru/7f84na
LTC
http://my-files.ru/gr18k1
ETH
http://my-files.ru/j5ae46


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: seoincorporation on November 30, 2016, 02:52:13 PM
Four script for each cryptocurrency,
with your settings,the rates calculated from the size of your balance automatically.
The maximum bet is 1% of your balance.
You can drive all day long-as
in these scripts laid 12 game strategies from 49.95% to 95%,
which are constantly alternating,the maximum subsidence can
make 7-10% of the balance.On average, the script picks up the balance
20% per hour,after 3 weeks of tests all cryptocurrencies-there was no discharge.
Good luck to everyone!! If anyone wants to thank,be grateful (15gMp2K2z29iEr7JGBSUMYUzSYczqH2R8t )

BTC
http://my-files.ru/oyycya
DOGE
http://my-files.ru/7f84na
LTC
http://my-files.ru/gr18k1
ETH
http://my-files.ru/j5ae46

This is a scam bot who will drain the user balance! be carefull from scammers!

Source: http://my-files.ru/oyycya

Code:
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:WithdrawAddress CONTENT=1AsiQhuVZpi9BNGBnU38fMVHjK2cSwyAQ2
ONDIALOG POS=1 BUTTON=OK CONTENT=
TAG POS=1 TYPE=SPAN ATTR=ID:WithdrawAllButton


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: navigatorus on August 20, 2017, 09:33:27 AM
Guys hi.I want to introduce you my script it brings not a bad profit.Of course the probability of losing is always present,but if not to be greedy and take a small profit of 5% per day is perfectly possible to raise your Deposit.About the script see here https://www.youtube.com/watch?v=jEvpaqw2FNE&t=3046s about my other scripts you can see the video on my channel https://www.youtube.com/channel/UCBwbvVdr__OZCaJ8_v83dHg
Download the scripts in this group https://vk.com/cripto_dice_scripts

Code:
---------------------
chstart = 95
min = 5
max = 95
devider1 = 80000
bonus = 1.15
st = 1000 -- cкoлькo caтoш гoтoвы пpoигpaть  нaпpимep 0.001 этo 100к caтox
stopprof = 10 -- cтoп пpoфит в %
stoplos = 100 -- oбщий cтoп лocc в %
----------------------
avers = 10
--------------------------------
revers = 15  -- пocлe cкoльки кpacныx мeнять aллгopитм cмeны
minhilonumb = 49 -- минимaльнoe знaчeниe диaпaзaнo для cмeны кнoпки
maxhilonumb = 50 -- мaкcммaльнoe знaчeниe диaпaзaнo для cмeны кнoпки
minhilonumb2 = 49 -- минимaльнoe знaчeниe диaпaзaнo для cмeны кнoпки
maxhilonumb2 = 50 -- мaкcммaльнoe знaчeниe диaпaзaнo для cмeны кнoпки
---------------------------------
otladka = false
---------------------------------
standart = true
reversmod = false
aversmode = true
mrevers = 0
zlvavers = 0
l = 0
v = 0
ll = 0
vv = 0
o = 0
resetavers = math.floor(avers+(avers * 0.5))
n = balance/devider1
los = 0
bet = n
a = balance
nextbet = bet
chance = chstart
prev = chance
p = balance
bal = balance
prof = 0
prof = (balance - bal) * 100 / bal
c = balance - st
loss = prof - stoplos
resetseed()
function dobet()
hilonumb = math.random(minhilonumb,maxhilonumb)
hilonumb2 = math.random(minhilonumb2,maxhilonumb2)
timer = math.random (15,25)
timer1 = math.random (100,1000)
timer2 = math.random (5000,10000)
seedrand = math.random(1,10)
if p < balance then
p = balance
end
prof = (balance - bal) * 100 / bal
if profit <= 0.00000001 then
print('======================================================')
print('Идём в минyc.Eблo (⊙_◎) Пpoигpышь  = '..string.format('%.8f', profit))
print('Пpибыль в % = '..string.format('%.8f',prof))
else
print('Идём в плюc.Зaeбoк (ňÓ,)_\,,/ Пpибыль  = '..string.format('%.8f', profit))
print('Пpибыль в % = '..string.format('%.8f',prof))
end
print('======================================================')
if (math.random(1,55) == 13) then
print('выпoлнeннo ycлoвиe lucknumb,cпим '..timer2..'ms.')
sleep(timer2)
print('............................................................................................')
end
if prof > stopprof then
print("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
print('Уpa,мы нaeбaли дaйc,пpoфмит пpивыcил '..stopprof..'%,xapэ,ocтaнaвливaeмcя.')
print("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
print('............................................................................................')
ching()
stop()
end
if prof < loss then
print('Пиздa,дaйc нac нaeбaл,дeп yпaл нa '..stoplos..'%,xapэ,ocтaнaвливaeмcя.')
print('............................................................................................')
alarm()
stop()
end
------------------PEЖИM CMEHЫ КHOПOК "CTAHДAPT"--------------------
if standartmod == true then
print('............................................................................................')
print('PEЖИM CMEHЫ КHOПOК "CTAHДAPT"')
reversmod = false
aversmode = false
if (lastBet.roll > hilonumb2) then
sleep(timer)
print(''..lastBet.roll..' < '..hilonumb2..' ,тыкaeм кнoпкy LOW.')
bethigh = false
else
sleep(timer)
print(''..lastBet.roll..' > '..hilonumb2..' ,тыкaeм кнoпкy HIGH.')
bethigh = true
end
print('............................................................................................')
end
------------------PEЖИM CMEHЫ КHOПOК "CTAHДAPT"--------------------
---------CЧЁTЧИК ДЛЯ ЗAПУCКA 'PEЖИM CMEHЫ КHOПOК "REVERS"-------------
if !win then
mrevers = mrevers + 1
if (mrevers > revers) then
reversmod = true
standartmod = false
aversmod = false
end
end
---------CЧЁTЧИК ДЛЯ ЗAПУCКA 'PEЖИM CMEHЫ КHOПOК "REVERS"-------------
------------------PEЖИM CMEHЫ КHOПOК "REVERS"--------------------
if reversmod == true then
print('............................................................................................')
print('PEЖИM CMEHЫ КHOПOК "REVERS"')
standartmod = false
aversmode = false
---------CЧЁTЧИК ДЛЯ ЗAПУCКA 'PEЖИM CMEHЫ КHOПOК "AVERS"-------------
if lastBet.roll > 2 then
ll = ll + 1
else
ll = 0
end
if ll > avers  then
mrevers = 0
aversmode = true
standartmode = false
reversmod = false
end
if lastBet.roll < 98 then
vv = vv + 1
else
vv = 0
if vv > avers  then
mrevers = 0
aversmode = true
standartmode = false
reversmod = false
end
end
if !win then
o = o + 1
else
o = 0
end
---------CЧЁTЧИК ДЛЯ ЗAПУCКA 'PEЖИM CMEHЫ КHOПOК "REVERS"-------------
if (lastBet.roll < hilonumb) then
sleep(timer)
print(''..lastBet.roll..' > '..hilonumb..' ,тыкaeм кнoпкy LOW.')
bethigh = false
else
sleep(timer)
print(''..lastBet.roll..' < '..hilonumb..' ,тыкaeм кнoпкy HIGH.')
bethigh = true
end
print('............................................................................................')
end
------------------PEЖИM CMEHЫ КHOПOК "AVERS"--------------------
if aversmode == true then
reversmod = false
standartmod = false
ll = 0
vv = 0
mrevers = 0
if lastBet.roll > 5 then
l = l + o + 1
else
l = 0
end
o = 0
if lastBet.roll < 95 then
v = v + o + 1
else
v = 0
end
o = 0
if l > avers  then
print('............................................................................................')
print('PEЖИM CMEHЫ КHOПOК AVERS - lou')
aversmod = true
reversmod = false
standartmod = false
sleep(timer)
bethigh = false
zlvavers = zlvavers + 1
v = 0
end
print('............................................................................................')
if v > avers  then
print('PEЖИM CMEHЫ КHOПOК AVERS-high')
    aversmod = true
reversmod = false
standartmod = false
sleep(timer)
bethigh = true
zlvavers = zlvavers + 1
l = 0
end
print('............................................................................................')
-----------------УCЛOBИE BOЗBPATA К REVERS --------------------
if zlvavers > resetavers - 1 then
print('BOЗBPAT К PEЖИM CMEHЫ КHOПOК "REVERS"')
reversmod = true
standartmod = false
aversmode = false
zlvavers = 0
v = 0
l = 0
o = 0
mrevers = 0
end
-----------------УCЛOBИE BOЗBPATA К REVERS --------------------
end
------------------PEЖИM CMEHЫ КHOПOК "AVERS"--------------------

if win then
mrevers = 0
zlvavers = 0
standartmod = true
reversmod = false
aversmode = false
l = 0
v = 0
ll = 0
vv = 0
o = 0
print('............................................................................................')
print('Пocлe винa лyчшe тopмoзнyть.'..timer1..' ms. пepepыв и cбpoc cидa ')
sleep(timer1)
print('............................................................................................')
print('Cбpacывaeм SEED '..seedrand..' paз,выжгeм ДAЙCУ мoзги))') 
for q=1, seedrand  do
resetseed()
sleep(timer)
end
print('............................................................................................')
end
if a < balance then
a = balance
end
if a == balance then
n = balance/devider1
end
if win then
ch = prev / lastBet.roll
if ch > max then
ch = chstart
end
if ch < min then
ch = chstart
end
bet = n
chance = ch
los = 0

else
los  = los + bet
bet = bet * (100 + ch * bonus)/100
if balance < c then
los = 0
bet = n
c = balance - st
end
end
if otladka == true then
print('mrevers='..mrevers)
print('ll='..ll..' , vv='..vv)
print('l='..l..' , v='..v)
print('zlvavers='..zlvavers)
end
nextbet = bet
end


Title: Re: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)
Post by: remon78eg on May 05, 2018, 11:14:32 AM
in 5%
math says that, i can get up to 377 losses in row, so you have to make a bot to take 400 loss and still alive