Bitcoin Forum
May 04, 2024, 06:16:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 5 6 »  All
  Print  
Author Topic: [ANN][HUC] HunterCoin - Human Mine-able Crypto Currency GameWorld  (Read 38431 times)
sdp
Sr. Member
****
Offline Offline

Activity: 469
Merit: 280



View Profile WWW
December 29, 2013, 11:55:40 PM
 #41

Don't just wait and see.  Download the client and point cgminer at it.  You can try it out.  If you need some testnet huntercoins to get you started in the game put your testnet huntercoin address here.  I ended up with plenty.

sdp


Coinsbank: Left money in their costodial wallet for my signature.  Then they kept the money.
1714803384
Hero Member
*
Offline Offline

Posts: 1714803384

View Profile Personal Message (Offline)

Ignore
1714803384
Reply with quote  #2

1714803384
Report to moderator
"This isn't the kind of software where we can leave so many unresolved bugs that we need a tracker for them." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714803384
Hero Member
*
Offline Offline

Posts: 1714803384

View Profile Personal Message (Offline)

Ignore
1714803384
Reply with quote  #2

1714803384
Report to moderator
1714803384
Hero Member
*
Offline Offline

Posts: 1714803384

View Profile Personal Message (Offline)

Ignore
1714803384
Reply with quote  #2

1714803384
Report to moderator
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 06, 2014, 08:12:52 PM
 #42

Really - should be released in a week or 2
(i know i said, ready in 2 weeks or so 10 times - but we have changed it considerably, which in turn produced new bugs)

BitcoinFX
Legendary
*
Offline Offline

Activity: 2646
Merit: 1720


https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF


View Profile WWW
January 06, 2014, 09:14:47 PM
Last edit: January 31, 2014, 09:05:16 PM by BitcoinFX
 #43

Really - should be released in a week or 2
(i know i said, ready in 2 weeks or so 10 times - but we have changed it considerably, which in turn produced new bugs)


Great stuff ! I wonder how long it will take the Exilecoin guys to build a bot for Huntercoin ?  Grin

I really enjoyed playing this on the testnet though and I hope the 'non-beta' gets a solid hash rate and lots of players / supporters.

In many respects this project is more important than Bitcoin and I'm being serious - the potential and innovation here is huge. Gratz !

"Bitcoin OG" 1JXFXUBGs2ZtEDAQMdZ3tkCKo38nT2XSEp | Bitcoin logo™ Enforcer? | Bitcoin is BTC | CSW is NOT Satoshi Nakamoto | I Mine BTC, LTC, ZEC, XMR and GAP | BTC on Tor addnodes Project | Media enquiries : Wu Ming | Enjoy The Money Machine | "You cannot compete with Open Source" and "Cryptography != Banana" | BSV and BCH are COUNTERFEIT.
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 06, 2014, 10:22:12 PM
 #44

Really - should be released in a week or 2
(i know i said, ready in 2 weeks or so 10 times - but we have changed it considerably, which in turn produced new bugs)


Great stuff ! I wonder how long it will take the Exilecoin guys to build a bot for Huntercoin ?  Grin

I really enjoyed playing this on the testnet though and I hope the 'non-beta' gets a solid hash rate and lots of players / supporters.

In many respects this project is more important then Bitcoin and I'm being serious - the potential and innovation here is huge. Gratz !

Thanks for that

please check PM for a final closed test

snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 07, 2014, 08:08:50 AM
 #45

Really - should be released in a week or 2
(i know i said, ready in 2 weeks or so 10 times - but we have changed it considerably, which in turn produced new bugs)


http://www.youtube.com/watch?v=XY5KTVA_2ys

snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 08, 2014, 07:05:13 PM
 #46

HUC LOGO


superresistant
Legendary
*
Offline Offline

Activity: 2128
Merit: 1120



View Profile
January 10, 2014, 03:07:29 PM
 #47

Nice logo. Congrats.
sdp
Sr. Member
****
Offline Offline

Activity: 469
Merit: 280



View Profile WWW
January 11, 2014, 03:07:37 AM
 #48

The numbers look better when they have thousand separators in them:

 Grin Grin Grin


diff -r -u huntercoin-orig/src/qt/bitcoinunits.cpp huntercoin-modified/src/qt/bitcoinunits.cpp
--- huntercoin-orig/src/qt/bitcoinunits.cpp   2013-09-26 18:21:10.000000000 -0300
+++ huntercoin-modified/src/qt/bitcoinunits.cpp   2014-01-10 11:42:38.000000000 -0300
@@ -105,6 +105,12 @@
         ++nTrim;
     remainder_str.chop(nTrim);
 
+    for (int i = 3; i < remainder_str.length(); i += 3) {
+       remainder_str.insert(i++, ',');
+    }
+    for (int i = quotient_str.length()-3; i > 0; i -= 3) {
+       quotient_str.insert(i, ',');
+    }
     if (n < 0)
         quotient_str.insert(0, '-');
     else if (fPlus && n > 0)
@@ -128,12 +134,12 @@
     {
         return false; // More than one dot
     }
-    QString whole = parts[0];
+    QString whole = parts[0].remove(QChar(','));
     QString decimals;
 
     if(parts.size() > 1)
     {
-        decimals = parts[1];
+        decimals = parts[1].remove(QChar(','));
     }
     if(decimals.size() > num_decimals)
     {


Coinsbank: Left money in their costodial wallet for my signature.  Then they kept the money.
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 11, 2014, 05:55:12 PM
Last edit: January 11, 2014, 07:57:31 PM by snailbrain
 #49

The numbers look better when they have thousand separators in them:

 Grin Grin Grin


diff -r -u huntercoin-orig/src/qt/bitcoinunits.cpp huntercoin-modified/src/qt/bitcoinunits.cpp
--- huntercoin-orig/src/qt/bitcoinunits.cpp   2013-09-26 18:21:10.000000000 -0300
+++ huntercoin-modified/src/qt/bitcoinunits.cpp   2014-01-10 11:42:38.000000000 -0300
@@ -105,6 +105,12 @@
         ++nTrim;
     remainder_str.chop(nTrim);
 
+    for (int i = 3; i < remainder_str.length(); i += 3) {
+       remainder_str.insert(i++, ',');
+    }
+    for (int i = quotient_str.length()-3; i > 0; i -= 3) {
+       quotient_str.insert(i, ',');
+    }
     if (n < 0)
         quotient_str.insert(0, '-');
     else if (fPlus && n > 0)
@@ -128,12 +134,12 @@
     {
         return false; // More than one dot
     }
-    QString whole = parts[0];
+    QString whole = parts[0].remove(QChar(','));
     QString decimals;
 
     if(parts.size() > 1)
     {
-        decimals = parts[1];
+        decimals = parts[1].remove(QChar(','));
     }
     if(decimals.size() > num_decimals)
     {


ok thanks Cheesy

i do think though that decimals don't need separators?


also, there could be an extra delay before release.. (more news to come)

snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 25, 2014, 10:51:19 PM
Last edit: January 25, 2014, 11:08:19 PM by snailbrain
 #50

Huntercoin Client is complete

Added:

Crown of Fortune - 1 Item on the map, of which a character can collect. He/She will receive 0.25 HUCs per block until he is killed or banks.. If he is killed he will drop the crown at his feet, and it can be picked up by someone else. The crown will drop if the character enters the Spawn/Bank Area.

Dual Algo - Huntercoin is mined by both SHA256 and Scrypt Miners (as well as Human). PoW/PoW/PoW (if human is PoW). Each algo targets 2 minute blocks, averaging 1 minute per block. Set algo=scrypt in huntercoin.conf to choose which algo you wish to mine.
Both Algos can be Merge Mined with compatible cryptos

See Wiki http://wiki.chronokings.com/index.php?title=Mining

Release date will be confirmed later..

superresistant
Legendary
*
Offline Offline

Activity: 2128
Merit: 1120



View Profile
January 26, 2014, 10:31:28 AM
 #51

cool
BitJohn
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1001

@Bit_John


View Profile
January 26, 2014, 10:56:59 AM
 #52

Got my attention love this concept.
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 27, 2014, 06:31:54 PM
 #53

Release Thread Created - eta 7 days. Will update with date and time ASAP

https://bitcointalk.org/index.php?topic=435170.0


oncebitcoinedtwiceshy
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
January 27, 2014, 06:41:54 PM
 #54

Really glad to see this one progressing. All the very best of luck for the launch and hope it gets the attention it deserves!
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
January 31, 2014, 07:12:50 PM
Last edit: January 31, 2014, 09:20:49 PM by snailbrain
 #55

Release Date Confirmed Saturday 1st Feb 7PM GMT

Giveaway threads will be ready on release  (on another forum due to new rules here)

BitcoinFX
Legendary
*
Offline Offline

Activity: 2646
Merit: 1720


https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF


View Profile WWW
January 31, 2014, 09:09:31 PM
 #56

Release Date Confirmed Saturday 1st Feb 7PM GMT

Giveaway threads will be read on release  (on another forum due to new rules here)

Great news!

addnode=144.76.142.46

Cheers!  Grin

"Bitcoin OG" 1JXFXUBGs2ZtEDAQMdZ3tkCKo38nT2XSEp | Bitcoin logo™ Enforcer? | Bitcoin is BTC | CSW is NOT Satoshi Nakamoto | I Mine BTC, LTC, ZEC, XMR and GAP | BTC on Tor addnodes Project | Media enquiries : Wu Ming | Enjoy The Money Machine | "You cannot compete with Open Source" and "Cryptography != Banana" | BSV and BCH are COUNTERFEIT.
albertdros
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
February 01, 2014, 01:33:15 AM
 #57

its not quite clear to me if i can mine this in a normal way with gpu, or that i have to play the game in the wallet to mine, or if i can do both.
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
February 01, 2014, 01:39:55 AM
 #58

its not quite clear to me if i can mine this in a normal way with gpu, or that i have to play the game in the wallet to mine, or if i can do both.

both if you want

albertdros
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
February 01, 2014, 09:42:33 AM
 #59

its not quite clear to me if i can mine this in a normal way with gpu, or that i have to play the game in the wallet to mine, or if i can do both.

both if you want

but then whats the point of playing the game when you can just point your rig to it?
timmmers
Sr. Member
****
Offline Offline

Activity: 1176
Merit: 265



View Profile
February 01, 2014, 10:20:00 AM
 #60

its not quite clear to me if i can mine this in a normal way with gpu, or that i have to play the game in the wallet to mine, or if i can do both.

both if you want

but then whats the point of playing the game when you can just point your rig to it?

Have a read at the game info. on the release thread, mined coins are a low % of coins, the majority will be collected ingame. Without looking I think it was 20%/80% ?

This is good as it means pointing my ASIC at it won't do me much good, (so I won't) and we won't have another stupid arms race. Anyone can get coins if they are prepared to work for them on a pretty level playing field. It's more fun than a box of fans sitting in the corner too Wink

             ▄▄▄▄▄▄
         ▄▄███▀▀▀▀███▄▄
      ▄██▀▀          ▀▀██▄
     ██▀       ██       ▀██
    ██        ██          ██
   ██        ██   ██       ██
  ▐█▌       ██ ▄▄▄ ██      ▐█▌
  ██       ██  ███  ██      ██
  ▐█▌     ██         ██    ▐█▌
   ██    ██           ██   ██
    ██  ▀▀             ▀▀ ██
     ██▄                ▄██
      ▀██▄▄          ▄▄██▀
         ▀▀███▄▄▄▄███▀▀
             ▀▀▀▀▀▀
.Akoin













.ONE AFRICA. ONE KOIN..

█▀▀











█▄▄

▀▀█











▄▄█

█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
█  ██████    ▄▄▄▄▄▄▄▄ █
█  ██████    ▄▄▄▄▄▄▄▄ █
█  ██████    ▄▄▄▄▄▄▄▄ █
█            ▄▄▄▄▄▄▄▄ █
█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ █
█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ █
█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ █
█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ █
█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ █
█                     █
█ ▄▄▄▄▄▄              █
█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█













.TELEGRAM
Pages: « 1 2 [3] 4 5 6 »  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!