Bitcoin Forum
April 26, 2024, 04:43:06 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 5 6  All
  Print  
Author Topic: Double Trouble 2! Double your money within 7 days!  (Read 14472 times)
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 04, 2011, 10:36:12 PM
Last edit: June 07, 2011, 08:47:45 AM by bitcoinlottery
 #1

Double Trouble 2

Double Trouble 2 is a very simple game. Someone begins with an arbitrary amount (at least 0.05 btc), for example 0.10 btc. The next one in the game can send also an arbitrary amount. The first gets double his amount if the total amount after the entry is double his amount. Then the next one can get double his money and so on! This continues until 7 days after the last double!
Note: You don't have to double the previous amount.

Steps
1. Send at least 0.05 btc to
Code:
1L5XmYTMvJ5chaMoYRybX6grpMGVYhbJcn
Watch: http://blockexplorer.com/address/1L5XmYTMvJ5chaMoYRybX6grpMGVYhbJcn

2. Wait (or promote this game) until someone else plays and double your money within 7 days!

- Excluding transaction fee and 1% fee
- Don't use EWallet

Open source! (Python)
Code:
tickets = [
    ['1EPd8DM5vQ3UvQY6Yr4bcYk13a4XsBnwz3', 5],
    ['1EnvHJgQh7WGPpnL686RDQFW6FEeznTbkB', 10],
    ['1tqwh6iBYk7F7gcVQ7PKuamf1PR4QgbgF', 20],
    ['1HvsWwqqtc775XM2iYHjAoekpzH3dptVNr', 41],
    ['1JosHcP8sVeBCdonMDSaZfS6cb9Ub46cmJ', 40],
    ['1FZ8tW5wjh1EDFsztSQYtpkxsa1C79GvZX', 125],
    ['1DpL7b8XBE7N2FecL6GGMtSRVUyBKC6Rd3', 251],
    ['16Uox1JKSqfe5LpWpm5TVVqdCcqBiybfgP', 5],
    ['19xRS9cz3m8YXnf83eWe2vHRL1skgixJre', 20],
    ['1FdtJayHR5qWJ67RAhGDjgedVKjFSHSKad', 75],
    ['1BUN1vb6r6fz1peafNrptCtMuRwVq8aNKo', 5],
    ['1AiqDfTWsT2wiu9JqgFJaCYpJZ5XBMGRPy', 50],
    ['12DnFV5JeeD8oBeVd17hkqZCaAnKzWeoNp', 15],
    ['17r7ALUqoKQ3d8MpQ8QBTfqiEoQMiztRDh', 20],
    ['1HvsWwqqtc775XM2iYHjAoekpzH3dptVNr', 50],
    ['1QKVV9BHmZNJkMCUNyssYX1BimzXZ72dQP', 125],
    ['1NV8i5tQGysjogJZcZ2mAQkf6NsT4ccw2Q', 100],
    ['19oR5xAYaASPtPxgaV3BuQTCn7Dh9Wrzqw', 40],
    ['17CNzobc24LRVJq3gCQd9QnWLdpDCoXxNU', 20],
    ['1582JDAsVa7Az7Y6EDQF8GKMV6mg1P45Cd', 100],
    ['1Gky6cMJbc2cnVeN3XRneEnrf2AkbLKxZ5', 27],
    ['1LBYhr4Nqjk2fRYmmbsgqd5bu5ZmfJhFot', 17],
    ['1KrgjdHmwmVcEWjjeucbsy4EZKQeegGVPx', 10],
    ['1B2hyCyBMoxTfCmdkMGEmHBd6RjC6H3QoS', 10],
    ['18Efa3oHTiiVp3DUo1PZqZk5E1wvfvTWRM', 8],
    ['1GSpia2fLLu9BqWeTq1je7o4HnTdBVWRAD', 34],
    ['1jm7dK6WVtLYLvwZ3tj8spUUgtgZTyPSR', 40],
    ['1PkNeHAtxzojKWxDphiEhQxP6xzbGGXiv3', 100],
    ['1AeCTNhF3Sovi8fkjq7Buy8sYoc2C4xoo4', 752],
]

result = []

total = 0
wanted = tickets[0][1] * 2
index = 0
for i in range(1,len(tickets)):
    total += tickets[i][1]
    while (total >= wanted):
        print (tickets[index][0], wanted)
        total = total - wanted
        index = index +1
        wanted = tickets[index][1] * 2
print(str(wanted - total) + " cents to go for next double")
1714106586
Hero Member
*
Offline Offline

Posts: 1714106586

View Profile Personal Message (Offline)

Ignore
1714106586
Reply with quote  #2

1714106586
Report to moderator
1714106586
Hero Member
*
Offline Offline

Posts: 1714106586

View Profile Personal Message (Offline)

Ignore
1714106586
Reply with quote  #2

1714106586
Report to moderator
"Bitcoin: mining our own business since 2009" -- Pieter Wuille
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 04, 2011, 10:50:02 PM
 #2

You can still get 0.05 btc!
chris200x9
Legendary
*
Offline Offline

Activity: 1316
Merit: 1011


View Profile
June 05, 2011, 01:38:55 AM
 #3

im in this one, the other one was too rich
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 05:53:40 AM
 #4

The first two doubled their money! (And the first got a 0.05 btc bonus!)
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 07:02:10 AM
 #5

The third doubled his money!
herbertfilby
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile
June 05, 2011, 07:17:06 AM
Last edit: June 05, 2011, 07:40:56 AM by herbertfilby
 #6

Edit: Was having trouble reloading the page, but the transaction went through and is showing up now.  Smiley

0.41
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 07:50:10 AM
Last edit: June 05, 2011, 07:20:19 PM by bitcoinlottery
 #7

4th and 5th got double their money!
herbertfilby
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile
June 05, 2011, 09:59:51 AM
 #8

Confirmed payback  Smiley

Up 2.51

(sorry for extra decimal, transaction fee keeps throwing me off)
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 10:11:33 AM
 #9

6th got doubled his money!
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 05:18:01 PM
Last edit: June 05, 2011, 07:27:34 PM by bitcoinlottery
 #10

Added to the first post that you don't have to double: you can participate with an arbitrary amount.
herbertfilby
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile
June 05, 2011, 05:42:54 PM
 #11

Ok I get it now. Phew! I was worried about the sustainability if that were the case  Grin
Cool game. 6 days to go.
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 05:58:24 PM
 #12

Ok I get it now. Phew! I was worried about the sustainability if that were the case  Grin
Cool game. 6 days to go.
=)
7 days actually, since it is 7 days since the last Wink
chris200x9
Legendary
*
Offline Offline

Activity: 1316
Merit: 1011


View Profile
June 05, 2011, 05:58:51 PM
 #13

im in this one, the other one was too rich

My contribution 0.1 is not showing up? Sent last night.
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 06:03:00 PM
 #14

im in this one, the other one was too rich

My contribution 0.1 is not showing up? Sent last night.
I don't see it here http://blockexplorer.com/address/1L5XmYTMvJ5chaMoYRybX6grpMGVYhbJcn
Does your client say it is confirmed?
chris200x9
Legendary
*
Offline Offline

Activity: 1316
Merit: 1011


View Profile
June 05, 2011, 06:05:14 PM
Last edit: November 20, 2016, 02:53:23 AM by chris200x9
 #15

I used mybitcoin.com - it shows up in my history


edit: I'm not trying to get money out of you, I'm just trying to find out what happend.
jimbo77
Member
**
Offline Offline

Activity: 224
Merit: 10


View Profile
June 05, 2011, 06:19:32 PM
 #16

I used mybitcoin.com - it shows up in my history

it came from 1CBvDM2M37ExZjWjJDKEED7c9KGNEHY46k (I mean should have came from)

edit: I'm not trying to get money out of you, I'm just trying to find out what happend.
I don't think it works with mybitcoin. I think you have to use Bitcoin.
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 06:21:21 PM
 #17

I used mybitcoin.com - it shows up in my history

it came from 1CBvDM2M37ExZjWjJDKEED7c9KGNEHY46k (I mean should have came from)

edit: I'm not trying to get money out of you, I'm just trying to find out what happend.
Please don't use an ewallet, the adress it sends from isn't one you can get money on.
Do you think you were 1EnvHJgQh7WGPpnL686RDQFW6FEeznTbkB?
chris200x9
Legendary
*
Offline Offline

Activity: 1316
Merit: 1011


View Profile
June 05, 2011, 07:01:06 PM
 #18

I have no clue, like I said it's no big deal I was just wondering what was going on.
lemonginger
Full Member
***
Offline Offline

Activity: 210
Merit: 100


firstbits: 121vnq


View Profile
June 05, 2011, 07:30:23 PM
 #19

what happens if two people send the same amount to double the one before them?
bitcoinlottery (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
June 05, 2011, 08:24:05 PM
 #20

what happens if two people send the same amount to double the one before them?
What do you mean exactly?
If three entries are for example:

1
2
2

the first one gets 2 first, the second one has to wait on 2 more (because he should get 4). Or:

1
1
1

first one gets 2, the second and third have to wait.

Does this explain it to you?
It simply shifts to the next if there is enough money to pay the previous double the amount back.
Pages: [1] 2 3 4 5 6  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!