Bitcoin Forum
May 03, 2024, 02:28:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 [53] 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 »
1041  Economy / Micro Earnings / Re: smart top bitcoin faucet list on: November 03, 2015, 01:36:42 PM
Nice and simple listing.
1042  Economy / Gambling / Re: PREEVBTC.CLUB | Try to guess btc price 2 days ahead | Bet with BTC or SCRT on: November 03, 2015, 01:09:23 PM
Just been to the site and looks it is real fun playing.
Will surely give it a try after trading for some SCRT on yobit.
1043  Economy / Gambling discussion / Re: do you play loteries ,did you won something on: November 03, 2015, 12:50:04 PM
I've spent almost 0.05 BTC to the freebitco.in lottery. Phew, that was alot of tickets!

But, even with my huge chance of winning, I didn't even get last place. The person who won first place won with 1 ticket.

#rigged


May be not 'rigged'...but the very system of selection seems such.
When I asked about the method of the lottery,admin replied in detail.
Unfortunately this lottery seems not a 'ticket based' one as there are no any specific ticket# allotted to each ticket.

1044  Economy / Investor-based games / Re: [ 18.5+ BTC PAID! ] CryptoFATE.com == GET 150% INSTANTLY == TRANSPARENT AND FAIR on: November 03, 2015, 11:59:03 AM
I did not get payment 25 and 26 october, and i'm talking about  0.0001 BTC each
No payment from 4 days now (from 25 to 28 October)
Great... Any comment admin ?
Scam? Or legit that's the question!

Unfortunately, over the last 4 days of the investors it was not, therefore all payments will be processed when we will get deposits.

We bid you good luck!  Smiley
But the latest site statistics say its about 10 BTC deposits and about 5 BTC won!
1045  Economy / Investor-based games / Re: Halloween doubler - 100halloween.com on: November 03, 2015, 11:54:41 AM
Hasn't Paid Me
İ 0.0015 BTC make deposit this site
but it's been 3-4 hours still no payment Angry

(sorry i know a little my english) Smiley
I think you will get your payout once your minimum reaches 0.0002 BTC.
1046  Economy / Games and rounds / Re: [COINUT] [UPGRADED] REGISTER AND GET 0.0048 BTC on: November 03, 2015, 11:14:57 AM
Registered many days back.
Posted the details too.
But my account is still zero.
Hopefully OP responds.
Thanks
1047  Economy / Games and rounds / Re: Giveaway 0.001 BTC for new users [OPEN] on: November 03, 2015, 11:11:17 AM
Forum looks good.Just registered.
username:ilvcoins
BTC: 16Ra6W68ju4UuxJgCJmusUNbyPtEQCLZ7e
Thanks
1048  Economy / Games and rounds / Re: █ ★☆★777Coin★☆★ █ ✔ Full Range of Games ✔ Instant Withdraw ✔ Free mBTC! on: November 03, 2015, 10:58:18 AM
user: ilvbtc
Thanks
1049  Economy / Micro Earnings / Re: [JETCOIN] 900 satoshi per claim on: November 03, 2015, 05:59:01 AM
added your faucet to my Faucetlist


kind regards
Just tried to take a look at your site
(not the op's faucet,your 'faucetlist')...
But  says 'the site ahead contains malware' in red!
1050  Economy / Micro Earnings / Re: [JETCOIN] 750 satoshi per claim on: November 03, 2015, 05:07:40 AM
Looks nice...just started claiming.
Added it on my site too.
Thanks
1051  Economy / Micro Earnings / Re: New Faucet Freebtc.us 1000 satoshis every 360 minutes on: November 03, 2015, 04:44:43 AM
Nice site...antibot thing is not that 'hard' unlike some other stupid sites where we only click the ad whenever we try to click the antibot thing and do not understand why almost all the faucet owners,in general,put those antibot things 'very very near' the ads alone!
1052  Economy / Investor-based games / Re: Halloween doubler - 100halloween.com on: November 03, 2015, 04:06:03 AM
In profit!
Very consistent payouts so far.
Thaks
1053  Economy / Investor-based games / Re: TOP 10 best paying HYIP (bitcoin based) on: November 02, 2015, 05:11:19 PM
Good listing.
Better if you provided your payout proofs for each of the sites you have listed on your blog.
1054  Economy / Investor-based games / Re: Halloween doubler - 100halloween.com on: November 02, 2015, 05:03:25 PM
Almost reached break even!
Let's hope this one lasts long.
1055  Economy / Micro Earnings / Re: iFaucet RELAUNCHED - 1000 satoshis hourly, 10% ref. bonus!!! on: November 02, 2015, 08:51:31 AM
Good site and high paying.
Added it on my site too.
Thanks
1056  Economy / Micro Earnings / Re: FreeBitco.in - Win free Bitcoins every hour! on: November 02, 2015, 08:26:35 AM
Let me try to explain how it works using the code that is used in perl to select the winners. There is a database table created for every active round containing the user id's and the corresponding number of tickets they have in that round. Then once the round ends, 2 arrays are created - @userids containing all the user id's and @tickets containing all the tickets. This is done by going through the table record by record and using the following code:

Code:
my $user_tickets = $db->SelectARef("SELECT userid, tickets FROM lottery_active_tickets WHERE round=?", $current_round);
foreach (@$user_tickets)
{
push @userids, $_->{userid};
push @tickets, $_->{tickets};
}

Then after these 2 arrays are created, the following code is used to pick the winners:

Code:
my @winners = ();
my @winner_tickets = ();
for (my $i=0; $i<10; $i++)
{
my $total = sum @tickets;
my $rand = int rand $total;
my $selected = 0;
my $limit = $tickets[$selected];
while ($rand >= $limit)
{
$selected++;
$limit += $tickets[$selected];
}
push @winners, $userids[$selected];
push @winner_tickets, $tickets[$selected];
my $removed_userid = splice @userids, $selected, 1;
my $removed_tickets = splice @tickets, $selected, 1;
}

Once a winner is picked, their userid and tickets are removed from the arrays and the loop above is run again to pick the next winner until all 10 have been picked.
Thanks for the clarification.I thought its like usual raffle tickets with specific numbers.
1057  Economy / Micro Earnings / Re: FreeBitco.in - Win free Bitcoins every hour! on: November 02, 2015, 07:42:57 AM
The weird thing about the draws are the results. People who buy the least tickets win the most money. Only one or two people who spend a lot of money buying lottery tickets won

any of the Jackpot prizes. It should be the other way around... there should be lots of people who buy lots of tickets winning these prizes. I was under the impression that the more

tickets you buy, the higher your chance to win the bigger prizes or any of the prizes for that matter... but the results of almost all the draws reflect the opposite. hmmmm....  Huh

That's true of course but(i'm considering the latest round) when you have a total of 11m of tickets also if you have 90k(the person that won the 4th prize) tickets you still have only less than 1% of probability to win the first prize.


We get a lot of emails about this but people don't realize that because the tickets are picked randomly, even buying 100k tickets only increases the chance of winning and does in no way guarantee a prize. It's the same as any other lottery - even if you buy 100k tickets in the Euro millions for example, there is a very big chance that you would not win anything. 100k tickets is less than a 1% chance of winning.

I just need some clarity as to in what way'tickets are picked randomly' please....Do these collected tickets have specific numbers assigned to them?
Thanks
1058  Economy / Micro Earnings / Re: [ANN] InFaucet.com Free Bitcoins - AVERAGE 3050 satoshi per hour! on: November 02, 2015, 07:34:01 AM
Nice site.Used it previously also when it used to give something 1000/1500 per claim in the beginning.
Even now it's ok and looks unique.
Added it on my site too.
Thanks
1059  Economy / Micro Earnings / Re: new faucet 1500 satoshi visit us on: November 02, 2015, 07:11:52 AM
Nice site.
Added it on my site here:http://bit.ly/1GEhCKs
Thanks
1060  Economy / Micro Earnings / Re: $$$ [FaucetBox] [1000+ SATOSHI] Fastcoins.cf - Fast, easy to use! $$$ on: November 02, 2015, 07:04:46 AM
Please look at the 5th faucet in your rotator-bambitcoin
Is it paying?
Pages: « 1 ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 [53] 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!