Bitcoin Forum
May 07, 2024, 04:00:52 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »  All
  Print  
Author Topic: � [MYST] Mystery Coin � Random Rewards � 24 Seconds � Mystery FOUND - ROLLBACK �  (Read 26803 times)
tripppn
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
July 28, 2014, 03:58:18 AM
 #61

Which pool will be first to open...  Its a Mystery   Cool

“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.”
― Frank Zappa
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715054452
Hero Member
*
Offline Offline

Posts: 1715054452

View Profile Personal Message (Offline)

Ignore
1715054452
Reply with quote  #2

1715054452
Report to moderator
MysteryCoin.org (OP)
Newbie
*
Offline Offline

Activity: 112
Merit: 0


View Profile
July 28, 2014, 04:01:52 AM
 #62

Code:
int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash)
{
       int64 nSubsidy = 10 * COIN;

       std::string cseed_str = prevHash.ToString().substr(7,7);
       const char* cseed = cseed_str.c_str();
       long seed = hex2long(cseed);
       int rand = generateMTRandom(seed, 800);
       int rand1 = 0;
       int rand2 = 0;
       int rand3 = 0;
       int rand4 = 0;
       int rand5 = 0;
       int rand6 = 0;
       int rand7 = 0;

     
       if(nHeight < 80000)   
       {
               nSubsidy = rand * COIN;
       }



       else if(nHeight < 160000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand1 = generateMTRandom(seed, 400);
               if(rand1 < 1)
               nSubsidy = rand1 + 1 * COIN;
               else if(rand1 > 1)
               nSubsidy = rand1 * COIN;
       }
       else if(nHeight < 240000)     
       {
               cseed_str = prevHash.ToString().substr(6,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand2 = generateMTRandom(seed, 300);
               if(rand2 < 2)
               nSubsidy = rand2 + 2 * COIN;
               else if(rand2 > 2)
               nSubsidy = rand2 * COIN;
       }
       else if(nHeight < 320000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand3 = generateMTRandom(seed, 200);
               if(rand3 < 3)
               nSubsidy = rand3 + 3 * COIN;
               else if(rand3 > 3)
               nSubsidy = rand3 * COIN;
       }
       else if(nHeight < 400000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand4 = generateMTRandom(seed, 100);
               if(rand4 < 4)
               nSubsidy = rand4 + 4 * COIN;
               else if(rand4 > 4)
               nSubsidy = rand4 * COIN;
       }
       else if(nHeight < 480000)     
       {
               cseed_str = prevHash.ToString().substr(6,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand5 = generateMTRandom(seed, 50);
               if(rand5 < 5)
               nSubsidy = rand5 + 5 * COIN;
               else if(rand5 > 5)
               nSubsidy = rand5 * COIN;
       }
       else if(nHeight < 560000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand6 = generateMTRandom(seed, 25);
               if(rand6 < 6)
               nSubsidy = rand6 + 6 * COIN;
               else if(rand6 > 6)
               nSubsidy = rand6 * COIN;
       }
       else if(nHeight < 600000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand1 = generateMTRandom(seed, 14);
               if(rand7 < 1)
               nSubsidy = rand7 + 7 * COIN;
               else if(rand7 > 7)
               nSubsidy = rand7 * COIN;
       }


        nSubsidy >>= (nHeight / 1000000);

   return nSubsidy;
}
tripppn
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
July 28, 2014, 04:23:28 AM
 #63

Code:
int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash)
{
       int64 nSubsidy = 10 * COIN;

       std::string cseed_str = prevHash.ToString().substr(7,7);
       const char* cseed = cseed_str.c_str();
       long seed = hex2long(cseed);
       int rand = generateMTRandom(seed, 800);
       int rand1 = 0;
       int rand2 = 0;
       int rand3 = 0;
       int rand4 = 0;
       int rand5 = 0;
       int rand6 = 0;
       int rand7 = 0;

     
       if(nHeight < 80000)   
       {
               nSubsidy = rand * COIN;
       }



       else if(nHeight < 160000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand1 = generateMTRandom(seed, 400);
               if(rand1 < 1)
               nSubsidy = rand1 + 1 * COIN;
               else if(rand1 > 1)
               nSubsidy = rand1 * COIN;
       }
       else if(nHeight < 240000)     
       {
               cseed_str = prevHash.ToString().substr(6,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand2 = generateMTRandom(seed, 300);
               if(rand2 < 2)
               nSubsidy = rand2 + 2 * COIN;
               else if(rand2 > 2)
               nSubsidy = rand2 * COIN;
       }
       else if(nHeight < 320000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand3 = generateMTRandom(seed, 200);
               if(rand3 < 3)
               nSubsidy = rand3 + 3 * COIN;
               else if(rand3 > 3)
               nSubsidy = rand3 * COIN;
       }
       else if(nHeight < 400000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand4 = generateMTRandom(seed, 100);
               if(rand4 < 4)
               nSubsidy = rand4 + 4 * COIN;
               else if(rand4 > 4)
               nSubsidy = rand4 * COIN;
       }
       else if(nHeight < 480000)     
       {
               cseed_str = prevHash.ToString().substr(6,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand5 = generateMTRandom(seed, 50);
               if(rand5 < 5)
               nSubsidy = rand5 + 5 * COIN;
               else if(rand5 > 5)
               nSubsidy = rand5 * COIN;
       }
       else if(nHeight < 560000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand6 = generateMTRandom(seed, 25);
               if(rand6 < 6)
               nSubsidy = rand6 + 6 * COIN;
               else if(rand6 > 6)
               nSubsidy = rand6 * COIN;
       }
       else if(nHeight < 600000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand1 = generateMTRandom(seed, 14);
               if(rand7 < 1)
               nSubsidy = rand7 + 7 * COIN;
               else if(rand7 > 7)
               nSubsidy = rand7 * COIN;
       }


        nSubsidy >>= (nHeight / 1000000);

   return nSubsidy;
}

I don't speak Spanish.

“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.”
― Frank Zappa
DonQuijote
Legendary
*
Offline Offline

Activity: 1551
Merit: 1002


♠ ♥ ♣ ♦ < ♛♚&#


View Profile
July 28, 2014, 04:23:37 AM
 #64

Code:
int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash)
{
       int64 nSubsidy = 10 * COIN;

       std::string cseed_str = prevHash.ToString().substr(7,7);
       const char* cseed = cseed_str.c_str();
       long seed = hex2long(cseed);
       int rand = generateMTRandom(seed, 800);
       int rand1 = 0;
       int rand2 = 0;
       int rand3 = 0;
       int rand4 = 0;
       int rand5 = 0;
       int rand6 = 0;
       int rand7 = 0;

     
       if(nHeight < 80000)   
       {
               nSubsidy = rand * COIN;
       }



       else if(nHeight < 160000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand1 = generateMTRandom(seed, 400);
               if(rand1 < 1)
               nSubsidy = rand1 + 1 * COIN;
               else if(rand1 > 1)
               nSubsidy = rand1 * COIN;
       }
       else if(nHeight < 240000)     
       {
               cseed_str = prevHash.ToString().substr(6,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand2 = generateMTRandom(seed, 300);
               if(rand2 < 2)
               nSubsidy = rand2 + 2 * COIN;
               else if(rand2 > 2)
               nSubsidy = rand2 * COIN;
       }
       else if(nHeight < 320000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand3 = generateMTRandom(seed, 200);
               if(rand3 < 3)
               nSubsidy = rand3 + 3 * COIN;
               else if(rand3 > 3)
               nSubsidy = rand3 * COIN;
       }
       else if(nHeight < 400000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand4 = generateMTRandom(seed, 100);
               if(rand4 < 4)
               nSubsidy = rand4 + 4 * COIN;
               else if(rand4 > 4)
               nSubsidy = rand4 * COIN;
       }
       else if(nHeight < 480000)     
       {
               cseed_str = prevHash.ToString().substr(6,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand5 = generateMTRandom(seed, 50);
               if(rand5 < 5)
               nSubsidy = rand5 + 5 * COIN;
               else if(rand5 > 5)
               nSubsidy = rand5 * COIN;
       }
       else if(nHeight < 560000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand6 = generateMTRandom(seed, 25);
               if(rand6 < 6)
               nSubsidy = rand6 + 6 * COIN;
               else if(rand6 > 6)
               nSubsidy = rand6 * COIN;
       }
       else if(nHeight < 600000)     
       {
               cseed_str = prevHash.ToString().substr(7,7);
               cseed = cseed_str.c_str();
               seed = hex2long(cseed);
               rand1 = generateMTRandom(seed, 14);
               if(rand7 < 1)
               nSubsidy = rand7 + 7 * COIN;
               else if(rand7 > 7)
               nSubsidy = rand7 * COIN;
       }


        nSubsidy >>= (nHeight / 1000000);

   return nSubsidy;
}

 Wink

THE INGENIOUS GENTLEMAN DON QUIXOTE OF LA MANCHA
♠ ♥ ♣ ♦ < ♛♚♝♞♜ BTC tip: 39gUUFdJBdKWXnLoh3PMNX9eUz3DwakBKq
tripppn
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
July 28, 2014, 04:44:55 AM
 #65

15 more mins??

“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.”
― Frank Zappa
workminer
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
July 28, 2014, 04:49:11 AM
 #66

12 min left Cheesy
apmapm12
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
July 28, 2014, 04:50:08 AM
 #67

10 mins!
antonio8
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000


View Profile
July 28, 2014, 04:57:44 AM
 #68

Hope Hard Core Miners is ready

If you are going to leave your BTC on an exchange please send it to this address instead 1GH3ub3UUHbU5qDJW5u3E9jZ96ZEmzaXtG, I will at least use the money better than someone who steals it from the exchange. Thanks Wink
apmapm12
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
July 28, 2014, 04:59:44 AM
 #69

Hope Hard Core Miners is ready

Agreed me too
apmapm12
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
July 28, 2014, 05:01:02 AM
 #70

Mystery time?
tripppn
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
July 28, 2014, 05:01:44 AM
 #71

IT'S TIME!!!

“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.”
― Frank Zappa
MysteryCoin.org (OP)
Newbie
*
Offline Offline

Activity: 112
Merit: 0


View Profile
July 28, 2014, 05:02:02 AM
 #72


http://www.mysterycoin.org/1.png
 http://www.mysterycoin.org/windows.png  http://www.mysterycoin.org/github.png
rhkazani1
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500



View Profile
July 28, 2014, 05:03:16 AM
 #73

Any pools up yet?
bigc1984
Hero Member
*****
Offline Offline

Activity: 658
Merit: 534


View Profile
July 28, 2014, 05:04:25 AM
 #74

slooooow download on wallet
workminer
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
July 28, 2014, 05:04:38 AM
 #75

which pool alive?
bigc1984
Hero Member
*****
Offline Offline

Activity: 658
Merit: 534


View Profile
July 28, 2014, 05:06:32 AM
 #76



{
"blocks" : 64,
"currentblocksize" : 0,
"currentblocktx" : 0,
"difficulty" : 214.66265754,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"pooledtx" : 0,
"testnet" : false
}
antonio8
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000


View Profile
July 28, 2014, 05:06:43 AM
 #77

Up and Solo'ing. Found 3 blocks so far.

If you are going to leave your BTC on an exchange please send it to this address instead 1GH3ub3UUHbU5qDJW5u3E9jZ96ZEmzaXtG, I will at least use the money better than someone who steals it from the exchange. Thanks Wink
tripppn
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
July 28, 2014, 05:09:35 AM
 #78

So much for CPU mining

{
"blocks" : 73,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 340.62818509,
"errors" : "",
"generate" : true,
"genproclimit" : -1,
"hashespersec" : 408680,
"pooledtx" : 0,
"testnet" : false
}

Common pools!

“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.”
― Frank Zappa
workminer
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
July 28, 2014, 05:12:39 AM
 #79

algo?
sha-256?
rhkazani1
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500



View Profile
July 28, 2014, 05:12:50 AM
 #80

algo?
sha-256?


Yes
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 »  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!