Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- rem v1.4 -- aesthetic changes
- rem Note: This is for a low-end, Nvidia GPU miner
- rem (CUDAMINER) on the official TacoCoin (TCO) mining
- rem pool.
- echo ===================================================
- echo ------ TACO'S SUPER AWESOME MINER BAT THING -------
- echo ================MADE FOR CUDAMINER=================
- 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. Let your cares slip away!
- echo ===================================================
- echo Coded by that_taco_guy - http://thattacoguy.net
- echo All Rights Reserved (2014)
- pause
- cls
- 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 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 1a) Same port -- This mines at a lower GPU rate.
- echo 2) Port 3032 -- This directs to a DIFFICULTY 23 mine.
- echo 2a) Same port -- This mines at a lower GPU rate.
- echo 3) Port 2356 -- This directs to a DIFFICULTY 256 mine.
- echo 3a) Same port -- This mines at a lower GPU rate.
- echo ===================================================
- SET /p x=Please enter your choice (1, 1a, 2, 2a, 3 or 3a):
- if %x%==1 goto fastdiff8
- if %x%==1a goto slowdiff8
- if %x%==2 goto fastdiff23
- if %x%==2a goto slowdiff23
- if %x%==3 goto fastdiff256
- if %x%==3a goto fastdiff8256
- :fastdiff8
- cudaminer -H 1 -i 0 -l F4x3 -C 1 -o stratum+tcp://taco.mineempire.com:3008 -u %user% -p %pass%
- goto end
- :slowdiff8
- cudaminer -H 1 -i 0 -l F2x2 -C 1 -o stratum+tcp://taco.mineempire.com:3008 -u %user% -p %pass%
- goto end
- :fastdiff23
- cudaminer -H 1 -i 0 -l F4x3 -C 1 -o stratum+tcp://taco.mineempire.com:3032 -u %user% -p %pass%
- goto end
- :slowdiff23
- cudaminer -H 1 -i 0 -l F2x2 -C 1 -o stratum+tcp://taco.mineempire.com:3032 -u %user% -p %pass%
- goto end
- :fastdiff256
- cudaminer -H 1 -i 0 -l F4x3 -C 1 -o stratum+tcp://taco.mineempire.com:3256 -u %user% -p %pass%
- goto end
- :slowdiff256
- cudaminer -H 1 -i 0 -l F2x2 -C 1 -o stratum+tcp://taco.mineempire.com:3256 -u %user% -p %pass%
- goto end
- :end
- echo The mining process has terminated!
- echo How wonderful.
- pause
Advertisement
Add Comment
Please, Sign In to add comment