askolein (OP)
Member
Offline
Activity: 70
Merit: 10
|
|
April 24, 2016, 05:38:20 PM Last edit: April 27, 2016, 10:32:59 PM by askolein |
|
********************** ****************************************************************** ****************************************************************** ********************** -- nice picture :pParallel Gambling3 players gambling game3 independant play zones :
0.1 ETH - Zone 1 1 ETH - Zone 2 5 ETH - Zone 3 ********************** ****************************************************************** ****************************************************************** **********************Hello everyone, Parallel Gambling is 3 Players Round Gambling game.When 3 players have bet, the total balance is distributed randomly according to their bet zone : First -- 170 %-- Big Winner Second -- 130 %-- Small Winner Third -- 0% -- LooserEvery betters have a 2/3 probabily to win !Everything is distributed randomlyA fee of 1% is taken, a website will come in some weeks with another project.Your play zone is selected automatilically according to your betA new round start when a player bet in a zoneYou can always cancel your bet if the round is idling more than 6 hours ! Use the function "Cancel Round and Refund".
You can bet in any zone, and come back later to see if you have won, every player have statistics, use Ethereum Wallet ! Tested on the ethereum Mordern testnet.VERIFY THE CODE to prevent any scam, always.Parameters can be modified, only when no one is playing. I will listen to the community needs .********************** ****************************************************************** ****************************************************************** ********************** Verified Source Code: https://etherscan.io/address/0x83051e225a06682ff0dde9bcd267d8418c4cbcd7Contract : 0x83051e225a06682ff0dde9bcd267d8418c4cbcd7 Send with 400000 gas. If the transaction fails, just resend, it can fail if mist fail to evaluate gas usage. Unused gas is always refunded. MyEtherWallet Users, use this link: https://www.myetherwallet.com/?gaslimit=450000&to=0x83051e225a06682ff0dde9bcd267d8418c4cbcd7&value=10#send-transactionWho will be the luckiest ? Gambling is risky, bet what you can loose.
JSON interface:
[ { "constant": false, "inputs": [ { "name": "_owner", "type": "address" } ], "name": "ChangeOwnership", "outputs": [], "type": "function" }, { "constant": true, "inputs": [], "name": "LookAtCollectedFees", "outputs": [ { "name": "Fees", "type": "uint256", "value": "0" }, { "name": "info", "type": "string", "value": "Fees collected, in finney." } ], "type": "function" }, { "constant": false, "inputs": [ { "name": "new_fee", "type": "uint256" } ], "name": "ModifyFeeFraction", "outputs": [], "type": "function" }, { "constant": true, "inputs": [ { "name": "id", "type": "uint256" }, { "name": "zone", "type": "uint256" } ], "name": "PlayerInfoPerZone", "outputs": [ { "name": "Address", "type": "address" }, { "name": "Payout", "type": "uint256" }, { "name": "UserPaid", "type": "bool" }, { "name": "info", "type": "string" } ], "type": "function" }, { "constant": false, "inputs": [], "name": "CollectAllFees", "outputs": [], "type": "function" }, { "constant": true, "inputs": [], "name": "LookAtDepositsToPlay", "outputs": [ { "name": "InZone1", "type": "uint256", "value": "100" }, { "name": "InZone2", "type": "uint256", "value": "1000" }, { "name": "InZone3", "type": "uint256", "value": "5000" }, { "name": "info", "type": "string", "value": "Deposit for each zones, in finney. Surpus are always refunded." } ], "type": "function" }, { "constant": false, "inputs": [ { "name": "zone", "type": "uint256" } ], "name": "CancelRoundAndRefundAll", "outputs": [], "type": "function" }, { "constant": false, "inputs": [ { "name": "new_time_max", "type": "uint256" }, { "name": "new_first_prize", "type": "uint256" }, { "name": "new_second_prize", "type": "uint256" }, { "name": "new_third_prize", "type": "uint256" }, { "name": "deposit_1", "type": "uint256" }, { "name": "deposit_2", "type": "uint256" }, { "name": "deposit_3", "type": "uint256" } ], "name": "ModifySettings", "outputs": [], "type": "function" }, { "constant": true, "inputs": [ { "name": "zone", "type": "uint256" } ], "name": "LookAtLastTimePerZone", "outputs": [ { "name": "LastTimeForSelectedZone", "type": "uint256", "value": "1461519204" }, { "name": "TimeToWaitEnablingRefund", "type": "uint256", "value": "21600" }, { "name": "info", "type": "string", "value": "Timestamps, use this to know when you can cancel a round to get back funds, TimeToWait in seconds !" } ], "type": "function" }, { "constant": true, "inputs": [], "name": "LookAtNumberOfPlayers", "outputs": [ { "name": "InZone1", "type": "uint256", "value": "0" }, { "name": "InZone2", "type": "uint256", "value": "0" }, { "name": "InZone3", "type": "uint256", "value": "0" }, { "name": "info", "type": "string", "value": "Players in a round, in each zones." } ], "type": "function" }, { "constant": true, "inputs": [], "name": "LookAtPrizes", "outputs": [ { "name": "FirstPrize", "type": "uint256", "value": "170" }, { "name": "SecondPrize", "type": "uint256", "value": "130" }, { "name": "LooserPrize", "type": "uint256", "value": "0" }, { "name": "info", "type": "string", "value": "Prizes in percent of the deposit" } ], "type": "function" }, { "constant": true, "inputs": [], "name": "LookAtBalance", "outputs": [ { "name": "BalanceOfZone1", "type": "uint256", "value": "0" }, { "name": "BalanceOfZone2", "type": "uint256", "value": "0" }, { "name": "BalanceOfZone3", "type": "uint256", "value": "0" }, { "name": "info", "type": "string", "value": "Balances of all play zones in finney" } ], "type": "function" }, { "constant": true, "inputs": [ { "name": "addr", "type": "address" } ], "name": "GamblerPerAddress", "outputs": [ { "name": "Bets", "type": "uint256", "value": "0" }, { "name": "Deposited", "type": "uint256", "value": "0" }, { "name": "PaidOut", "type": "uint256", "value": "0" }, { "name": "info", "type": "string", "value": "Bets is the number of time you participated, no matter the zone." } ], "type": "function" }, { "inputs": [], "type": "constructor" } ]
Thank you for your ideas and suggestions
|