Bitcoin Forum
April 26, 2024, 01:16:24 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 »  All
  Print  
Author Topic: 999dice JavaScript+Imacros Open Source *Bot* (Code+Video)  (Read 39091 times)
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3136
Merit: 2908


Top Crypto Casino


View Profile
June 24, 2014, 08:33:25 PM
Last edit: January 29, 2016, 04:33:59 PM by seoincorporation
 #1

***  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:



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%



And if you have luck:



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:



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  Cool

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714137384
Hero Member
*
Offline Offline

Posts: 1714137384

View Profile Personal Message (Offline)

Ignore
1714137384
Reply with quote  #2

1714137384
Report to moderator
1714137384
Hero Member
*
Offline Offline

Posts: 1714137384

View Profile Personal Message (Offline)

Ignore
1714137384
Reply with quote  #2

1714137384
Report to moderator
1714137384
Hero Member
*
Offline Offline

Posts: 1714137384

View Profile Personal Message (Offline)

Ignore
1714137384
Reply with quote  #2

1714137384
Report to moderator
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3136
Merit: 2908


Top Crypto Casino


View Profile
June 24, 2014, 11:50:19 PM
Last edit: June 25, 2014, 12:09:15 AM by seoincorporation
 #2

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;

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 12:54:30 PM
 #3

PLEASE HELP. HOW MAKE THIS IN WINDOWS XP?Huh
trand
Full Member
***
Offline Offline

Activity: 252
Merit: 100


Streamity Decentralized cryptocurrency exchange


View Profile WWW
June 26, 2014, 01:26:30 PM
 #4

PLEASE HELP. HOW MAKE THIS IN WINDOWS XP?Huh
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

leex1528
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


View Profile
June 26, 2014, 03:22:25 PM
 #5

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.
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3136
Merit: 2908


Top Crypto Casino


View Profile
June 26, 2014, 04:43:38 PM
 #6

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

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 05:41:09 PM
 #7

How much do you pay for this to work. Because the hitherto played progressively and start to not believe in this page 999dice.com
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 06:19:51 PM
 #8

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 ....
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 06:58:18 PM
Last edit: June 26, 2014, 08:02:23 PM by Maxscript
 #9

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
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 08:00:18 PM
Last edit: June 28, 2014, 12:25:28 PM by Maxscript
 #10

edit
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 08:09:40 PM
 #11

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
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3136
Merit: 2908


Top Crypto Casino


View Profile
June 26, 2014, 10:19:43 PM
 #12

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



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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Maxscript
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
June 26, 2014, 11:02:03 PM
 #13

You earn / earn / earn or earn or lose? Your situation on this Page Man? 0.006 start?
ripzombie
Full Member
***
Offline Offline

Activity: 589
Merit: 100



View Profile
July 21, 2014, 03:06:58 PM
 #14

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);
}
}
leex1528
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


View Profile
July 21, 2014, 03:09:04 PM
 #15

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!
ripzombie
Full Member
***
Offline Offline

Activity: 589
Merit: 100



View Profile
July 21, 2014, 07:54:56 PM
 #16

Please help me seoincorporation
vladonchik
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
September 22, 2014, 04:00:47 PM
Last edit: October 04, 2014, 10:06:56 AM by vladonchik
 #17

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);
}
}
seoincorporation (OP)
Legendary
*
Offline Offline

Activity: 3136
Merit: 2908


Top Crypto Casino


View Profile
September 24, 2014, 05:39:35 PM
 #18

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.

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


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
h0lybyte
Hero Member
*****
Offline Offline

Activity: 924
Merit: 511


View Profile
September 24, 2014, 06:46:45 PM
 #19

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 :/
vladonchik
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 04, 2014, 10:06:08 AM
 #20

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 Shocked!!! Therefore, replace this line, this if(extract != "-")

It is already working correctly.  Wink

P.S. My code I've already corrected.
Pages: [1] 2 3 »  All
  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!