Bitcoin Forum
May 08, 2024, 01:09:46 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: FreeBitco.in Hi-Lo Scripts?  (Read 460 times)
Xanderpitz1 (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 26, 2018, 08:42:59 PM
 #1

Hello,

I've been using Freebitco.in for a while and have been trying to increase the minimum bonus through lottery tickets and the hi-lo game. I'm well aware that there's no true long-term gambling strategy that yields success, but if the primary goal is to increase % fulfilled to the next bonus, it's more justified.

That being said, I've seen tons of scripts for Martingale strategies, but would anyone have or be willing to make a Labouchere or Oscar's Grind script? These 2 systems last much longer and provide far more profit than a straight Martingale.

Thanks in advance!
1715130586
Hero Member
*
Offline Offline

Posts: 1715130586

View Profile Personal Message (Offline)

Ignore
1715130586
Reply with quote  #2

1715130586
Report to moderator
1715130586
Hero Member
*
Offline Offline

Posts: 1715130586

View Profile Personal Message (Offline)

Ignore
1715130586
Reply with quote  #2

1715130586
Report to moderator
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715130586
Hero Member
*
Offline Offline

Posts: 1715130586

View Profile Personal Message (Offline)

Ignore
1715130586
Reply with quote  #2

1715130586
Report to moderator
1715130586
Hero Member
*
Offline Offline

Posts: 1715130586

View Profile Personal Message (Offline)

Ignore
1715130586
Reply with quote  #2

1715130586
Report to moderator
1715130586
Hero Member
*
Offline Offline

Posts: 1715130586

View Profile Personal Message (Offline)

Ignore
1715130586
Reply with quote  #2

1715130586
Report to moderator
tungaqhd
Hero Member
*****
Offline Offline

Activity: 1540
Merit: 508


View Profile
July 27, 2018, 03:47:16 AM
 #2

Have you tried bitcoin faucet dic script (https://github.com/coinables/Bitcoin-Faucet-Dice-Faucet-Box). It's very easy to integate into your website and free.
Or try this one: https://overfeat.com/p-bitcoin-gambling-script, comes with provably-fair dices, multiple interactive games, a Bitcoin faucet and user interaction options including forums and a live chat for your users.
Xanderpitz1 (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 27, 2018, 06:00:47 PM
 #3

Thanks, but that's not at all what I was asking about or need.
Mist3rX
Jr. Member
*
Offline Offline

Activity: 113
Merit: 1

Unknown


View Profile
July 28, 2018, 02:52:26 PM
 #4

Download Tampermonkey and add this script:

Code:
// ==UserScript==
// @name         Oscar Grind
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Mist3rX
// @match        https://freebitco.in/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //Sizes in satoshi
    let betsize = 1, profit = 0;
    let MAX_WIN = 1000;
    let MAX_LOOSE = -1000;

    window.onload = function() {
        document.getElementsByClassName("double_your_btc_link")[0].onclick = function() {
            setTimeout(function(){if(document.getElementById("manual_bet_on") && confirm("Do you wanna start Auto-Bet Oscar Grind Algorithm?")) oscar_grind();},1000);
        };
    };

    function oscar_grind()
    {
        document.getElementById("double_your_btc_stake").value = (betsize/100000000).toFixed(8);
        setTimeout(function() {
            bet();
            setTimeout(function() {
                if(checkIfWon())
                {
                    profit += betsize;
                    if(profit<1)
                    {
                        if(profit+betsize+1 > 1) betsize = 1-profit;
                        else betsize++;
                    }
                }
                else
                {
                    profit -= betsize;
                }
                document.getElementsByClassName("bold text_shadow")[0].innerHTML = "Profit: "+profit+" | Betsize: "+betsize;
                setTimeout(function() {
                    if(profit >= MAX_WIN || profit <= MAX_LOOSE) return alert("Finish!");
                    oscar_grind();
                },100);
            },500);
        },200);
    }
    function bet()
    {
        document.getElementById("double_your_btc_bet_hi_button").click();
    }
    function checkIfWon()
    {
        return (document.getElementById("double_your_btc_bet_win").style.display != "none");
    }
})();

But, anyway i think this "Multiplyer" is not really "fair" Wink

But anyway...good luck Cheesy

PS: I made a MAX_LOOSE and MAX_WIN Variable, you can change them, but i made these, so you don't get 0 Balance hahah xD

Best regards Smiley
Alexa ale
Newbie
*
Offline Offline

Activity: 224
Merit: 0


View Profile
July 29, 2018, 01:06:21 AM
 #5

Script doesn't works for always. You may get some profit. But after that you will start losing. You will make the profit slowly and finally lose it all within a short time.
Mist3rX
Jr. Member
*
Offline Offline

Activity: 113
Merit: 1

Unknown


View Profile
July 29, 2018, 01:52:48 AM
 #6

It does work, cause it's 1:1 the algorithm.

I tested it with random patterns and it worked very good!

So i can say, that they are not really fair Roll Eyes

That's what i wanna told you  Wink

Best regards Smiley
Alexa ale
Newbie
*
Offline Offline

Activity: 224
Merit: 0


View Profile
July 29, 2018, 02:36:01 AM
 #7

It does work, cause it's 1:1 the algorithm.

I tested it with random patterns and it worked very good!

So i can say, that they are not really fair Roll Eyes

That's what i wanna told you  Wink

I don't think so. All reputable gambling site prove their fairness. User use many scripts. They think they have make something to hack the system and they will always win. But remember their is house edge system which is automated. And it will not allow you to win always.
TheQuin
Hero Member
*****
Offline Offline

Activity: 2576
Merit: 882


Freebitco.in Support https://bit.ly/2I9BVS2


View Profile WWW
July 29, 2018, 01:19:19 PM
 #8

I can't imagine that and you can't really proove this.~

And i think, well i am very sure, that they cheat here~

I'm very sure that you just demonstrated that you don't understand how provably fair works. That's off-topic in this thread but you should search and find the answer to your own question.



@OP Try https://bot.seuntjie.com/

It has Labouchere, D'Alembert and others built in plus a scripting in Programmer mode. The website has many scripts available.

freebitcoin.TO WIN A  LAMBORGHINI!..

.
                                ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
                    ▄▄▄▄▄██████████████████████████████████▄▄▄▄
                    ▀██████████████████████████████████████████████▄▄▄
                    ▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
                    ▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
                      ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
                           ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
                   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Xanderpitz1 (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 29, 2018, 04:24:19 PM
 #9

Thanks everyone! I'll check out that dicebot link. As I mentioned in the OP, it's not about long-term profit, it's about betting enough to increase the minimum payout from the faucet.
Xanderpitz1 (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 31, 2018, 12:51:01 AM
 #10

Download Tampermonkey and add this script:

Code:
// ==UserScript==
// @name         Oscar Grind
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Mist3rX
// @match        https://freebitco.in/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //Sizes in satoshi
    let betsize = 1, profit = 0;
    let MAX_WIN = 1000;
    let MAX_LOOSE = -1000;

    window.onload = function() {
        document.getElementsByClassName("double_your_btc_link")[0].onclick = function() {
            setTimeout(function(){if(document.getElementById("manual_bet_on") && confirm("Do you wanna start Auto-Bet Oscar Grind Algorithm?")) oscar_grind();},1000);
        };
    };

    function oscar_grind()
    {
        document.getElementById("double_your_btc_stake").value = (betsize/100000000).toFixed(8);
        setTimeout(function() {
            bet();
            setTimeout(function() {
                if(checkIfWon())
                {
                    profit += betsize;
                    if(profit<1)
                    {
                        if(profit+betsize+1 > 1) betsize = 1-profit;
                        else betsize++;
                    }
                }
                else
                {
                    profit -= betsize;
                }
                document.getElementsByClassName("bold text_shadow")[0].innerHTML = "Profit: "+profit+" | Betsize: "+betsize;
                setTimeout(function() {
                    if(profit >= MAX_WIN || profit <= MAX_LOOSE) return alert("Finish!");
                    oscar_grind();
                },100);
            },500);
        },200);
    }
    function bet()
    {
        document.getElementById("double_your_btc_bet_hi_button").click();
    }
    function checkIfWon()
    {
        return (document.getElementById("double_your_btc_bet_win").style.display != "none");
    }
})();

But, anyway i think this "Multiplyer" is not really "fair" Wink

But anyway...good luck Cheesy

PS: I made a MAX_LOOSE and MAX_WIN Variable, you can change them, but i made these, so you don't get 0 Balance hahah xD
I'd like to be able to use this on other websites and someone told me about Dicebot. Do you think you could put this into dicebot's LUA javascript? I'm very interested in comparing it to other systems over the long-term.
WaffleMaster
Hero Member
*****
Offline Offline

Activity: 966
Merit: 546



View Profile
July 31, 2018, 01:13:12 AM
 #11

Different websites have different variables and elements that need to be loaded into the program. So it's pretty reasonable to assume that it won't work very well or at all for other websites. You'll likely need separate programs for that.
Xanderpitz1 (OP)
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 31, 2018, 02:00:38 AM
 #12

Different websites have different variables and elements that need to be loaded into the program. So it's pretty reasonable to assume that it won't work very well or at all for other websites. You'll likely need separate programs for that.
The Dicebot application does that backend work for you on a large list of websites. It uses simplified LUA javascript with variables for nextbet, currentstreaks, etc that will work on all of those websites. I'm just really bad at formatting and can't do it myself lol
TheQuin
Hero Member
*****
Offline Offline

Activity: 2576
Merit: 882


Freebitco.in Support https://bit.ly/2I9BVS2


View Profile WWW
July 31, 2018, 07:46:08 AM
 #13

I'm just really bad at formatting and can't do it myself lol

If you have any specific questions you'll find people willing to help here: Seuntjie' Dice bot programmers mode discussion.

freebitcoin.TO WIN A  LAMBORGHINI!..

.
                                ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
                    ▄▄▄▄▄██████████████████████████████████▄▄▄▄
                    ▀██████████████████████████████████████████████▄▄▄
                    ▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
                    ▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
                      ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
                           ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
                   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Persie11
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 07, 2019, 09:01:22 PM
 #14

Has somebody a script that uses martingale after e.g. 3 losses? so you bet 1 - l, 1 - l, 1 -l and then 2
yannik.biz
Jr. Member
*
Offline Offline

Activity: 382
Merit: 5


View Profile
September 07, 2019, 10:35:48 PM
 #15

Has somebody a script that uses martingale after e.g. 3 losses? so you bet 1 - l, 1 - l, 1 -l and then 2
use https://bot.seuntjie.com/ is working good and fair  Grin

█████████████████
█████████████████
█████████[<a style="color:#3465A4" h
Pages: [1]
  Print  
 
Jump to:  

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