Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- rem v1.3 -- aesthetic changes
- rem This is a custom CPU miner .bat for MINERD
- rem for the official TacoCoin (TCO) Mining Pool.
- echo ===================================================
- echo ------ TACO'S SUPER AWESOME MINER BAT THING -------
- echo =================MADE FOR MINERD===================
- echo ===========(TACOCOIN MINING FOR WEEKS!)============
- echo ===================================================
- echo IMPORTANT NOTICE: This .bat stores NO INFORMATION,
- echo meaning you don't have to worry about any of your
- echo precious usernames, workers or passwords being
- echo compromised. Use carefree! : class="re0">D
- echo ===================================================
- echo Coded by that_taco_guy - http://thattacoguy.net
- echo All Rights Reserved (2014)
- pause
- echo ===================================================
- echo Using TacoCoin's new NOMP system, you now have to
- echo the address which you want to use to mine,
- echo depositing automatically after a certain amount.
- echo No workers needed.
- echo ===================================================
- SET /p user=Please enter your TacoCoin Address:
- cls
- echo ===================================================
- echo Using TacoCoin's new NOMP system, the password can
- echo anything you want, for now. Enter anything.
- echo ===================================================
- SET /p pass=Please enter your Password:
- cls
- echo ===================================================
- echo You can set the amount of CPUs which you want to
- echo use in the CPU mining process.
- echo ===================================================
- SET /p cpu=Please enter the amount of CPUs(1-4):
- echo ===================================================
- echo Using TacoCoin's new NOMP system, you can now mine
- echo 3 different difficulties on 3 different ports.
- echo ===================================================
- echo Your choices are listed below:
- echo 1) Port 3008 -- This directs to a DIFFICULTY 8 mine.
- echo 2) Port 3032 -- This directs to a DIFFICULTY 23 mine.
- echo 3) Port 2356 -- This directs to a DIFFICULTY 256 mine.
- echo ===================================================
- SET /p x=Please enter your choice (1, 2 or 3):
- if %x%==1 goto diff8
- if %x%==2 goto diff23
- if %x%==3 goto diff256
- :diff8
- minerd -o stratum+tcp://taco.mineempire.com:3008 -u %user% -p %pass% -t %cpu%
- goto end
- :diff23
- minerd -o stratum+tcp://taco.mineempire.com:3032 -u %user% -p %pass% -t %cpu%
- goto end
- :diff256
- minerd -o stratum+tcp://taco.mineempire.com:3256 -u %user% -p %pass% -t %cpu%
- goto end
- :end
- pause
Advertisement
Add Comment
Please, Sign In to add comment