Hi Fullzero! Great job!! Thank you.
New coin is out there SIGT signatum. Can you add it please?
I see an awful lot of requests for Fullzero to add coins. Jeez people just add them yourself! He doesn't know or probably even care what coin your mining.
It's REALLY REALLY REALLY REALLY easy to add or even remove coins from 1bash.
I think of 1bash as a template that I can tailor to my own needs.
LOL just my opinion....
I will add it to the list.
Anyone who uses a COIN they added themselves please post the code and save me time adding it in the future.
Also if you want a COIN selection added please research and find a pool you want to use with that COIN; to save me the time doing that as well.
It is easy to add a coin to nvOC IF it uses the same algorithm as an existing coin.
To anyone who doesn't know how to add a coin. First find out what algorithm it uses. If it uses the equihash algo for example, find the following code about 2/3 to the end of 1bash and copy it and past it, then change all of the "ZEC" in the new code to the coin you want to mine (excluding HCD='/home/m1/zec/miner'-leave that alone):
if [ $COIN == "ZEC" ]
then
HCD='/home/m1/zec/miner'
ZECADDR="$ZEC_ADDRESS.$ZEC_WORKER"
until $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $ZEC_POOL --user $ZECADDR --pass z --port $ZEC_PORT;
do
echo "FAILURE; reinit in 5" >&2
sleep 5
done
fi
So it would look like:
if [ $COIN == "NEWCOIN" ]
then
HCD='/home/m1/zec/miner'
NEWCOINADDR="$NEWCOIN_ADDRESS.$NEWCOIN_WORKER"
until $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $NEWCOIN_POOL --user $NEWCOINADDR --pass z --port $NEWCOIN_PORT;
do
echo "FAILURE; reinit in 5" >&2
sleep 5
done
fi
Do the same for the address and pool area towards the beginning of 1bash.
However, I haven't figured out how to add a new algorithm to the mix. I also wanted to try out this SIGT. I downloaded the new version of ccminer 2.2 that others are using and followed their guide on adding the .bat file, but couldn't get it to run.
Maybe a guide on adding new miner software would save you some time in the future. This is a great mining OS. The downside is that it attracts many newer miners like myself.

Thanks for your help.