Bitcoin Forum
April 27, 2024, 04:13:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2  All
  Print  
Author Topic: Freebitco.in Autoplayer  (Read 23707 times)
JasonWoods (OP)
Member
**
Offline Offline

Activity: 61
Merit: 11


View Profile
May 22, 2014, 07:56:14 AM
Last edit: May 24, 2014, 12:06:14 PM by JasonWoods
 #1

I have written an automatic martingale player. It just needs to be copy & pasted into the webconsole of Firefox and keeps on playing until it either reaches a certain amount of rounds, or a stake limit (with audio alert).

If anybody is interested, pm me an offer and I'll clean up the code (it's not obfuscated so you can easily work on it).

It's for scientific/educational purposes and losses may occur. Sold as is.

EDIT:
I posted the script later in this thread. If you like it, please tip me Smiley
1714234405
Hero Member
*
Offline Offline

Posts: 1714234405

View Profile Personal Message (Offline)

Ignore
1714234405
Reply with quote  #2

1714234405
Report to moderator
1714234405
Hero Member
*
Offline Offline

Posts: 1714234405

View Profile Personal Message (Offline)

Ignore
1714234405
Reply with quote  #2

1714234405
Report to moderator
1714234405
Hero Member
*
Offline Offline

Posts: 1714234405

View Profile Personal Message (Offline)

Ignore
1714234405
Reply with quote  #2

1714234405
Report to moderator
The network tries to produce one block per 10 minutes. It does this by automatically adjusting how difficult it is to produce blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714234405
Hero Member
*
Offline Offline

Posts: 1714234405

View Profile Personal Message (Offline)

Ignore
1714234405
Reply with quote  #2

1714234405
Report to moderator
1714234405
Hero Member
*
Offline Offline

Posts: 1714234405

View Profile Personal Message (Offline)

Ignore
1714234405
Reply with quote  #2

1714234405
Report to moderator
1714234405
Hero Member
*
Offline Offline

Posts: 1714234405

View Profile Personal Message (Offline)

Ignore
1714234405
Reply with quote  #2

1714234405
Report to moderator
Nobitcoin
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


In holiday we trust


View Profile
May 22, 2014, 10:33:08 AM
 #2

A non working bot is that worth trying to sell?
JasonWoods (OP)
Member
**
Offline Offline

Activity: 61
Merit: 11


View Profile
May 22, 2014, 02:55:45 PM
 #3

A non working bot is that worth trying to sell?
Why should it not be working?
Jcw188
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


Carpe Diem


View Profile
May 22, 2014, 03:14:55 PM
 #4

If it worked, wouldn't you just be using it yourself?  I think that's what the second poster is trying to ask.



████▄██████████▄
███▄████████████
▄███▀
████
████
████
▀███▄
███▀████████████
████▀██████████▀


▄██████████▄
████████████
███████████▀███▄
████████████████
████████████████
████████████████
▀███▄███████████
████████████████
████▀██████████▀


▄██▄█████████▄██▄
▀████▄█████▄████▀
▀████▄▄████▀
███████████
▄███▀█████▀███▄
█████████████████
█████████████████
█████████████████
▀███████████████▀


▄███████████████▄
█████████████████
████▀███▀██████▀
███████▄█████▀
████▄▄██████████▄
▀▀██████▀███████
▄██████▄███▄████
█████▀██████████
▀██▀███▀████████▀


████▄███████████
████████████████
▄███▀███████████
███████████████
██████████████
████████████████
███████████▄███▀
████████████
▀██████████▀
████████
██
██
██
██
██
██
██
██




██
██
██
██
██

██
██
██
████████
|
.
Listed
on
BINANCE
KUCOIN
Gate.io
|
JasonWoods (OP)
Member
**
Offline Offline

Activity: 61
Merit: 11


View Profile
May 22, 2014, 03:46:39 PM
 #5

If it worked, wouldn't you just be using it yourself?  I think that's what the second poster is trying to ask.
Part of the martingale strategy is the fact that you need the funds to survive a couple of consecutive losses.
With about 450 Satoshi per payout, it takes a few days to collect enough, especially if you want to play with a minimum stake of 10 instead of 1 for example. I'm currently trying to build up a budget there.
That's why I thought I'd offer it for those interested. In my test runs it worked, although it turns out I need to be able to survive more tan 16 losses in a row Tongue
You cannot earn a fortune on freebitco.in, but it's entertaining to play around. Worst case you lose a dollar or two only.
amacar
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
May 23, 2014, 07:53:19 PM
 #6

I wrote it myself too. If you want to play for 1 satoshi at the beggining you can use lower code. (Just paste it into browser console - usually F12)

Quote
var myVar = window.setInterval(function() {

if( $('#double_your_btc_bet_lose').is(':empty') )
{
   $("#double_your_btc_min").click();
   $("#double_your_btc_bet_hi_button").click();
}
else
{
   $("#double_your_btc_2x").click();
   $("#double_your_btc_bet_hi_button").click();
}
    
}, 3000);

or change
Quote
$("#double_your_btc_min").click();

with this (set any value you wish)
Quote
$("#double_your_btc_stake").val("0.00000005");

any donations to address in my profile  Wink
bitgoldencoin
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
May 23, 2014, 09:48:11 PM
 #7

Thanks for the code, I will be trying it out and leave a review of my experience next week
bitgoldencoin
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
May 23, 2014, 09:53:00 PM
 #8

I have written an automatic martingale player. It just needs to be copy & pasted into the webconsole of Firefox and keeps on playing until it either reaches a certain amount of rounds, or a stake limit (with audio alert).

If anybody is interested, pm me an offer and I'll clean up the code (it's not obfuscated so you can easily work on it).

It's for scientific/educational purposes and losses may occur. Sold as is.


Jason Woods, if you share yours too i am sure people will tip you for your hard work and you will profit more than trying to sell it here... just a thought, pm me if you wanna discuss it in private.
fatguyyyyy
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250

Bitcoin Mixer: https://BitLaunder.com


View Profile WWW
May 23, 2014, 10:48:22 PM
 #9

I wrote it myself too. If you want to play for 1 satoshi at the beggining you can use lower code. (Just paste it into browser console - usually F12)

Quote
var myVar = window.setInterval(function() {

if( $('#double_your_btc_bet_lose').is(':empty') )
{
   $("#double_your_btc_min").click();
   $("#double_your_btc_bet_hi_button").click();
}
else
{
   $("#double_your_btc_2x").click();
   $("#double_your_btc_bet_hi_button").click();
}
    
}, 3000);

or change
Quote
$("#double_your_btc_min").click();

with this (set any value you wish)
Quote
$("#double_your_btc_stake").val("0.00000005");

any donations to address in my profile  Wink

Where do you input this? I`m pretty new where this goes, does this work?  Smiley

sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 23, 2014, 10:55:18 PM
 #10

After playing for like 7-10 minutes the total balance becomes 0.
amacar
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
May 23, 2014, 11:08:51 PM
 #11

It is still called gambling, so you should read first about martingale strategy before running my script. http://en.wikipedia.org/wiki/Martingale_(betting_system)

Just for info:
Quote
it has been reported that in Casino Monte Carlo, Monaco, red came up 39 times in a row

So if there is a long strike of opposite colors, your balance will go to 0  Sad
(Another fun fact: if your starting bid is 1 satoshi, and there is 39 opposite colors in a row you would need 5497.55813888 BTC to not change your balance to 0)
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 23, 2014, 11:14:31 PM
 #12

It is still called gambling, so you should read first about martingale strategy before running my script. http://en.wikipedia.org/wiki/Martingale_(betting_system)

Just for info:
Quote
it has been reported that in Casino Monte Carlo, Monaco, red came up 39 times in a row

So if there is a long strike of opposite colors, your balance will go to 0  Sad
(Another fun fact: if your starting bid is 1 satoshi, and there is 39 opposite colors in a row you would need 5497.55813888 BTC to not change your balance to 0)

How much stake should be put to make the most profit and not go to 0.
amacar
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
May 23, 2014, 11:19:36 PM
 #13

Depends on luck  Cheesy

To be completely sure you should have infinity amount of BTC, but that won't be gambling anymore so casinos would bankrupt.
fatguyyyyy
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250

Bitcoin Mixer: https://BitLaunder.com


View Profile WWW
May 23, 2014, 11:24:01 PM
 #14

It is still called gambling, so you should read first about martingale strategy before running my script. http://en.wikipedia.org/wiki/Martingale_(betting_system)

Just for info:
Quote
it has been reported that in Casino Monte Carlo, Monaco, red came up 39 times in a row

So if there is a long strike of opposite colors, your balance will go to 0  Sad
(Another fun fact: if your starting bid is 1 satoshi, and there is 39 opposite colors in a row you would need 5497.55813888 BTC to not change your balance to 0)

How much stake should be put to make the most profit and not go to 0.

I was going to ask the same thing.

Whats your balance of what you work with?

JasonWoods (OP)
Member
**
Offline Offline

Activity: 61
Merit: 11


View Profile
May 24, 2014, 09:07:08 AM
 #15

I wrote it myself too. If you want to play for 1 satoshi at the beggining you can use lower code. (Just paste it into browser console - usually F12)
- no rounds limit
- no stake limit
- no audio alert
- 3s delay
- relying on jquery

I'm sure a JS expert can optimize my code, but at least it doesn't keep on going without checking what's going on.
And you didn't take into account that freebitco.in throttles you if you play long enough, so your 3s delay will haunt you.

Jason Woods, if you share yours too i am sure people will tip you for your hard work and you will profit more than trying to sell it here... just a thought, pm me if you wanna discuss it in private.
Hmm, maybe you're right.I'll think about it (also sending a pm).
amacar
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
May 24, 2014, 09:24:01 AM
 #16

I wrote it myself too. If you want to play for 1 satoshi at the beggining you can use lower code. (Just paste it into browser console - usually F12)
- no rounds limit
- no stake limit
- no audio alert
- 3s delay
- relying on jquery

I'm sure a JS expert can optimize my code, but at least it doesn't keep on going without checking what's going on.
And you didn't take into account that freebitco.in throttles you if you play long enough, so your 3s delay will haunt you.

Jason Woods, if you share yours too i am sure people will tip you for your hard work and you will profit more than trying to sell it here... just a thought, pm me if you wanna discuss it in private.
Hmm, maybe you're right.I'll think about it (also sending a pm).

I know that it is just simple script because I wrote it in like 5-10 minutes.
Plank
Member
**
Offline Offline

Activity: 61
Merit: 10


View Profile
May 24, 2014, 10:45:16 AM
 #17

I wrote it myself too. If you want to play for 1 satoshi at the beggining you can use lower code. (Just paste it into browser console - usually F12)

Quote
var myVar = window.setInterval(function() {

if( $('#double_your_btc_bet_lose').is(':empty') )
{
   $("#double_your_btc_min").click();
   $("#double_your_btc_bet_hi_button").click();
}
else
{
   $("#double_your_btc_2x").click();
   $("#double_your_btc_bet_hi_button").click();
}
    
}, 3000);

or change
Quote
$("#double_your_btc_min").click();

with this (set any value you wish)
Quote
$("#double_your_btc_stake").val("0.00000005");

any donations to address in my profile  Wink

Where do you input this? I`m pretty new where this goes, does this work?  Smiley

So Is this script working or not? where do I paste It in firefox?
bitgoldencoin
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
May 24, 2014, 11:05:53 AM
 #18

Jason woods,

Thank you for your pm, I have sent you a reply
bitgoldencoin
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile WWW
May 24, 2014, 11:25:51 AM
 #19



So Is this script working or not? where do I paste It in firefox?

Hi Plank, the script is working in firefox just click ALT+F4 to open the scratchpad window... paste the code there and then press run.
Make sure the window freebitco.in multiply BTC is open on the back of the scratchpad.

Remember, this is based on martingale betting system and it is gambling, you can win as well as loose
sameev29
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
May 24, 2014, 11:56:46 AM
 #20

I wrote it myself too. If you want to play for 1 satoshi at the beggining you can use lower code. (Just paste it into browser console - usually F12)
- no rounds limit
- no stake limit
- no audio alert
- 3s delay
- relying on jquery

I'm sure a JS expert can optimize my code, but at least it doesn't keep on going without checking what's going on.
And you didn't take into account that freebitco.in throttles you if you play long enough, so your 3s delay will haunt you.

Jason Woods, if you share yours too i am sure people will tip you for your hard work and you will profit more than trying to sell it here... just a thought, pm me if you wanna discuss it in private.
Hmm, maybe you're right.I'll think about it (also sending a pm).

I know that it is just simple script because I wrote it in like 5-10 minutes.

Can you perfect it more?
Pages: [1] 2  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!