Xanderpitz1 (OP)
Newbie
Offline
Activity: 25
Merit: 0
|
|
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 or Oscar's Grind script? These 2 systems last much longer and provide far more profit than a straight Martingale. Thanks in advance!
|
|
|
|
|
Xanderpitz1 (OP)
Newbie
Offline
Activity: 25
Merit: 0
|
|
July 27, 2018, 06:00:47 PM |
|
Thanks, but that's not at all what I was asking about or need.
|
|
|
|
Mist3rX
Jr. Member
Offline
Activity: 113
Merit: 1
Unknown
|
|
July 28, 2018, 02:52:26 PM |
|
Download Tampermonkey and add this script: // ==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 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
|
|
|
Alexa ale
Newbie
Offline
Activity: 224
Merit: 0
|
|
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.
|
|
|
|
Mist3rX
Jr. Member
Offline
Activity: 113
Merit: 1
Unknown
|
|
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
|
Best regards
|
|
|
Alexa ale
Newbie
Offline
Activity: 224
Merit: 0
|
|
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.
|
|
|
|
TheQuin
|
|
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.
|
|
|
|
Xanderpitz1 (OP)
Newbie
Offline
Activity: 25
Merit: 0
|
|
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.
|
|
|
|
Xanderpitz1 (OP)
Newbie
Offline
Activity: 25
Merit: 0
|
|
July 31, 2018, 12:51:01 AM |
|
Download Tampermonkey and add this script: // ==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 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
|
|
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.
|
|
|
|
Xanderpitz1 (OP)
Newbie
Offline
Activity: 25
Merit: 0
|
|
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
|
|
|
|
|
Persie11
Newbie
Offline
Activity: 2
Merit: 0
|
|
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
|
|
|
|
yannik.biz
Jr. Member
Offline
Activity: 387
Merit: 5
|
|
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
|
█████████████████ █████████████████ █████████[<a style="color:#3465A4" h
|
|
|
Sheko...24
Newbie
Offline
Activity: 1
Merit: 0
|
|
May 14, 2024, 05:23:05 AM |
|
Download Tampermonkey and add this script: // ==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 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
|
|
|
|
snead
Jr. Member
Offline
Activity: 44
Merit: 1
|
|
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?
|
|
|
|
|