Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
S_tring
on 22/06/2014, 16:19:07 UTC

Great work, running fine.

Are you working on integrating this into an auto switcher for ccMiner?
Well, if I have some more free time. ATM I like the profit calc part of it a little bit more. But its already a nice base to start with, even though I have the command prompt handling and gpu monitoring part already, just need to link everything up, but that has already proven to be a PITA. But as you all know, donations might be the motivator to overcome that Tongue

OK. Is there any way you could have your app generate a text file in it's directory, with the 3 character code of the coin that is currently top of the list? Something that simple?

I have my miner restart itself every 15 minutes with the code below in the bat file. I'm just wondering if I could have it read your output file to decide which coin to mine.

Code:
@echo off
set app=ccminer.exe
set algo=jackpot
set address=stratum+tcp://erebor.dwarfpool.com:3352
set user=JPC_ADDRESS_HERE
set password=x
:start
  start "" %app% -a %algo% -s 1 -d 0,1,2,3,4 -o %address% -u %user% -p %password% -q
  timeout 900   
  taskkill /f /im %app%
  timeout 5
goto start