Bitcoin Forum

Economy => Micro Earnings => Topic started by: Xanderpitz1 on July 26, 2018, 08:42:59 PM



Title: FreeBitco.in Hi-Lo Scripts?
Post by: Xanderpitz1 on July 26, 2018, 08:42:59 PM
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 (https://en.wikipedia.org/wiki/Labouch%C3%A8re_system) or Oscar's Grind (https://en.wikipedia.org/wiki/Oscar%27s_grind) script? These 2 systems last much longer and provide far more profit than a straight Martingale.

Thanks in advance!


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: tungaqhd on July 27, 2018, 03:47:16 AM
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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Xanderpitz1 on July 27, 2018, 06:00:47 PM
Thanks, but that's not at all what I was asking about or need.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Mist3rX on July 28, 2018, 02:52:26 PM
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" ;)

But anyway...good luck :D

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


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Alexa ale on July 29, 2018, 01:06:21 AM
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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Mist3rX on July 29, 2018, 01:52:48 AM
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 ::)

That's what i wanna told you  ;)


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Alexa ale on July 29, 2018, 02:36:01 AM
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 ::)

That's what i wanna told you  ;)

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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: TheQuin on July 29, 2018, 01:19:19 PM
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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Xanderpitz1 on July 29, 2018, 04:24:19 PM
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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Xanderpitz1 on July 31, 2018, 12:51:01 AM
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" ;)

But anyway...good luck :D

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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: WaffleMaster on July 31, 2018, 01:13:12 AM
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.


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Xanderpitz1 on July 31, 2018, 02:00:38 AM
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


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: TheQuin on July 31, 2018, 07:46:08 AM
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. (https://bitcointalk.org/index.php?topic=1114503)


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Persie11 on September 07, 2019, 09:01:22 PM
Has somebody a script that uses martingale after e.g. 3 losses? so you bet 1 - l, 1 - l, 1 -l and then 2


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: yannik.biz on September 07, 2019, 10:35:48 PM
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  ;D


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: Sheko...24 on May 14, 2024, 05:23:05 AM
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" ;)

But anyway...good luck :D

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


Title: Re: FreeBitco.in Hi-Lo Scripts?
Post by: snead on May 15, 2024, 02:29:11 PM
Isn't it true that you can also increase the faucet reward by maintaining a higher balance in your account?