Author

Topic: FreeBitco.in-$200 FreeBTC🏎Win Lambo🔥0.2BTC DailyJackpot🏆$32,500 Wager Contest - page 147. (Read 405317 times)

hero member
Activity: 1414
Merit: 516
Thanks guys!!!  That's my first win ever in your lottery Cool




Congrats, you was lucky. I never won at lottery, but i not buy so much tickets, you win with 7000+ tickets, you was very lucky to win 1st prize.
jr. member
Activity: 158
Merit: 5
Thanks guys!!!  That's my first win ever in your lottery Cool




Only your first? Oh Smiley I mean I hope you win again, but I find it funny because while the odds are probably much higher than e.g. a national lottery, this is probably a once in a lifetime event. Enjoy your winnings and don't bust it all back in the site Cheesy
legendary
Activity: 3178
Merit: 1363
Slava Ukraini!
Thanks guys!!!  That's my first win ever in your lottery Cool



Congrats! It's nice to see people winning money in lottery and posting proofs of winning. Enjoy your money!
hero member
Activity: 676
Merit: 500
Thanks guys!!!  That's my first win ever in your lottery Cool


hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
I started to use yahoo email years ago. Recently I can't login and change my email into gmail.
Please help me to recover my account in freebitco.in.
Thanks!

If you mean you can't log in to your old email then sign a message from the Bitcoin address in the profile or an address you deposited from requesting the email change and then PM it to me. https://bitcointalksearch.org/topic/how-to-sign-a-message-990345
newbie
Activity: 4
Merit: 0
I started to use yahoo email years ago. Recently I can't login and change my email into gmail.
Please help me to recover my account in freebitco.in.
Thanks!
newbie
Activity: 4
Merit: 0
I started to use yahoo email years ago. Recently I can't login and change my email into gmail.
Please help me to recover my account in freebitco.in.
Thanks!
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
Yo hoy hoy! FREE BTC: almost always 300-700-800 sat. Yeah, great! Cheesy It's normal?


I'd answer that if I had a clue what it meant.
newbie
Activity: 2
Merit: 0
I have one question why on my account created 1 year ago i receive only 0.00000035 BTC for 1 free roll while my friend that created account yesterday get 0.00000048 BTC per roll. And little advice to gamblers 17 loses in a row isn't 99% it is 50% lost 17 times.
jr. member
Activity: 158
Merit: 5
Just want to share this to anyone who think iz money :

https://imgur.com/a/muLrZuC

So thats 17 miss in a row or a 99.998 chance of that not happening.

It can happen ofc but on a total of around 50k spins the chance is smaller than 1 in a 10milions. So i will end with this site cuz you cant claim bonuses if you dont play multiply BTC and if that is my luck no point to play

I verify every single bet I make, automated on my end, just looked at my stats now and have done over 800 000 multiply bets, and of those 800 000 verficiations, I think only 4-5 failed verification probably due to some network error (and they were small bets and some of them I had won.)

The house edge is very high indeed but after verifying all these bets and the way that they designed this, it's impossible for them to cheat on the outcome, which would require them to find a sha256 collision within milliseconds. AFAIK there is no known Sha256 collision and if freebitco.in has the capability to find sha256 collisions under a second, it would have been the absolute king of bitcoin mining - they'd produce blocks as they please. Smiley

They could at worst produce network errors at the "right" time for very big bets which I have never done.

According to my calculations running a 17 loss on 2x bets has a chance of 0.0017% at the **start** of every sequence. That could be rounded to 1 time in every 50 000 bets, but since a new bet is independent of the previous bet, the chance of this 17 loss happening in a series of 50 000 bets is much higher than 1 in 50 000. If you calculate the odds of that happening here:
https://www.sportsbookreview.com/picks/tools/streak-calculator/
You'll see that a 17 loss sequence happening inside of a 50 000 bet sequence is slightly more than 33%.

It's also mathematically proven that a negative expectancy game over the long run will always end up with a loss, no matter what the betting method. That's how it works and freebit makes money. But I keep playing because I may stop at some lucky point!


LIES.  You didnt automated anything at all ____removed-self-promotion________ and I know damn well how much latency trying to verify 800k would add to the process (which is precisely why I dont do it)  WITHOUT verification the best you can do is 3.5 bps.  Adding verification cuts that in half if you do it locally or more than 90% if you use an online tool.  So lets just say you try this locally and give you the benefit of the doubt and say you miraculously achieve 2bps (but i think its likely closer to 0.5bps since i dont believe u have the skill to do it locally judging by the huge over exaggeration).

So 800000 /2 == 400000 seconds.  Do you even realize how many days that is?  Google it.  I rest my case  You lie.  Nice noob account btw.  How convenient.

Do you rest your case so often for unnecessary things like this? You are so wrong that it's not even funny.

I made a total multiply auto-bet replacement, currently unable to monetize it because it's a chrome extension and I'm exploring ways to distribute it. I have been using it since November 2017 (just checked the local git history), and 4-5 more people have been using it. I once posted an image of the ui here but it got deleted.

The auto-bet logic is is programmed from scratch and I do automatic bet verification, because it works as an extension in the freebitco page and prepares the bet http-request and the random string also, verification is done locally.

Here's the portion of the code that does the verification:
Code:
    BetVerifier: class {
        constructor(clientseed, serverseedhash, nonce) {
            this.ClientSeed = clientseed;
            this.ServerSeedHash = serverseedhash;
            this.Nonce = nonce;
            this.ServerSeed = null;
            this.Roll = null;
        }

        Verify(serverSeed, roll) {
            serverSeed = serverSeed || this.ServerSeed || "stand-in";
            var testRoll = roll || this.Roll || "0";
            var server_seed_hash = CryptoJS.SHA256(serverSeed).toString(CryptoJS.enc.Hex);

            return (this.ProduceRoll(serverSeed) == testRoll) && (server_seed_hash == this.ServerSeedHash);
        }

        ProduceRoll(serverSeed, clientSeed, nonce) {
            serverSeed = serverSeed || this.ServerSeed || "MoCKuPsERVErsEed";
            clientSeed = clientSeed || this.ClientSeed || "MoCkUpclIentseED";
            nonce = nonce || this.Nonce || "1";

            var string1 = nonce.concat(":", serverSeed, ":", nonce);
            var string2 = nonce.concat(":", clientSeed, ":", nonce);
            var hmac512 = CryptoJS.HmacSHA512(string1, string2).toString(CryptoJS.enc.Hex);
            var string3 = hmac512.substring(0, 8);
            var number = parseInt(string3, 16);
            return (Math.round(number / 429496.7295)).toFixed(0);
        }
    },

The verification is definitely not the bottleneck! I just checked this and it takes 1-2 milliseconds to run the "produceroll" function. You can test it too if you are so inclined to prove me wrong.

So don't bash me just to promote yourself and link to your wonderful bot, you are being very rude and condescending without any base. I'm hesido on every avenue of the internet and you can check that I program javascript. Since you have excellent deductive skills, it should be easy for you to understand that this is a real account of a real person whose life does not revolve around freebitco.in.

Edit: Since the issue of time was derailed by your extensive knowledge in the time taken for producing sha hashes, I forgot to address it. I indeed can make at 2-3 bets per second, it's due to network latency. And it does mean it took a lot of time to stack up 800 000 rolls, it means I spent more than 3-4 days in total betting in the course of a year, but that's dwarfed by the amount of Overwatch I used to play, for example, that kind of time is nothing that's out of reach. (The betting is auto but it pauses for me to set the course if it gets above a certain preset bet amount, so I may not necessarily sit in front of it)



sr. member
Activity: 840
Merit: 267
Chad Hodler since 2013
Just want to share this to anyone who think iz money :

https://imgur.com/a/muLrZuC

So thats 17 miss in a row or a 99.998 chance of that not happening.

It can happen ofc but on a total of around 50k spins the chance is smaller than 1 in a 10milions. So i will end with this site cuz you cant claim bonuses if you dont play multiply BTC and if that is my luck no point to play

There is something you're missing.

Probability to one win with payout 2 on freebitcoin: 47.50% (0.475)
Probability to one loss with payout 2 on freebitcoin: 52.50% (0.525)

Probability to strike 17 wins on a row: 0.475 ^ 17 = 0.00000319 = 0.000319 %
Probability to strike 17 losses on a row: 0.525 ^ 17 = 0.000017486 = 0.0017486 % (~ 99.99825% of not happening, your calculation was pretty accurate)

BUT

This makes sense if you play a single row in your life. That is, if a new guy walks in freebitcoin and plays multiply btc game, I'd say based on the percentages and probabilities above, either he quite surely won't win 17 times in a row and neither he will lose 17 times in a row, on his very first bets.

Instead, you were probably playing for days, weeks or even months and with so many rolls and plays, eventually you'll always hit every combination, that's the bad (or best) part of gambling that most people don't understand. If you hit the bad combination, you end up broke. If you hit the golden combination it won't make you rich enough though to walk away for life.

Based on the number of 99.998 %, after ~ 1000 rolls it starts to be expected a loss strike of 17.

jr. member
Activity: 158
Merit: 5
Just want to share this to anyone who think iz money :

https://imgur.com/a/muLrZuC

So thats 17 miss in a row or a 99.998 chance of that not happening.

It can happen ofc but on a total of around 50k spins the chance is smaller than 1 in a 10milions. So i will end with this site cuz you cant claim bonuses if you dont play multiply BTC and if that is my luck no point to play

I verify every single bet I make, automated on my end, just looked at my stats now and have done over 800 000 multiply bets, and of those 800 000 verficiations, I think only 4-5 failed verification probably due to some network error (and they were small bets and some of them I had won.)

The house edge is very high indeed but after verifying all these bets and the way that they designed this, it's impossible for them to cheat on the outcome, which would require them to find a sha256 collision within milliseconds. AFAIK there is no known Sha256 collision and if freebitco.in has the capability to find sha256 collisions under a second, it would have been the absolute king of bitcoin mining - they'd produce blocks as they please. Smiley

They could at worst produce network errors at the "right" time for very big bets which I have never done.

According to my calculations running a 17 loss on 2x bets has a chance of 0.0017% at the **start** of every sequence. That could be rounded to 1 time in every 50 000 bets, but since a new bet is independent of the previous bet, the chance of this 17 loss happening in a series of 50 000 bets is much higher than 1 in 50 000. If you calculate the odds of that happening here:
https://www.sportsbookreview.com/picks/tools/streak-calculator/
You'll see that a 17 loss sequence happening inside of a 50 000 bet sequence is slightly more than 33%.

It's also mathematically proven that a negative expectancy game over the long run will always end up with a loss, no matter what the betting method. That's how it works and freebit makes money. But I keep playing because I may stop at some lucky point!
jr. member
Activity: 350
Merit: 6
Why you stupid and send btc to some anonymous website?  lol
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
Hello @TheQuin, I noticed, EARN BTC page history of interest earned has been removed. Why? 

Looks to be a server issue meaning the data is temporarily unavailable.




Yeah. That is what happens when your balance is less than how much you are trying to spend. Look at the PRICE PER TICKET and TOTAL AMOUNT.


Yea, i got it. 1 ticket = 2 sat. New rules!?

Thx!

The price is linked to BTCUSD. It's the drop in Bitcoin price that caused it. IIRC lottery tickets were 6 or 7 sats when we first started it.
newbie
Activity: 427
Merit: 0
Hello @TheQuin, I noticed, EARN BTC page history of interest earned has been removed. Why? 
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2

Yeah. That is what happens when your balance is less than how much you are trying to spend. Look at the PRICE PER TICKET and TOTAL AMOUNT.
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
wt*!?  Grin

 "1 ticket for every 0.00001000 BTC"

BTCUSD exchange rate fell below $5000. Everything on the site is set in USD and automatically linked to the price of Bitcoin
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
Just want to share this to anyone who think iz money :

https://imgur.com/a/muLrZuC

So thats 17 miss in a row or a 99.998 chance of that not happening.

It can happen ofc but on a total of around 50k spins the chance is smaller than 1 in a 10milions. So i will end with this site cuz you cant claim bonuses if you dont play multiply BTC and if that is my luck no point to play

Lol. Only 17 at 2x. If you play long enough you'll get 21 or 22. Streaks longer than that happen but a lot less often.

newbie
Activity: 5
Merit: 0
Just want to share this to anyone who think iz money :

https://imgur.com/a/muLrZuC

So thats 17 miss in a row or a 99.998 chance of that not happening.

It can happen ofc but on a total of around 50k spins the chance is smaller than 1 in a 10milions. So i will end with this site cuz you cant claim bonuses if you dont play multiply BTC and if that is my luck no point to play
hero member
Activity: 2576
Merit: 882
Freebitco.in Support https://bit.ly/2I9BVS2
what?? im multiply more  25 times and my balance bonus 2 k no are credited!!
need help, thanks



On the image you can see you still have a wager remaining amount.

From the terms you accepted when claiming the bonus.

2. The balance in your bonus account needs to be wagered 25 times in the MULTIPLY BTC game before it is credited to your main balance. In the above example, you need to wager 0.05 (0.002* 25 ) BTC before the balance in your bonus account is transferred to your main account.

3. The maximum wagering requirements that you can fulfil in a single bet cannot exceed 10% of the original amount of your bonus account. Following the example above, if you make a bet of less than or equal to 0.0002, the full amount will be counted towards your wagering requirements but for bets over 0.0002, only a maximum of 0.0002 will be counted towards your wagering requirements. However, 100% of all jackpot bets will be counted towards fulfilling your wagering requirements.
Jump to: