Bitcoin Forum
April 25, 2024, 06:13:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 »  All
  Print  
Author Topic: Introducing Cryptour - Fun Bitcoin Tournament | No signups req | Provably fair  (Read 5388 times)
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 11:52:22 AM
 #61

Anyhow lets say if my position is in winning stage, and then alot entries coming and my position drop out..
Is it possible that entry will back to winning place again if the number of winners increases?

Yes, that is a valid possibility.
If the new entries are mostly scoring lower than yours.


Alright thanks and understood all of it.. because my position just gone.. and check its at no6.. and just checked again. Become no7. Eww its so sad.. too early for celebrating no5 just now.

Hey, you got company. Smiley
I am fourth. from second.  Cool

...and #1 on the 000 tourney.

Once you get a super high number I think it would be really hard to defeat.

The latest confirmed block (375 464) just just pushed everyone down by 2 spots!
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.
ndnh
Legendary
*
Offline Offline

Activity: 1302
Merit: 1005


New Decentralized Nuclear Hobbit


View Profile
September 21, 2015, 12:02:39 PM
Last edit: September 21, 2015, 12:17:03 PM by ndnhc
 #62

Anyhow lets say if my position is in winning stage, and then alot entries coming and my position drop out..
Is it possible that entry will back to winning place again if the number of winners increases?

Yes, that is a valid possibility.
If the new entries are mostly scoring lower than yours.


Alright thanks and understood all of it.. because my position just gone.. and check its at no6.. and just checked again. Become no7. Eww its so sad.. too early for celebrating no5 just now.

Hey, you got company. Smiley
I am fourth. from second.  Cool

...and #1 on the 000 tourney.

Once you get a super high number I think it would be really hard to defeat.

The latest confirmed block (375 464) just just pushed everyone down by 2 spots!


That was me.  Grin

9 winners now.



Edit:
Verifying my ticket.
SHA256(f807499f5b597e7d100bce905ef5257e25309770b599c275159d2fc6de93bead28279234791ESmdyVC14xpytDQYBKw54u8b4EPSjL5H3)
= 23d9d881d3f534d1cf07c14da9a598ffdf1648f8817ef0439d0c712fe8a8cdaa . Substring : ffdf1648f8817ef0439d0c712fe8a8cdaa  => Decimal value : 87068537118452384981019157031072802852266 Cheesy



Provably fair system Verified by ndnhc.  Cool
rz20
Legendary
*
Offline Offline

Activity: 1330
Merit: 1001


View Profile
September 21, 2015, 12:36:51 PM
 #63

Yeah provably fair system is working fine now, nice that you get rid of the salt
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 12:41:09 PM
 #64

That was me.  Grin

9 winners now.



Edit:
Verifying my ticket.
SHA256(f807499f5b597e7d100bce905ef5257e25309770b599c275159d2fc6de93bead28279234791ESmdyVC14xpytDQYBKw54u8b4EPSjL5H3)
= 23d9d881d3f534d1cf07c14da9a598ffdf1648f8817ef0439d0c712fe8a8cdaa . Substring : ffdf1648f8817ef0439d0c712fe8a8cdaa  => Decimal value : 87068537118452384981019157031072802852266 Cheesy



Provably fair system Verified by ndnhc.  Cool

Congrats on your 1st place entry. Hope it keeps its position.

The substring is 32nd to 41st characters, hence for yours fdf1648f8. Still some space to squeeze in to the top position. Smiley
ndnh
Legendary
*
Offline Offline

Activity: 1302
Merit: 1005


New Decentralized Nuclear Hobbit


View Profile
September 21, 2015, 01:02:46 PM
 #65

Congrats on your 1st place entry. Hope it keeps its position.

The substring is 32nd to 41st characters, hence for yours fdf1648f8. Still some space to squeeze in to the top position. Smiley


32nd? Dang! Oh, it is. Can you fix this typo:

Quote
// Concatenate txid, nonce and tournament address
// txid and tournament address are hex strings while nonce is string in integer
composite = txid.toString() + nonce of first confirming block + tournament address;

// SHA-256 it
hash = sha256(composite);

// Get a substring of hash at 32nd to 41st position
// with string length of 9 characters
score_in_hex = hash.substring(31, 40);

// Convert it into decimal
score = parseInt(score_in_hex, 16);


Edit: I checked. Order is correct. Funny I took 32 for almost all the cases.
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 01:06:26 PM
 #66

Congrats on your 1st place entry. Hope it keeps its position.

The substring is 32nd to 41st characters, hence for yours fdf1648f8. Still some space to squeeze in to the top position. Smiley


32nd? Dang! Oh, it is. Can you fix this typo:

Quote
// Concatenate txid, nonce and tournament address
// txid and tournament address are hex strings while nonce is string in integer
composite = txid.toString() + nonce of first confirming block + tournament address;

// SHA-256 it
hash = sha256(composite);

// Get a substring of hash at 32nd to 41st position
// with string length of 9 characters
score_in_hex = hash.substring(31, 40);

// Convert it into decimal
score = parseInt(score_in_hex, 16);

It's not a typo, in common programming language, esp. for .substring(), 1st character is at position 0. 32nd character is at position 31 (starting from 0). Even though the doc is using psuedo-code, we are using JavaScript as the base.
ndnh
Legendary
*
Offline Offline

Activity: 1302
Merit: 1005


New Decentralized Nuclear Hobbit


View Profile
September 21, 2015, 01:08:04 PM
 #67


It's not a typo, in common programming language, esp. for .substring(), 1st character is at position 0. 32nd character is at position 31 (starting from 0). Even though the doc is using psuedo-code, we are using JavaScript as the base.


lol. sorry. Grin

I don't have much idea about javascript. But in Excel, entering =mid(31,40) gets me the substring from the 31st place.
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 01:13:03 PM
 #68


It's not a typo, in common programming language, esp. for .substring(), 1st character is at position 0. 32nd character is at position 31 (starting from 0). Even though the doc is using psuedo-code, we are using JavaScript as the base.


lol. sorry. Grin

I don't have much idea about javascript. But in Excel, entering =mid(31,40) gets me the substring from the 31st place.

Ooops. Oh well, Microsoft...

joksim299
Legendary
*
Offline Offline

Activity: 2170
Merit: 1014


Bitdice is scam scam scammmmmmmmmmmmmmmmmmmmmmmmmm


View Profile WWW
September 21, 2015, 01:24:25 PM
 #69

Why is the main 0.5BTC guaranteed tournament postponed?

PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 01:33:45 PM
 #70

Why is the main 0.5BTC guaranteed tournament postponed?

We shifted it back when there were 0 entries to allow us more time to campaign for it.

PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 04:31:22 PM
 #71

Congratulations to the 10 winners of our Pilot Tournament.

https://i.imgur.com/7HB98hc.jpg

It was a fun one. Winners should have received their prizes (tx)

On to the next ones:
ndnh
Legendary
*
Offline Offline

Activity: 1302
Merit: 1005


New Decentralized Nuclear Hobbit


View Profile
September 21, 2015, 04:32:59 PM
 #72

Confirming receipt of the prizes. Cheesy
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 04:40:04 PM
 #73

Confirming receipt of the prizes. Cheesy

Congratulations sir!
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 21, 2015, 04:55:35 PM
 #74

That was me.  Grin

9 winners now.



Edit:
Verifying my ticket.
SHA256(f807499f5b597e7d100bce905ef5257e25309770b599c275159d2fc6de93bead28279234791ESmdyVC14xpytDQYBKw54u8b4EPSjL5H3)
= 23d9d881d3f534d1cf07c14da9a598ffdf1648f8817ef0439d0c712fe8a8cdaa . Substring : ffdf1648f8817ef0439d0c712fe8a8cdaa  => Decimal value : 87068537118452384981019157031072802852266 Cheesy



Provably fair system Verified by ndnhc.  Cool

Congrats on your 1st place entry. Hope it keeps its position.

The substring is 32nd to 41st characters, hence for yours fdf1648f8. Still some space to squeeze in to the top position. Smiley


fdf1648f8 is indeed 68167289080 in decimal. Smiley
https://www.google.com/search?q=0xfdf1648f8+in+decimal
https://cryptour.com/t/1ESmdyVC14xpytDQYBKw54u8b4EPSjL5H3

ndnh
Legendary
*
Offline Offline

Activity: 1302
Merit: 1005


New Decentralized Nuclear Hobbit


View Profile
September 21, 2015, 05:29:52 PM
 #75


Thanks. Didn't know a small error changes so many things.  Shocked

#ffffffff is 68719476735. I am pretty lucky, lol. Cheesy
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 22, 2015, 03:53:36 AM
 #76

Next tournament, with only BTC0.0003 entry fee is closing in about 7 hours from now.

It's a great opportunity to try out Cryptour with a small roll. We only have 1 entry now, should be quite an easy beat to get a good return.

Good luck!
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 23, 2015, 02:43:37 PM
 #77

Upcoming tourneys, 2 with huge guarantees and overlays!
2 tournaments closing in about 24 hours from now.

Try out Cryptour for a tiny entry fee and get a chance to win huge prizes.

  • 150k satoshis
    - only 1 entry so far! Each ticket only costs BTC0.0015
  • The '000s Guaranteed Tournament
    - Stand a chance to win upward of BTC0.12 with only BTC0.002 per ticket!
  • Major: 0.5 Gtd BTC0.5 Guaranteed Tournament with only BTC0.006 entry fee!
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 24, 2015, 04:52:49 PM
 #78

BTC0.12 Guaranteed Tournament closing today!

- More than 5 winners will be rewarded
- Takes only BTC0.002 to enter!
- Very good overlay and definitely +EV to enter.
- ENTER THIS TOURNAMENT

Good luck!
PlayCryptour (OP)
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile WWW
September 25, 2015, 03:43:02 PM
 #79

Congratulations to the 8 winners of our last guaranteed tournament - The '000s.

Next up, our biggest tournament to date:

Major: 0.5 Gtd

  • BTC0.5 prize pool guaranteed!
  • Entry costs only BTC0.006!
  • All entries, prizes scores are 100% provably fair. Check out our closed tournaments.

If you have not yet tried Cryptour out, try it out. Big prize pool with only a small entry fee.
I'd be happy to help if you have any questions.

nickaizoku
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


❃ CyberNick ❃


View Profile
September 25, 2015, 04:39:49 PM
 #80

Congratulations to the 8 winners of our last guaranteed tournament - The '000s.

Next up, our biggest tournament to date:

Major: 0.5 Gtd

  • BTC0.5 prize pool guaranteed!
  • Entry costs only BTC0.006!
  • All entries, prizes scores are 100% provably fair. Check out our closed tournaments.

If you have not yet tried Cryptour out, try it out. Big prize pool with only a small entry fee.
I'd be happy to help if you have any questions.


How many MAX winner in here actually? Is it the more participants the more winner?

Pages: « 1 2 3 [4] 5 »  All
  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!