thattacoguy

TacoCoin MINERD Mining Custom .bat

Jun 5th, 2014
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.57 KB | None | 0 0
  1. @echo off
  2.  
  3. rem v1.3 -- aesthetic changes
  4. rem This is a custom CPU miner .bat for MINERD
  5. rem for the official TacoCoin (TCO) Mining Pool.
  6.  
  7. echo ===================================================
  8. echo ------ TACO'S SUPER AWESOME MINER BAT THING -------
  9. echo =================MADE FOR MINERD===================
  10. echo ===========(TACOCOIN MINING FOR WEEKS!)============
  11. echo ===================================================
  12. echo IMPORTANT NOTICE: This .bat stores NO INFORMATION,
  13. echo meaning you don't have to worry about any of your
  14. echo precious usernames, workers or passwords being
  15. echo compromised. Use carefree! : class="re0">D
  16. echo ===================================================
  17. echo   Coded by that_taco_guy - http://thattacoguy.net
  18. echo             All Rights Reserved (2014)
  19. pause
  20.  
  21. echo ===================================================
  22. echo Using TacoCoin's new NOMP system, you now have to
  23. echo the address which you want to use to mine,
  24. echo depositing automatically after a certain amount.
  25. echo No workers needed.
  26. echo ===================================================
  27. SET /p user=Please enter your TacoCoin Address:
  28. cls
  29.  
  30. echo ===================================================
  31. echo Using TacoCoin's new NOMP system, the password can
  32. echo anything you want, for now. Enter anything.
  33. echo ===================================================
  34. SET /p pass=Please enter your Password:
  35. cls
  36.  
  37. echo ===================================================
  38. echo You can set the amount of CPUs which you want to
  39. echo use in the CPU mining process.
  40. echo ===================================================
  41. SET /p cpu=Please enter the amount of CPUs(1-4):
  42.  
  43. echo ===================================================
  44. echo Using TacoCoin's new NOMP system, you can now mine
  45. echo 3 different difficulties on 3 different ports.
  46. echo ===================================================
  47. echo Your choices are listed below:
  48. echo 1) Port 3008 -- This directs to a DIFFICULTY 8 mine.
  49. echo 2) Port 3032 -- This directs to a DIFFICULTY 23 mine.
  50. echo 3) Port 2356 -- This directs to a DIFFICULTY 256 mine.
  51. echo ===================================================
  52. SET /p x=Please enter your choice (1, 2 or 3):
  53.  
  54. if %x%==1 goto diff8
  55. if %x%==2 goto diff23
  56. if %x%==3 goto diff256
  57.  
  58. :diff8
  59. minerd -o stratum+tcp://taco.mineempire.com:3008 -u %user% -p %pass% -t %cpu%
  60. goto end
  61.  
  62. :diff23
  63. minerd -o stratum+tcp://taco.mineempire.com:3032 -u %user% -p %pass% -t %cpu%
  64. goto end
  65.  
  66. :diff256
  67. minerd -o stratum+tcp://taco.mineempire.com:3256 -u %user% -p %pass% -t %cpu%
  68. goto end
  69.  
  70. :end
  71. pause
Advertisement
Add Comment
Please, Sign In to add comment