Bitcoin Forum
April 18, 2024, 03:52:19 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 457 »
  Print  
Author Topic: FreeBitco.in-$200 FreeBTC🏎Win Lambo🔥0.2BTC DailyJackpot🏆$32,500 Wager Contest  (Read 400499 times)
rammy2k2
Legendary
*
Offline Offline

Activity: 1974
Merit: 1003



View Profile
November 02, 2015, 12:25:55 AM
 #1141

Quote
Sorry, this IP address has been blocked. If you are using a proxy or anonymization service, please turn it off before playing.

Im using this site since it started, never had any issue with it, what the heck ?
1713412339
Hero Member
*
Offline Offline

Posts: 1713412339

View Profile Personal Message (Offline)

Ignore
1713412339
Reply with quote  #2

1713412339
Report to moderator
1713412339
Hero Member
*
Offline Offline

Posts: 1713412339

View Profile Personal Message (Offline)

Ignore
1713412339
Reply with quote  #2

1713412339
Report to moderator
1713412339
Hero Member
*
Offline Offline

Posts: 1713412339

View Profile Personal Message (Offline)

Ignore
1713412339
Reply with quote  #2

1713412339
Report to moderator
The block chain is the main innovation of Bitcoin. It is the first distributed timestamping system.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713412339
Hero Member
*
Offline Offline

Posts: 1713412339

View Profile Personal Message (Offline)

Ignore
1713412339
Reply with quote  #2

1713412339
Report to moderator
1713412339
Hero Member
*
Offline Offline

Posts: 1713412339

View Profile Personal Message (Offline)

Ignore
1713412339
Reply with quote  #2

1713412339
Report to moderator
wetsuit (OP)
Legendary
*
Offline Offline

Activity: 981
Merit: 1026


View Profile WWW
November 02, 2015, 06:24:29 AM
 #1142

Quote
Sorry, this IP address has been blocked. If you are using a proxy or anonymization service, please turn it off before playing.

Im using this site since it started, never had any issue with it, what the heck ?

Can you tell me what your user id is? It's the number in your referral link.

azguard
Legendary
*
Offline Offline

Activity: 1484
Merit: 1001


Crypto-News.net: News from Crypto World


View Profile
November 02, 2015, 06:28:46 AM
 #1143

Quote
Sorry, this IP address has been blocked. If you are using a proxy or anonymization service, please turn it off before playing.

Im using this site since it started, never had any issue with it, what the heck ?

this can be only if you are using tor browser cuz tor have issues with most of btc or any other coin sites.
very small number of sites are working properly but this might be the case or you are using from smart device i have this issue with my phone when i want to do this.



              ▄▄▄██████▄▄▄
          ▄██████████████████▄
       ▄████████████████████████▄
 ▄▄  ▄████████████████████████████▄
███████████████████████████████████▄
 ▀▀█████████████████████████████████▄
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ▀████████████████████████████████▀
    ▀██████████████████████████████▀
     ▀▀██████████████████████████▀
        ▀██████████████████████▀
           ▀▀▀████████████▀▀▀
.
.....
.....
.....
.....
.....
.....





ilvbtc
Legendary
*
Offline Offline

Activity: 1638
Merit: 1001



View Profile
November 02, 2015, 07:42:57 AM
 #1144

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

wetsuit (OP)
Legendary
*
Offline Offline

Activity: 981
Merit: 1026


View Profile WWW
November 02, 2015, 08:03:05 AM
 #1145

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.

ilvbtc
Legendary
*
Offline Offline

Activity: 1638
Merit: 1001



View Profile
November 02, 2015, 08:26:35 AM
 #1146

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.

Lucius
Legendary
*
Offline Offline

Activity: 3220
Merit: 5619


Fortis Fortuna Adiuvat⚔️


View Profile WWW
November 02, 2015, 02:45:11 PM
 #1147

Congratulations to the lucky winners Smiley


.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
ninjaboon
Legendary
*
Offline Offline

Activity: 2114
Merit: 1002



View Profile WWW
November 02, 2015, 02:49:16 PM
 #1148

Congratulations to the lucky winners Smiley



bring out the champagne. congrats to the winners.

azguard
Legendary
*
Offline Offline

Activity: 1484
Merit: 1001


Crypto-News.net: News from Crypto World


View Profile
November 02, 2015, 05:31:06 PM
 #1149

Congratulations to the lucky winners Smiley



bring out the champagne. congrats to the winners.

congrats to winners



              ▄▄▄██████▄▄▄
          ▄██████████████████▄
       ▄████████████████████████▄
 ▄▄  ▄████████████████████████████▄
███████████████████████████████████▄
 ▀▀█████████████████████████████████▄
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ▀████████████████████████████████▀
    ▀██████████████████████████████▀
     ▀▀██████████████████████████▀
        ▀██████████████████████▀
           ▀▀▀████████████▀▀▀
.
.....
.....
.....
.....
.....
.....





Kprawn
Legendary
*
Offline Offline

Activity: 1904
Merit: 1073


View Profile
November 03, 2015, 09:06:09 AM
Last edit: November 03, 2015, 12:40:35 PM by Kprawn
 #1150

I am fine with that, and the code being posted... the question with most of these Lottery games are... How can we be 100% sure that it's that code being used, when the

winners are drawn. You could have a valid and legit code, used for proof and a separate manual method to select the winners you pre selected? This is how most rigged lottery

systems work. There is no verification for the users that the winners are drawn from the same code, they give as proof. I am not saying you are doing the same, because you

have a lot to lose, and the 1 to 2 BTC you would score from this in comparison to your total profit you get from this faucet, is but a mere drop in the pond. I would not risk

losing my reputation and a great profit from the site, over a rigged lottery.  Roll Eyes Have you thought of any method to verify winners?  Something similar to the way you prove the

PROVABLY FAIR HI-LO game or asking some reputable person or company to verify it?

B.t.w congratulations on reaching the 7 BTC mark from donations from this faucet. It's awesome what you doing.  Wink

THE FIRST DECENTRALIZED & PLAYER-OWNED CASINO
.EARNBET..EARN BITCOIN: DIVIDENDS
FOR-LIFETIME & MUCH MORE.
. BET WITH: BTCETHEOSLTCBCHWAXXRPBNB
.JOIN US: GITLABTWITTERTELEGRAM
wetsuit (OP)
Legendary
*
Offline Offline

Activity: 981
Merit: 1026


View Profile WWW
November 03, 2015, 06:31:49 PM
 #1151

I am fine with that, and the code being posted... the question with most of these Lottery games are... How can we be 100% sure that it's that code being used, when the

winners are drawn. You could have a valid and legit code, used for proof and a separate manual method to select the winners you pre selected? This is how most rigged lottery

systems work. There is no verification for the users that the winners are drawn from the same code, they give as proof. I am not saying you are doing the same, because you

have a lot to lose, and the 1 to 2 BTC you would score from this in comparison to your total profit you get from this faucet, is but a mere drop in the pond. I would not risk

losing my reputation and a great profit from the site, over a rigged lottery.  Roll Eyes Have you thought of any method to verify winners?  Something similar to the way you prove the

PROVABLY FAIR HI-LO game or asking some reputable person or company to verify it?

B.t.w congratulations on reaching the 7 BTC mark from donations from this faucet. It's awesome what you doing.  Wink

I understand the concern and would actually like to put in a provably fair system in place because many users have the same concern with the lottery. That being said, I still haven't figured out a way to make it provably fair because the total number of tickets changes every week. If the total was fixed, winning numbers could be pre-selected and hashed before the round starts to make it fair. However, in the current state I do not have any ideas for making it provably fair but am always open to suggestions.

Only other way would be to have a lotto type of system where the users select 6 numbers but there are many referrers who haven't logged into their account for over a year but are still getting paid and accumulating tickets in each round. It would be unfair to ask such users to have to log in every week.

Also 95%+ of the tickets in each round are given out for free to users for free plays and referrals so the prizes for each round mostly come out of my pocket. So there isn't anything that I could gain by rigging the system because it's not like the lottery actually makes any money. It's just a bonus to encourage users to keep playing.

pawel7777
Legendary
*
Offline Offline

Activity: 2422
Merit: 1556



View Profile WWW
November 03, 2015, 10:08:23 PM
 #1152

Also 95%+ of the tickets in each round are given out for free to users for free plays and referrals so the prizes for each round mostly come out of my pocket. So there isn't anything that I could gain by rigging the system because it's not like the lottery actually makes any money. It's just a bonus to encourage users to keep playing.

Just leave it as it is. 99% probably wouldn't even notice the 'provably fair' option if there was one.

As you said, earnings comes from your own pocket* and lottery is an extra option, so there's no real reason for it to be provably fair. I wouldn't worry about that, unless someone proposes a doable solution (where's Dooglus when you need him  Wink )

* Mostly out of your pocket. IIRC, it's possible for someone to deposit his own funds and use them to buy tickets (I'm guessing that doesn't happen very often). For that reason it would be good if lottery was provably fair.

.
.airbet.
██
██
██
██
██
██
██
██

██

██

██

██

██
.

▄████▄▄▄██████▄
███████████████
███████████████
███████▀▀▀▀████
██████████████
▀███▀███████▄██
██████████▄███
██████████████
███████████████
███████████████
██████████████
█████▐████████
██████▀███████▀
▄███████████████▄
████████████████
█░██████████████
████████████████
████████████████
█████████████████
█████████████████
███████░█░███████
████████████████
█████████████████
██████████████░█
████████████████
▀███████████████▀
.
.
.
.
██▄▄▄
████████▄▄
██████▀▀████▄
██████▄░░████▄
██████████████
████████░░▀███▌
░████████▄▄████
██████████████▌
███░░░█████████
█████████░░░██▀
░░░███████████▀
██████░░░██▀
░░▀▀███▀

  
6,000+
GAMES
|
WEEKLY
PROMOS
.
....100%....
1ST DEPOSIT
BONUS
....
....125%.....
2ND DEPOSIT
BONUS
██
██
██
██
██
██
██
██

██

██

██

██

██
.
.PLAY NOW.
Kprawn
Legendary
*
Offline Offline

Activity: 1904
Merit: 1073


View Profile
November 04, 2015, 06:01:29 PM
 #1153

I am fine with that, and the code being posted... the question with most of these Lottery games are... How can we be 100% sure that it's that code being used, when the

winners are drawn. You could have a valid and legit code, used for proof and a separate manual method to select the winners you pre selected? This is how most rigged lottery

systems work. There is no verification for the users that the winners are drawn from the same code, they give as proof. I am not saying you are doing the same, because you

have a lot to lose, and the 1 to 2 BTC you would score from this in comparison to your total profit you get from this faucet, is but a mere drop in the pond. I would not risk

losing my reputation and a great profit from the site, over a rigged lottery.  Roll Eyes Have you thought of any method to verify winners?  Something similar to the way you prove the

PROVABLY FAIR HI-LO game or asking some reputable person or company to verify it?

B.t.w congratulations on reaching the 7 BTC mark from donations from this faucet. It's awesome what you doing.  Wink

I understand the concern and would actually like to put in a provably fair system in place because many users have the same concern with the lottery. That being said, I still haven't figured out a way to make it provably fair because the total number of tickets changes every week. If the total was fixed, winning numbers could be pre-selected and hashed before the round starts to make it fair. However, in the current state I do not have any ideas for making it provably fair but am always open to suggestions.

Only other way would be to have a lotto type of system where the users select 6 numbers but there are many referrers who haven't logged into their account for over a year but are still getting paid and accumulating tickets in each round. It would be unfair to ask such users to have to log in every week.

Also 95%+ of the tickets in each round are given out for free to users for free plays and referrals so the prizes for each round mostly come out of my pocket. So there isn't anything that I could gain by rigging the system because it's not like the lottery actually makes any money. It's just a bonus to encourage users to keep playing.

Even though you say, it's from your own pocket... It still money being paid to you from advertisers on your site. This income would not have been possible if the site traffic

were low. The users have a option to either take the money or to dump it back into the lottery. I would be glad to buy loads of tickets with my own BTC, if proof can be

given that it 100% provably fair. The Lottery proof will bring even more visits to your site and more traffic = more advertisement income. I can also see that it's more

complex than what I initially thought it would be. In my opinion idle or inactive users should not receive rewards from the lottery, and loyal active users should rather be

the people receiving these prizes to encourage them to stay active. If you want to incentivize idle users to become active, rather have a separate smaller lottery or reserve

the smaller prizes for the people with the lowest ticket totals.  Wink

THE FIRST DECENTRALIZED & PLAYER-OWNED CASINO
.EARNBET..EARN BITCOIN: DIVIDENDS
FOR-LIFETIME & MUCH MORE.
. BET WITH: BTCETHEOSLTCBCHWAXXRPBNB
.JOIN US: GITLABTWITTERTELEGRAM
ilvbtc
Legendary
*
Offline Offline

Activity: 1638
Merit: 1001



View Profile
November 04, 2015, 06:15:50 PM
 #1154

I think,if possible,the tickets with some assigned numbers are used for selection and the players with those tickets in possession to be the winners to make it a real ticket based lottery.

Kprawn
Legendary
*
Offline Offline

Activity: 1904
Merit: 1073


View Profile
November 09, 2015, 02:42:18 PM
 #1155

Why not change the lottery to a number game? Make the lottery tickets slightly more expensive {Let's say for instance = to 8 x daily faucet rewards} You could then have the

system generate numbers for each ticket, and it would be displayed to the user on his profile. The people would need to visit the faucet 8 times per day to buy 1 lottery ticket to be

able to enter the round. {This would increase the visits to the site} The lottery numbers are fed into a single pool and 10 are drawn. This way, players can visually see that they

have been entered into the draw. {Logs could be placed online of all the qualifying numbers entered into the draw} This is a bit more transparent... hope my suggestion makes sense.  Huh

THE FIRST DECENTRALIZED & PLAYER-OWNED CASINO
.EARNBET..EARN BITCOIN: DIVIDENDS
FOR-LIFETIME & MUCH MORE.
. BET WITH: BTCETHEOSLTCBCHWAXXRPBNB
.JOIN US: GITLABTWITTERTELEGRAM
wetsuit (OP)
Legendary
*
Offline Offline

Activity: 981
Merit: 1026


View Profile WWW
November 15, 2015, 03:38:32 PM
 #1156

Sorry for the late reply, I was not getting notifications for this topic.

I don't think people would like it if they were asked to play 8 times to get a ticket, I would get a whole bunch of emails regarding that.

The ticket numbering system is something that I had though of earlier as well but it would not hep in any way to make the game provably fair. I could just as easily pick the winning number to be a ticket of someone who I would like to win. The number picking cannot be made provably fair even here due to the variable number of tickets in each round.

Making the game provably fair is certainly possible I think, just that I haven't figured out how yet. I am a bit busy with stuff now but I shall have more time in a couple of weeks to think about it and maybe I will be able to figure it out then.

Why not change the lottery to a number game? Make the lottery tickets slightly more expensive {Let's say for instance = to 8 x daily faucet rewards} You could then have the

system generate numbers for each ticket, and it would be displayed to the user on his profile. The people would need to visit the faucet 8 times per day to buy 1 lottery ticket to be

able to enter the round. {This would increase the visits to the site} The lottery numbers are fed into a single pool and 10 are drawn. This way, players can visually see that they

have been entered into the draw. {Logs could be placed online of all the qualifying numbers entered into the draw} This is a bit more transparent... hope my suggestion makes sense.  Huh

DIGITAL GOODS
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
November 15, 2015, 04:56:33 PM
 #1157

Its A Honor To See Your Words On This Forum Sir or Madam I Love Your Website. Cheesy
azguard
Legendary
*
Offline Offline

Activity: 1484
Merit: 1001


Crypto-News.net: News from Crypto World


View Profile
November 16, 2015, 06:35:46 AM
 #1158

Why not change the lottery to a number game? Make the lottery tickets slightly more expensive {Let's say for instance = to 8 x daily faucet rewards} You could then have the

system generate numbers for each ticket, and it would be displayed to the user on his profile. The people would need to visit the faucet 8 times per day to buy 1 lottery ticket to be

able to enter the round. {This would increase the visits to the site} The lottery numbers are fed into a single pool and 10 are drawn. This way, players can visually see that they

have been entered into the draw. {Logs could be placed online of all the qualifying numbers entered into the draw} This is a bit more transparent... hope my suggestion makes sense.  Huh

support your idea and think that will be good for site too
more people will be visiting it and it wont be like now w8 for last day buy tickets and win prizes



              ▄▄▄██████▄▄▄
          ▄██████████████████▄
       ▄████████████████████████▄
 ▄▄  ▄████████████████████████████▄
███████████████████████████████████▄
 ▀▀█████████████████████████████████▄
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ██████████████████████████████████
   ▀████████████████████████████████▀
    ▀██████████████████████████████▀
     ▀▀██████████████████████████▀
        ▀██████████████████████▀
           ▀▀▀████████████▀▀▀
.
.....
.....
.....
.....
.....
.....





Dilemma
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
November 16, 2015, 10:46:59 AM
 #1159

it's best faucet i have ever seen
i use this system more than one year
and they always paid my earning and ref commission in time
thanks for that work..

onlinedragon
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 501


View Profile
November 16, 2015, 11:30:43 AM
 #1160

Few times a week I use this only till now I was not that lucky with gambling Cheesy
Pages: « 1 ... 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 457 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!