Pages:
Author

Topic: [ANN] StarTrek insipred coins =) and mining links (Low Diff) Nice Bounties! - page 30. (Read 60751 times)

hero member
Activity: 966
Merit: 526
🐺Dogs for President🐺
I have also been using the scrypt-jane_gpu.zip miner

I launch it with this,
Code:
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
ybcminer --Nfmin 4 --Nfmax 30 --StartT 1377557876

the first time you run the batch file above you will need to manually add the URL and PW.  and then save a config file same as CGminer.  by pressing "s" then "w", then enter, enter.

runs like a dream.  no issues, no need to rename the exe.
sr. member
Activity: 354
Merit: 250
Big thanks to bitcoinextra for the miner Smiley Also is there a 32 bit version of a pool miner for gpl or did i miss it in the sea of threads?
member
Activity: 99
Merit: 10
Sorry deamonfox caught that quick I thought I fix it fast enough.

That was a simple copy and paste error. On the StartT value but it is very important not to mess that up.

Sorry again but this should work :

scrypt-jane miner at http://rghost.ru/48162507



Pool mining:
Code:
ybcminer --scrypt -o gplcoin.com:8888 -u yourworker -p yourpassword --Nfmin 4 --Nfmax 30 --StartT 1377557832 -I 17

Sole Mining:Make sure you have the GPL wallet software running and sync for this.

Code:
ybcminer --scrypt -o localhost:8344 -u yourworker -p yourpassword --Nfmin 4 --Nfmax 30 --StartT 1377557832 -I 17
legendary
Activity: 1064
Merit: 1000
I have add those coins to Crypto-currency directory.

Please submit any new info, pools, exchanges.

Thank you! Smiley

104 coins!!

When CCE3 is finished , I had planned on supporting all the coins.

104....I am going to need some more VPS  Cheesy
legendary
Activity: 1124
Merit: 1013
ParalleCoin's ruler from the shadow
I have add those coins to Crypto-currency directory.

Please submit any new info, pools, exchanges.

Thank you! Smiley
legendary
Activity: 1246
Merit: 1000
So how important is the StartT parameter?
Code:
unsigned char GetNfactor(unsigned int nTimestamp) {
    int l = 0;
    if (nTimestamp <= StartT)
        return 4;
    unsigned long int s = nTimestamp - StartT;
    while ((s >> 1) > 3) {
      l += 1;
      s >>= 1;
    }
    s &= 3;
    int n = (l * 170 + s * 25 - 2320) / 100;
    if (n < 0) n = 0;
    if (n > 255)
        printf("GetNfactor(%d) - something wrong(n == %d)\n", nTimestamp, n);
    unsigned char N = (unsigned char)n;
      if(N    if(N>maxNfactor) return maxNfactor;
    return N;
}
if StartT will be wrong, n factor will be calculated wrong ....
legendary
Activity: 1064
Merit: 1000
1377557832 is the official Chain start time set in main.cpp of the GPL source code:


Code:
int64 nChainStartTime = 1377557832;

So that is the start time I used in both the GPU and CPU miners.

Edit: Also the stratum software in the pool uses this start time.
hero member
Activity: 630
Merit: 500
I have been using this scrypt-jane miner at http://rghost.ru/48162507

After the download I renamed the .exe to GPLminer  then I put the scrypt-jane folder in easy to find place so when using your cmd prompt you navigate to it easy. Once you are in your cmd prompt, navigate to the folder the GPLminer.exe file is in. Then start it up with this cmd line to mine on the pool. (copy and paste if you need to)

GPLminer --scrypt -o gplcoin.com:8888 -u yourworker -p yourpassword --Nfmin 4 --Nfmax 30 --StartT 1377557832 -I 17

To mine solo use this: Make sure you have the GPL wallet software running and sync for this.

GPLminer --scrypt -o localhost:8344 -u yourworker -p yourpassword --Nfmin 4 --Nfmax 30 --StartT 1377557832 -I 17


I have been using it on a Win8 64-bit Machine that I use for mining new coins seems everything has been stable so far for the 2 days I have been mining. (Solo and Pool mining)

I Will be throwing another machine on the pool soon once maintenance is done. Grin

Hope that helps people that have not been able to compile the GPL GPUminer that dreamwatcher Kickedass on.

Thanks again for the Pool and Miner. Smiley

Scificoin thanks for the coin, I will keep an eye for the Scificoin exchange.

My spidey sense is tingling that a Marvel theme coin is maybe incoming Roll Eyes

Edit: There is also a Win64 CPUminer thanks to ig0tik3d Wink found below this post vvvv

ybcminer.exe --scrypt --Nfmin 4 --Nfmax 30 --StartT 1377557867 is what i have succesfully been mining with... the value you have was the original launches value... yet it works?

cpu miner for gpl (win64) (if not wrong nChainStartTime = 1377557832  Grin)
https://docs.google.com/file/d/0B9cvOfoOekSdSnUtSmltRVQ2WFk/edit?usp=sharing
example start:
Code:
minerd -a scrypt-jane -o stratum+tcp://gplcoin.com:8888 -u workername -p workerpass

p.s. for gpu miner --Nfmin 4 --Nfmax 30 --StartT 1377557832 (if in source code is right this parameter )

And this has also worked for you? Is this a compile of the source dream put up?

So how important is the StartT parameter?

EDIT: Tested and approved you ROCK ig0tik3d! Post GPL addy you deserve some coin.

Given the issues some have with google docs 404 pages... I have added this to my Mega account as well after adding a start.bat file to it. YOU MUST EDIT THIS FILE WITH YOUR USERNAME AND PASSWORD FOR THE POOL OR YOUR .conf FILE IF SOLO MINING!!!!!

GPL CPU Miner
legendary
Activity: 1246
Merit: 1000
cpu miner for gpl (win64) (if not wrong nChainStartTime = 1377557832  Grin)
https://docs.google.com/file/d/0B9cvOfoOekSdSnUtSmltRVQ2WFk/edit?usp=sharing
example start:
Code:
minerd -a scrypt-jane -o stratum+tcp://gplcoin.com:8888 -u workername -p workerpass

p.s. for gpu miner --Nfmin 4 --Nfmax 30 --StartT 1377557832 (if in source code is right this parameter )
member
Activity: 99
Merit: 10
I have been using this scrypt-jane miner at http://rghost.ru/48162507

After the download I renamed the .exe to GPLminer  then I put the scrypt-jane folder in easy to find place so when using your cmd prompt you navigate to it easy. Once you are in your cmd prompt, navigate to the folder the GPLminer.exe file is in. Then start it up with this cmd line to mine on the pool. (copy and paste if you need to)

GPLminer --scrypt -o gplcoin.com:8888 -u yourworker -p yourpassword --Nfmin 4 --Nfmax 30 --StartT 1377557832 -I 17

To mine solo use this: Make sure you have the GPL wallet software running and sync for this.

GPLminer --scrypt -o localhost:8344 -u yourworker -p yourpassword --Nfmin 4 --Nfmax 30 --StartT 1377557832 -I 17


I have been using it on a Win8 64-bit Machine that I use for mining new coins seems everything has been stable so far for the 2 days I have been mining. (Solo and Pool mining)

I Will be throwing another machine on the pool soon once maintenance is done. Grin

Hope that helps people that have not been able to compile the GPL GPUminer that dreamwatcher Kickedass on.

Thanks again for the Pool and Miner. Smiley

Scificoin thanks for the coin, I will keep an eye for the Scificoin exchange.

My spidey sense is tingling that a Marvel theme coin is maybe incoming Roll Eyes

Edit: There is also a Win64 CPUminer thanks to ig0tik3d Wink found below this post vvvv
member
Activity: 95
Merit: 10
any word on an official site or forums for ufc, ked, or gpl?

Yep!  I thought I already answered a similar question before regarding this.

The domains are purchased but we will not do anything for promotion of the coin until our exchange is up and running.  At the moment we are looking a 2 weeks for beta testing.

In a month or so when the exchange is up and running  (2 weeks is just for beta) we will then begin the onslaught and begin contacting as many forums and scifi, comic, fantasy stores as possible.  We will start to really push for acceptance.  These coins will succeed!

But for now we are low key.  Non of the coins will be abandoned, and there is a wealth of ideas.  But first the exchange is the linchpin.

The exchange will create a whole new world for these coins, without it I can not sell the idea, and the domains are pointless until then.  In 1 month these coins will start to blossom, until then we are not actively not promoting them.
hero member
Activity: 630
Merit: 500
sr. member
Activity: 350
Merit: 250
DTC unofficial team
hero member
Activity: 896
Merit: 500
anyone still mine KED? is this coin still alive?

I started back yesterday when the diff was at .02...it's now up to .12
hero member
Activity: 781
Merit: 501
anyone still mine KED? is this coin still alive?
sr. member
Activity: 275
Merit: 250
They still mine great using GPUs... mined a shit ton yesterday, solo...
hero member
Activity: 630
Merit: 500
I need more Latinum Now ! Wheres my win 7 x64 pool miner? Thats it i am throwing a fit! Cassie kicks screams and throws here self on the floor crying ..... < End Sarcasm >

Compiling for Win 64 has been a no go... same issues as dream... after several attempts, changes and compiles... errors still.

Work in progress... unlesssomeone else more adept can step in and make these for each CPU optimization.
member
Activity: 99
Merit: 10
So far when I came home from school I notice that everybodys hashpower has went down 20-30% on the mining pool.

Can anyone confirm this or Im just crazy Shocked

If this is true then this might be like copperbars where the GPU mining gets less proficient.

Like every 24-36 hours the GPU miners becomes less proficient so mining with CPU will be the only proficient way to get GPL maybe.

A GPL CPUminer for windows might not be a bad idea. Wink

If the coin is like copperbars.
sr. member
Activity: 354
Merit: 250
I need more Latinum Now ! Wheres my win 7 x64 pool miner? Thats it i am throwing a fit! Cassie kicks screams and throws here self on the floor crying ..... < End Sarcasm >
sr. member
Activity: 261
Merit: 250
Interesting.....
any word on an official site or forums for ufc, ked, or gpl?
Pages:
Jump to: