Bitcoin Forum

Economy => Investor-based games => Topic started by: VAGE.LAND on July 30, 2018, 03:25:25 PM



Title: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: VAGE.LAND on July 30, 2018, 03:25:25 PM
WELCOME TO THE CRYPTOGOLIC ETHEREUM MULTIPLIER (http://cryptogolic.co)

https://imgurhd.ru/i/3kjd.png (https://imgurhd.ru/3itc)

ABOUT

The CRYPTOGOLIC Ethereum multipliers are smart contracts in which the terms of multiplication are specified - it returns to the address from which the ETH input was made, multiplied by a certain value (depending on the rate eg x1.15 / x1.2 / x1.25) minus the service commission to its creator, as soon as the value necessary for payment is collected on the balance sheet. After the contract is launched and registered in the blockchain Ethereum, it can no longer be changed, deleted, the creator can not withdraw the balance, can only receive a commission. The contract code is open and anyone can read it, the functionality is completely transparent.

HOW TO USE

  • Choose a smart contract and click "Invest" button.
  • Send amount of Ethereum to specified contract address.
  • Send only the spicified amount and don't use exchanges.
  • Check your transaction on etherscan.io (http://etherscan.io) and wait your profit.

MULTIPLIERS

  • MOJITO - X1.15 - DEPOSIT ONLY 0.025 ETH - YOUR PROFIT 15%
  • CUBA LIBRE - X1.2 - DEPOSIT ONLY 0.1 ETH - YOUR PROFIT 20%
  • HAWAII - X1.25 - DEPOSIT ONLY 0.25 ETH - YOUR PROFIT 25%

Fee (10%)  is a service commission, which is deducted from each received deposit. You get exactly the amount that is specified in the contract, without deduction of commission.

ALL CONTRACTS VERIFIED

https://etherscan.io/address/0xbb4814ea990603952ac70628821fe2bb85a69caf (https://etherscan.io/address/0xbb4814ea990603952ac70628821fe2bb85a69caf)
https://etherscan.io/address/0x420a65ea9add07509f820ce6e24e143f690db99a (http://https:/https://etherscan.io/address/0x420a65ea9add07509f820ce6e24e143f690db99a)
https://etherscan.io/address/0x4d3036cee088a7f2a0821b048c47f128fcaff3d2 (https://etherscan.io/address/0x4d3036cee088a7f2a0821b048c47f128fcaff3d2)

Attention!
Although the contract code is verified, this is a pyramid scheme which means that it doesn't create value. It only redistributes investments according to the scheme.
This might seem to be a game but it's still money you are sending in the end. The creator is not in charge of the holdings, everything is on the blockchain.
Please review the code before investing

Recomended gas: 200000
Gas price: 3 gwei


WEBSITE (https://CRYPTOGOLIC.co)

MY DEPOSITS:
https://etherscan.io/tx/0xdbaf260752212710f3fb1efaf206477aec2a4d6becb16eba9556fa201024a742
https://etherscan.io/tx/0xc905623a147c92da6c73053f67d0b8e3524db3a68df9f589b4f78d52c8c99c60


Title: Re: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: VAGE.LAND on July 30, 2018, 10:30:08 PM
First payment recieved

+0.02875 eth

https://etherscan.io/tx/0x0a4eead816c45262519b231ca429e95daee4607eebae67cf25111cecc09b57e8


Title: Re: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: ninobtcx on July 31, 2018, 04:50:04 AM
How does it work? how many people after you need to buy the same drink in order for you to get your eth back + bonus?


Title: Re: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: VAGE.LAND on July 31, 2018, 07:06:18 AM
How does it work? how many people after you need to buy the same drink in order for you to get your eth back + bonus?

it works on the principle of a queue. When someone else buys a drink you will receive your payment with a bonus


Title: Re: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: VAGE.LAND on July 31, 2018, 01:17:17 PM
New payments recieved:

https://etherscan.io/tx/0x7775a9d60b7795484b00473e35a79362b2229f1a17d6d4ec99192c7bccabe9f3    +0.02875 eth

https://etherscan.io/tx/0x92e66b2d392fe7bd7b08ecd9bf9f810610fec21a2eefec1acb90bd8f2ccda14e    +0.02875 eth


Title: Re: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: ninobtcx on August 01, 2018, 02:09:21 AM
How does it work? how many people after you need to buy the same drink in order for you to get your eth back + bonus?

it works on the principle of a queue. When someone else buys a drink you will receive your payment with a bonus

Yeah I get that, but looking at here for instance https://etherscan.io/address/0xbb4814ea990603952ac70628821fe2bb85a69caf
I see lots of purchases of 0.025 eth.
If the price of the drink never increases, how many other buyers one needs to get the investment back? and what is the house edge?




Title: Re: [ETH] The CRYPTOGOLIC Ethereum multiplier ⭐️⭐️⭐️⭐️⭐️
Post by: ninobtcx on August 01, 2018, 02:33:20 AM
       else                                                                    //if sender is not owner
       {
            feecounter+=msg.value/10;                                           //count fee
           owner.send(feecounter/2);                                           //send fee
           developer.send(feecounter/2);                                       //send fee
           feecounter=0;                                                       //decrease fee
          
            if (msg.value == (1 ether)/40)                                      //check for value 0.025 ETH
            {
               amount = msg.value;                                             //if correct value
               uint idx=persons.length;                                        //add to payment queue
                persons.length+=1;
                persons[idx].ETHaddress=msg.sender;
                 persons[idx].ETHamount=amount;
                canPay();                                                       //allow to payment this sender
            }

...

    function UpdatePay() _onlyowner                                             //check for updating queue
    {
        if (meg.balance>((1 ether)/40)) { 
            msg.sender.send(((1 ether)/40));
        } else {
            msg.sender.send(meg.balance);
 
 ...

    function canPay() internal                                                  //create queue async
    {
        while (meg.balance>persons[paymentqueue].ETHamount/100*115)             //see for balance
        {
            uint transactionAmount=persons[paymentqueue].ETHamount/100*115;     //create payment summ
            persons[paymentqueue].ETHaddress.send(transactionAmount);           //send payment to this person
            paymentqueue+=1;                                                    //Update queue async