Pages:
Author

Topic: [ANN][MOTO] Motocoin - page 99. (Read 178225 times)

legendary
Activity: 1386
Merit: 1016
May 21, 2014, 11:13:20 AM
Proof of play new idea! When playing game , we earn coin!
sr. member
Activity: 286
Merit: 250
May 21, 2014, 10:49:19 AM
[quotejavascript:void(0); author=(oYo) link=topic=591724.msg6855067#msg6855067 date=1400682694]
Here's what it looks like when I play  Embarrassed


[/quote]

LOL truee, i can't get coin until now  Undecided
legendary
Activity: 1946
Merit: 1005
My mule don't like people laughing
May 21, 2014, 10:47:54 AM
Here's what it looks like when I play  Embarrassed



Yeah, me too. This is going to take some practice.

sr. member
Activity: 476
Merit: 500
I like boobies
May 21, 2014, 10:31:34 AM
Here's what it looks like when I play  Embarrassed

sr. member
Activity: 280
Merit: 250
May 21, 2014, 10:18:16 AM
It's good to discuss about the source code, about security, about how to improve... this is the meaning of open soruce. I will wait to read the whitepaper to understand it better. But for now I think the idea after the coin is awesome, and dev is doing a great work here, so the people writting "scam" and nothing more just should leave this thread.  Wink

So far I'm very impressed with how dev is doing things. Professional. Good idea. Released when he said it would, works as he said it would. I'm playing and enjoying it and it is all free.
Nice work!

I am looking forward to people looking at the code etc.
sr. member
Activity: 406
Merit: 250
May 21, 2014, 10:11:48 AM
It's good to discuss about the source code, about security, about how to improve... this is the meaning of open soruce. I will wait to read the whitepaper to understand it better. But for now I think the idea after the coin is awesome, and dev is doing a great work here, so the people writting "scam" and nothing more just should leave this thread.  Wink
sr. member
Activity: 280
Merit: 250
May 21, 2014, 10:11:41 AM
This is awesome!
I spent the past hour mining. Got 50 coins now. It is hard at start but gets easier the more you play... and damn addictive!
hero member
Activity: 551
Merit: 500
May 21, 2014, 10:09:10 AM
It's not that hard. Read the help section. I've mined 3 blocks and gotten close to many others. Only played maybe an hour total.
jr. member
Activity: 56
Merit: 1
May 21, 2014, 08:16:41 AM
Then Litecoin is also insecure as its PoW hash depends only on version:
Code:
    uint256 GetPoWHash() const
    {
        uint256 thash;
        scrypt_1024_1_1_256(BEGIN(nVersion), BEGIN(thash));
        return thash;
    }
But the truth is that if you have pointer to nVersion you can add any value to it and get information that is stored after it.

Oops, I'm wrong, not reading pointers correctly (I hate pointers). It does seem to be secure (except for iterating through different block headers until you get an easy to solve game). Also this means the timestamps will be from when a player started a game, not when they completed it.
full member
Activity: 204
Merit: 100
May 21, 2014, 08:13:51 AM
Some people couldn't run the game, I believe that this is because of some issues with GPU drivers. I plan to make version which doesn't require OpenGL at all. But for now I only changed the game so that it will display you error if something goes wrong instead of silently exit.
https://mega.co.nz/#!GVZjWL7T!Tlc3_P8_ccYv0PUlDBwNhwVKdzx-gAmBu3FOCHfQPZ8
sr. member
Activity: 262
Merit: 250
May 21, 2014, 08:00:27 AM
god,it's tooooooo difficult ..
legendary
Activity: 1498
Merit: 1001
180 BPM
May 21, 2014, 07:39:30 AM
When I push "Play to mine" nothing happens for me, game doesn't start. Win 8 64bit.

Could anyone help?

Would really like to test the concept.
legendary
Activity: 1400
Merit: 1050
May 21, 2014, 07:24:57 AM
The coin idea is interesting but too difficult to mine for me (and my keyboard... key remapping (and better sensitivity) would be a good)
full member
Activity: 204
Merit: 100
May 21, 2014, 07:22:49 AM
2. What does it mean "almost" ? As i have no idea how this coin works , and the website didn't provide too much info.
Source code is released and I will write a paper describing in details how it works.

I want to know how to control, i just know the left and right key for angle judgement, "s" for enlarge/small, and does anyone know how to turn the direction?
There is help under "Play to mine" button. Use space to turnaround, up key to accelerate, down to brake.
legendary
Activity: 2912
Merit: 6403
Blackjack.fun
May 21, 2014, 07:20:02 AM
It's a joke! a scam!
LOL
nice joke


A joke maybe but it's not a scam.
Did somebody asked you for money , did the dev promised 1btc /per coin in one week?
Was there an IPO?

A funny coin , that can be treated as a joke but no scam in sight.
full member
Activity: 204
Merit: 100
May 21, 2014, 07:18:58 AM
In main.cpp look at CBlock::CheckPoW() definition:
line 1492: motoCheck((const uint8_t*)&nVersion, &Nonce)
You see pointer to nVersion. If you look at CBlockHeader definition (main.h, line 1290) then you will see that nVersion is followed by all necessarry block information:
Code:
    int nVersion;
    uint256 hashPrevBlock;
    uint256 hashMerkleRoot;
    unsigned int nTime;
    unsigned int nBits;
Function motoCheck uses not only nVersion but information that follows it to generate level. This is a bit ugly but it was made in similar way in Litecoin. Actual level generation is in moto-engine.cpp:474, function motoGenerateWorld.

I have read all that. The check depends only on the version and the nonce not the merkle tree hash.You can't pull the wool over my eyes.
Then Litecoin is also insecure as its PoW hash depends only on version:
Code:
    uint256 GetPoWHash() const
    {
        uint256 thash;
        scrypt_1024_1_1_256(BEGIN(nVersion), BEGIN(thash));
        return thash;
    }
But the truth is that if you have pointer to nVersion you can add any value to it and get information that is stored after it.
member
Activity: 64
Merit: 10
May 21, 2014, 07:13:37 AM
It's a joke! a scam!
LOL
nice joke
full member
Activity: 562
Merit: 100
May 21, 2014, 07:11:05 AM
I want to know how to control, i just know the left and right key for angle judgement, "s" for enlarge/small, and does anyone know how to turn the direction?
legendary
Activity: 2912
Merit: 6403
Blackjack.fun
May 21, 2014, 07:02:34 AM
Funny coin , reminds me of huntercoin...


Quote
No energy is wasted on useless computations.
It is more secure as it is almost impossible to perform 51% attack.

A lot of energy will be used to play , not talking about the stress playing this game Smiley.

2. What does it mean "almost" ? As i have no idea how this coin works , and the website didn't provide too much info.
hero member
Activity: 945
Merit: 1000
May 21, 2014, 06:53:20 AM
Damn this game is hard  Grin
Pages:
Jump to: