|
|
|
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
|
|
|
bitcoworld
Full Member
 
Offline
Activity: 357
Merit: 100
Casino & Slot Reviews
|
 |
November 22, 2017, 01:34:01 AM |
|
Exchange Rate 0.019 for BTG but he was 0.035 worth at the Moment... Kinda nonsense... 
|
|
|
|
dungvn
Newbie
Offline
Activity: 61
Merit: 0
|
 |
November 22, 2017, 03:15:25 AM |
|
Great site and idea 
|
|
|
|
Myfe
|
 |
November 22, 2017, 03:52:56 AM |
|
~~ ANNOUNCEMENT ~~ I know you all have been waiting a while for this news, thank you for your patience! You can now exchange your Bitcoin Gold for Bitcoin on the FreeBitco.in site. Soon we will also allow you to exchange that Bitcoin Gold to another wallet, if you don't wish to exchange it. The details on how to conduct the exchange are below and you can find the link prominently displayed on the Free BTC menu page within your account. If you have any questions - feel free to list them here or PM me. If you had funds with us during the recent Bitcoin hard-fork, we have credited you with extra Bitcoin Gold (BTG) coins for each Bitcoin that you had with us.
You can exchange your Bitcoin Gold (BTG) that was credited to you directly into Bitcoin at a rate of 0.019 BTC/BTG. When you exchange, the extra Bitcoins will be added to your account balance and can be withdrawn instantly.
The BTG that you have received is in addition to the BTC that you had with us and is an extra amount which can be exchanged to increase your BTC holdings by 1.9% by simply clicking a button!
The option to withdraw your BTG will also be available in a few days.
|
|
|
|
Myfe
|
 |
November 22, 2017, 04:11:42 AM |
|
Can we withdraw BTG? I want to hold BTG.
This is coming, hang in there...we're working on it as I type this post! Cheers.
|
|
|
|
Myfe
|
 |
November 22, 2017, 04:12:52 AM |
|
This site is great and is offering a lot, but the support is pretty bad unfortunately. I´m waiting for several weeks now for an answer after I used the contact form and contacted Myfe here... If they could improve the support, I´d call it one of the best sites out here.
Hi Die, I just responded to your PM. We appreciate all feedback you have - feel free to send me a PM with more specific comments. I just noticed your PM today, I'm sorry if you've sent one previously and I've missed it. Thanks for your loyalty to our site. Thanks to all of you! Myfe.
|
|
|
|
Flechashe
Newbie
Offline
Activity: 144
Merit: 0
|
 |
November 22, 2017, 04:17:38 AM |
|
Just won this at FreeDoge.co.in https://imgur.com/a/hJ3RABTW, I can't see the option to exchange Bitcoin Gold.
|
|
|
|
Myfe
|
 |
November 22, 2017, 04:29:29 AM |
|
BTW, I can't see the option to exchange Bitcoin Gold.
Are you looking on the FreeBitco.in site? If so, did you have Bitcoin on balance with us prior to and including October 24th of this year?
|
|
|
|
Flechashe
Newbie
Offline
Activity: 144
Merit: 0
|
 |
November 22, 2017, 04:54:51 PM |
|
BTW, I can't see the option to exchange Bitcoin Gold.
Are you looking on the FreeBitco.in site? If so, did you have Bitcoin on balance with us prior to and including October 24th of this year? Oh, that was the problem. Thanks. I didn't have Bitcoin with you on October 24th.
|
|
|
|
salieri
Newbie
Offline
Activity: 4
Merit: 0
|
 |
November 23, 2017, 08:15:26 PM Last edit: November 24, 2017, 05:23:56 AM by salieri |
|
//********************************************** // Online C++ Compiler. // https://www.onlinegdb.com/online_c++_compiler //********************************************** #include <iostream>#include <math.h> /* round */using namespace std;int main() { unsigned int MagicNumber, RolledNumber; double dTemp; MagicNumber = 4294752547; printf( "\n Rounding Decimals to the Nearest Whole Number."); // #0 dTemp = ( double) (MagicNumber - 1) / 429496.7295; RolledNumber = ( unsigned int) round(dTemp); printf( "\n MagicNumber - 1 = %lu, dTemp = %.08f, RolledNumber = %lu.", MagicNumber - 1, dTemp, RolledNumber); // #1 (success) dTemp = ( double) MagicNumber / 429496.7295; RolledNumber = ( unsigned int) round(dTemp); printf( "\n MagicNumber = %lu, dTemp = %.08f, RolledNumber = %lu.", MagicNumber, dTemp, RolledNumber); // 2^32 = 4294967295 + 1, 4294967295 - 4294752547 + 1 = 214749. printf( "\n Conclusion. There are only 214749 numbers for which a rolled number will be 10000."); printf( "\n The first suitable number is %lu.", MagicNumber); printf( "\n WIN CHANCE is %.06f %% per each roll.", 214749.0/ 4294967296.0 * 100.0); return 0; } Output: Rounding Decimals to the Nearest Whole Number. MagicNumber - 1 = 4294752546, dTemp = 9999.49999852, RolledNumber = 9999. MagicNumber = 4294752547, dTemp = 9999.50000085, RolledNumber = 10000. Conclusion. There are only 214749 numbers for which a rolled number will be 10000. The first suitable number is 4294752547. WIN CHANCE is 0.005000 % per each roll.
|
|
|
|
TomSawyer
Jr. Member
Offline
Activity: 54
Merit: 10
|
 |
November 24, 2017, 01:15:59 AM |
|
Can we withdraw BTG? I want to hold BTG.
This is coming, hang in there...we're working on it as I type this post! Cheers. Yeah, thanks for your support.
|
|
|
|
trilyuner
Member

Offline
Activity: 313
Merit: 10
|
 |
November 24, 2017, 05:05:39 AM |
|
//********************************************** // Online C++ Compiler. // https://www.onlinegdb.com/online_c++_compiler //********************************************** #include <iostream>#include <math.h> /* round */using namespace std;int main() { unsigned int MagicNumber, RolledNumber; double dTemp; MagicNumber = 4294752547; printf( "\n Rounding Decimals to the Nearest Whole Number."); // #0 dTemp = ( double) (MagicNumber - 1) / 429496.7295; RolledNumber = ( unsigned int) round(dTemp); printf( "\n MagicNumber - 1 = %lu, dTemp = %.08f, RolledNumber = %lu.", MagicNumber - 1, dTemp, RolledNumber); // #1 (success) dTemp = ( double) MagicNumber / 429496.7295; RolledNumber = ( unsigned int) round(dTemp); printf( "\n MagicNumber = %lu, dTemp = %.08f, RolledNumber = %lu.", MagicNumber, dTemp, RolledNumber); // 2^32 = 4294967295 + 1, 4294967295 - 4294752547 + 1 = 214749. printf( "\n Conclusion. There are only 214749 numbers for which a rolled number will be 10000."); printf( "\n The first suitable number is %lu.", MagicNumber); printf( "\n WIN CHANCE is %.06f %% per each roll.", 214749.0/ 4294967295.0 * 100.0); return 0; } Output: Rounding Decimals to the Nearest Whole Number. MagicNumber - 1 = 4294752546, dTemp = 9999.49999852, RolledNumber = 9999. MagicNumber = 4294752547, dTemp = 9999.50000085, RolledNumber = 10000. Conclusion. There are only 214749 numbers for which a rolled number will be 10000. The first suitable number is 4294752547. WIN CHANCE is 0.005000 % per each roll. What is this?
|
|
|
|
Ucup
Newbie
Offline
Activity: 14
Merit: 0
|
 |
November 24, 2017, 05:35:44 AM |
|
-snip- Rounding Decimals to the Nearest Whole Number. MagicNumber - 1 = 4294752546, dTemp = 9999.49999852, RolledNumber = 9999. MagicNumber = 4294752547, dTemp = 9999.50000085, RolledNumber = 10000. Conclusion. There are only 214749 numbers for which a rolled number will be 10000. The first suitable number is 4294752547. WIN CHANCE is 0.005000 % per each roll.
What is this? Script maybe, or whatever the most important is, i still got bitcoin with free roll
|
|
|
|
TheQuin
|
 |
November 24, 2017, 06:52:45 AM |
|
-snip- Rounding Decimals to the Nearest Whole Number. MagicNumber - 1 = 4294752546, dTemp = 9999.49999852, RolledNumber = 9999. MagicNumber = 4294752547, dTemp = 9999.50000085, RolledNumber = 10000. Conclusion. There are only 214749 numbers for which a rolled number will be 10000. The first suitable number is 4294752547. WIN CHANCE is 0.005000 % per each roll.
What is this? Script maybe, or whatever the most important is, i still got bitcoin with free roll It's how you calculate the chance of winning $200 of Bitcoin on a free roll. As it says in its conclusion "WIN CHANCE is 0.005000 % per each roll." This makes it a 1 in 20,000 chance rather than a 1 in 10,000 chance that many assume. This is due to rounding to the nearest whole number so you need to roll above 9999.5 to win.
|
|
|
|
serggg
|
 |
November 24, 2017, 06:53:33 AM |
|
Hello! Wanted to ask about whether the site will react to fork with BT diamond (BTD)?
|
|
|
|
Meephz
Newbie
Offline
Activity: 6
Merit: 0
|
 |
November 25, 2017, 12:43:18 AM |
|
I still have IP block, not using VPN or Proxy but still blocked, send MP, message at FAQ and nothing, not even I "I'll check"...
|
|
|
|
Myfe
|
 |
November 25, 2017, 06:04:10 AM |
|
Great balls of fire! We're rollin in the deep on an EPIC Rewards Points bonus weekend >>>>> 5x Rewards Points starts tonight!For the entire weekend, we'll pay you 10 Rewards Points for a free roll, 5 Rewards Points for a multiply roll activity exceeding 1500 satoshi, and 5 Rewards Points for a referral roll! Who's coming with me? Follow us on Twitter to get more announcements of great promotions > https://twitter.com/freebitco
|
|
|
|
TomSawyer
Jr. Member
Offline
Activity: 54
Merit: 10
|
 |
November 25, 2017, 09:30:00 AM |
|
Great balls of fire! We're rollin in the deep on an EPIC Rewards Points bonus weekend >>>>> 5x Rewards Points starts tonight!For the entire weekend, we'll pay you 10 Rewards Points for a free roll, 5 Rewards Points for a multiply roll activity exceeding 1500 satoshi, and 5 Rewards Points for a referral roll! Who's coming with me? Follow us on Twitter to get more announcements of great promotions > https://twitter.com/freebitcoGreat news! By the way, will freebitco support Bitcoin Diamond fork?
|
|
|
|
Kaajinsh
Newbie
Offline
Activity: 37
Merit: 0
|
 |
November 25, 2017, 10:07:41 AM |
|
Hello! Wanted to ask about whether the site will react to fork with BT diamond (BTD)?
Diamonds isnt officialy annouced to be done... At least i has found only couple unconfirmed news about it...
|
|
|
|
rapidleech
|
 |
November 25, 2017, 02:04:13 PM |
|
X.XX% achieved towards the next BTC bonus! whats going on with this % number?
mine just decline , while im buyin tickets & playing multiply
|
|
|
|
|