The Double Trouble universe of games is lacking a place for BitCoin whales to play. I figured it's time to meet the needs of high stakes players! This game will be traditional Double Trouble but the stakes are for those serious about their Double Troubling.
UPDATED: Please read the rules
Here's how it works:
1 - Send a minimum of 1 BTC up to no limit
Day 2: Send in a minimum of 2 BTC up to no limit to:Day 3: Send in a minimum of 3 BTC up to no limit to:Reverting to day 1 rate due to player feedback.
Code:
1Fn7JNcxwvn9Fq5WzAASruBAmUy4HS5Va5
(watch the address here:
http://blockexplorer.com/address/1Fn7JNcxwvn9Fq5WzAASruBAmUy4HS5Va5)
Entries for less than the minimum go to the Operator's Red Bull fund. Don't send in under the minimum!
2 - Promote this game until someone else plays and double your money in 7 days or lessy have in just hours)! Spread the word to get your payout!
Make sure you send from an address that you can receive with (so don't use ewallet!)
Example:
Person 1 sends in 1 BTC
Person 2 sends in 2 BTC, so person 1 gets paid out 2 BTC - fee
Person 3 also sends in 2 BTC, person 2 gets paid out when the total is at 4 BTC
I'm going to do the same thing others have done, and run the game for 7 days. There will be the 1% fee as others have had.
Follow along by parsing the code in your favorite python interpreter (
http://www.skulpt.org/ if you don't have another)
Here is the source code for the game mechanics
tickets = [
['1DwAPpTz5Y3qB71eTVa4CRSaCQhZ7wkpW9', 1.5],
['1Nmo7tj6XC373noKD7xiUWFUaEH27o6dX1', 1.5],
['1NweAJiqRsqH6YTSYiaEP5GVY17ugdP6ZK', 4],
['1DwAPpTz5Y3qB71eTVa4CRSaCQhZ7wkpW9', 3],
['1EojpWhG659nn31gDZJZTccjo1YDnijvWk', 1.5],
['1D69xrdkvENSdvwCPRqsKrvBLN1WTrhew8', 3.1 ],
['1CaJjfFbmwv7QFbkRWrCFighZHWpxUWb8', 2.5],
['1DwAPpTz5Y3qB71eTVa4CRSaCQhZ7wkpW9', 5.5],
['19ujJ5LHFd4DiCGPQvbgBPoZWXFj6KpxuR', 4],
['1DwAPpTz5Y3qB71eTVa4CRSaCQhZ7wkpW9', 5],
['1718cjmrh1sJXTx6rFmGapKfy5Ktp8NMAz', 1.5],
['1KUwHEb3WMZiB9MxwYZZoaYzMYnUDneYz1', 1],
['1NweAJiqRsqH6YTSYiaEP5GVY17ugdP6ZK', 2.5],
['18Ysvz6EjixjFpTRziDVVAcErcjSZqJPbY', 4],
['1CaJjfFbmwv7QFbkRWrCFighZHWpxUWb8', 5],
['1Fx77x2kxN9M2LWqYoMzYfwg1rsrdR1rmE', 2],
['13sw8U7NY2keRCySHEMBsa3v6fDNaCMN56', 2],
['1Kf17qyRuU4AnY4vxMARDmLFuWqocwoGih', 2],
['14V11gPqbyT8JXPpiiiFzaZsWhiw8Bo27m', 1],
['1Fn7JNcxwvn9Fq5WzAASruBAmUy4HS5Va5', 2.10000000000000142],
['1DdS1bURLs11wB5DSm8dZrNbaMFWPsW2Ef', 2],
['1DwAPpTz5Y3qB71eTVa4CRSaCQhZ7wkpW9', 5],
['149te2ukVdSEc1ECP6syfivA93Bkvm1rFj', 2],
['1NZLgm99ZnfbGwGaj8Y2Gcs8aDr5gDYiF', 1],
['17ntQu2iKywyCT2pE9re3YJYjUdGu1iMr', 6],
['15icTqGZovenkujj8T4tEZ3tgaUK3aEGa', 7.5],
['19ujJ5LHFd4DiCGPQvbgBPoZWFj6KpuR', 3.5],
['19b39gnPPDYc2LGLmaeJgviLqqTTCQ1K', 5.45],
['137JrCc4TukuUf9NBbzeZhYZAsdKe1wemV', 2.5],
['1EqTp7mr2sZZJ2tgAKn4eHo4CjjAEam', 2],
['13ZLfAAcVYv6eGzy9sBeJQc3nGRkvyE4gS', 2],
['1K172qgQfSMwdYoMQ3umfmSpW7FEzjGij', 8],
['189ygSHMC8Ksz6RMELnaYbKgqH5D7q4t4', 5],
['1CP18ksABum2yZtKD7Rskzc7piaC52C', 2],
['1718cjmrh1sJT6rFmGapKfy5Ktp8NMAz', 5.05],
['1ie2rA2qdSUbJR4YwRzLbVyhYN4BwiLN9', 5.5],
['1J1hWWD9Cp7EKBfGVepruhqiTGDwzpPp', 2],
['1JjDBi8D9aEwaQyqG2Ghs4Zd36iNJskD', 2.5],
['1Fu8mcAUouZBsqeG3C28ob9Jmmu1AyozmP', 5.02],
['1PtcdenAQyHvQorBGinziGAJmNiEf6aa', 2.23],
]
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) + " BTC to go for next double")
Or follow along at the spreadsheet here:
http://goo.gl/CLncpDisclaimer: you can lose BTC playing this or any other Double Trouble game.
1Pt1bHvfu9knJfRFMVKLSCEhkhzwhhf3Av for Red Bull Donations.