thattacoguy

TacoCoin CUDAMINER Mining Custom .bat

Jun 5th, 2014
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 3.09 KB | None | 0 0
  1. @echo off
  2.  
  3. rem v1.4 -- aesthetic changes
  4. rem Note: This is for a low-end, Nvidia GPU miner
  5. rem (CUDAMINER) on the official TacoCoin (TCO) mining
  6. rem pool.
  7.  
  8. echo ===================================================
  9. echo ------ TACO'S SUPER AWESOME MINER BAT THING -------
  10. echo ================MADE FOR CUDAMINER=================
  11. echo ===========(TACOCOIN MINING FOR WEEKS!)============
  12. echo ===================================================
  13. echo IMPORTANT NOTICE: This .bat stores NO INFORMATION,
  14. echo meaning you don't have to worry about any of your
  15. echo precious usernames, workers or passwords being
  16. echo compromised. Let your cares slip away!
  17. echo ===================================================
  18. echo   Coded by that_taco_guy - http://thattacoguy.net
  19. echo             All Rights Reserved (2014)
  20. pause
  21. cls
  22.  
  23. echo ===================================================
  24. echo Using TacoCoin's new NOMP system, you now have to
  25. echo the address which you want to use to mine,
  26. echo depositing automatically after a certain amount.
  27. echo No workers needed.
  28. echo ===================================================
  29. SET /p user=Please enter your TacoCoin Address:
  30. cls
  31.  
  32. echo ===================================================
  33. echo Using TacoCoin's new NOMP system, the password can
  34. echo anything you want, for now. Enter anything.
  35. echo ===================================================
  36. SET /p pass=Please enter your Password:
  37. cls
  38.  
  39. echo ===================================================
  40. echo Using TacoCoin's new NOMP system, you can now mine
  41. echo 3 different difficulties on 3 different ports.
  42. echo ===================================================
  43. echo Your choices are listed below:
  44. echo 1) Port 3008 -- This directs to a DIFFICULTY 8 mine.
  45. echo    1a) Same port -- This mines at a lower GPU rate.
  46. echo 2) Port 3032 -- This directs to a DIFFICULTY 23 mine.
  47. echo    2a) Same port -- This mines at a lower GPU rate.
  48. echo 3) Port 2356 -- This directs to a DIFFICULTY 256 mine.
  49. echo    3a) Same port -- This mines at a lower GPU rate.
  50. echo ===================================================
  51. SET /p x=Please enter your choice (1, 1a, 2, 2a, 3 or 3a):
  52.  
  53. if %x%==1 goto fastdiff8
  54. if %x%==1a goto slowdiff8
  55. if %x%==2 goto fastdiff23
  56. if %x%==2a goto slowdiff23
  57. if %x%==3 goto fastdiff256
  58. if %x%==3a goto fastdiff8256
  59.  
  60. :fastdiff8
  61. cudaminer -H 1 -i 0 -l F4x3 -C 1 -o stratum+tcp://taco.mineempire.com:3008 -u %user% -p %pass%
  62. goto end
  63. :slowdiff8
  64. cudaminer -H 1 -i 0 -l F2x2 -C 1 -o stratum+tcp://taco.mineempire.com:3008 -u %user% -p %pass%
  65. goto end
  66. :fastdiff23
  67. cudaminer -H 1 -i 0 -l F4x3 -C 1 -o stratum+tcp://taco.mineempire.com:3032 -u %user% -p %pass%
  68. goto end
  69. :slowdiff23
  70. cudaminer -H 1 -i 0 -l F2x2 -C 1 -o stratum+tcp://taco.mineempire.com:3032 -u %user% -p %pass%
  71. goto end
  72. :fastdiff256
  73. cudaminer -H 1 -i 0 -l F4x3 -C 1 -o stratum+tcp://taco.mineempire.com:3256 -u %user% -p %pass%
  74. goto end
  75. :slowdiff256
  76. cudaminer -H 1 -i 0 -l F2x2 -C 1 -o stratum+tcp://taco.mineempire.com:3256 -u %user% -p %pass%
  77. goto end
  78.  
  79. :end
  80. echo The mining process has terminated!
  81. echo How wonderful.
  82. pause
Advertisement
Add Comment
Please, Sign In to add comment