Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.15 KB | None | 0 0
  1. # nvOC v0019-1.3 by fullzero
  2.  
  3.  
  4. COIN="ETH"
  5.  
  6. # I highly recommend trying this!!!
  7. PAPAMPI_WTM_AUTO_SWITCH="NO" #( whattomine.com switcher) remember to disable Parallax MODE (_Parallax_MODE="NO")
  8.  
  9. # note!! all selected COINS must HAVE ADDRESSES below
  10. # select which coins to you want to mine (profit switch only using this list of coins [ it will auto switch your COIN selection from this list using whattomine.com info)
  11. WTM_AUTO_SWITCH_COINS="[ 'ZEC', 'ETH' ]"
  12.  
  13. WTM_AUTO_SWITCH_SYNC_INTERVAL="3" # Time to sync with WTM for best coin
  14.  
  15. #Go to [ https://whattomine.com/coins]whattomine ] select your cards, hash rate, power. You can also select to mine base on current, 24 hour, 3 day or a week profit and difficulty. Dont forget to choose same for both profit and difficulty or it will give wrong results. Click calculate, then add .json to coins at the begining of the address after you click calculate!!!
  16. WTM_AUTO_SWITCH_URL="https://whattomine.com/coins.json"
  17.  
  18. Maxximus007_AUTO_TEMPERATURE_CONTROL="YES"
  19.  
  20. IAmNotAJeep_and_Maxximus007_WATCHDOG="NO"
  21.  
  22. # SET OC and POWERLIMIT by ALGO (see end of 1bash for ALGO OC settings)
  23. # for OPT use of PAPAMPI_WTM_AUTO_SWITCH use damNmad_ALGO_SPECIFIC_OC !!
  24. damNmad_ALGO_SPECIFIC_OC="NO"
  25.  
  26. # LOCAL will attach the mining process to the gnome or guake terminal
  27. # REMOTE will leave it unattached / ready for SSH
  28. LOCALorREMOTE="REMOTE" # LOCAL or REMOTE
  29.  
  30. TEAMVIEWER="YES" # YES NO
  31.  
  32. SSH="NO" # YES NO
  33.  
  34. POWERLIMIT="NO" # YES NO
  35.  
  36. POWERLIMIT_WATTS=75
  37.  
  38. __CORE_OVERCLOCK=0
  39. MEMORY_OVERCLOCK=0
  40.  
  41. MANUAL_FAN="NO" # YES NO
  42.  
  43. FAN_SPEED=75 # Set fan speed if MANUAL_FAN="YES"
  44.  
  45. # GLOBAL_WORKERNAME will use a single worker name for all coins
  46. GLOBAL_WORKERNAME="NO" # YES NO
  47.  
  48. # HOST will use the rigs host address
  49. # MAC will use the rigs NIC's MAC address
  50. # CUSTOM will use your own
  51. AUTO_WORKERNAME="HOST" # HOST or MAC or CUSTOM
  52.  
  53. # if AUTO_WORKERNAME="CUSTOM"
  54. CUSTOM_WORKERNAME="nvOC_v0019"
  55.  
  56. # AUTO_UPDATE_CHECKS will enable your rig to pull updates automatically
  57. AUTO_UPDATE_CHECKS="NO" # YES NO
  58.  
  59. # BETA will pull the newest unverified updates
  60. # STABLE will only pull verified updates
  61. AUTO_UPDATE="BETA" # STABLE or BETA
  62.  
  63. AUTO_UPDATE_TIMEOUT_IN_MINUTES=2880
  64.  
  65. _Parallax_MODE="NO" # YES NO
  66.  
  67. pasteBASH="your_PASTE_here"
  68.  
  69. upPASTE_TIMEOUT_IN_MINUTES=30
  70.  
  71. CLEAR_LOGS_ON_BOOT="YES" # YES NO
  72.  
  73. BaliMiner_TELEGRAM_ALERTS="NO" # YES NO
  74.  
  75. TELEGRAM_TYPE="papampi" # kk003 or papampi or BaliMiner
  76.  
  77. TELEGRAM_TIMEOUT_IN_MINUTES=30
  78.  
  79. TELEGRAM_CHATID="your_CHATID_here"
  80.  
  81. TELEGRAM_APIKEY="your_APIKEY_here"
  82.  
  83. # Mine XMR with CPU
  84. plusCPU="NO" # YES NO
  85.  
  86. threadCOUNT="1" # Number of threads for plusCPU: varies per CPU
  87.  
  88. P106_100_FULL_HEADLESS_MODE="NO"
  89.  
  90. AUTO_REBOOT="NO"
  91.  
  92. REBOOT_TIMEOUT_IN_MINUTES=2880 # once every 48 hours
  93.  
  94. # If you are using a slow USB Key
  95. SLOW_USB_KEY_MODE="YES" # YES NO
  96.  
  97. GPUPowerMizerMode_Adjust="NO"
  98.  
  99. # Set PowerMizerMode
  100. GPUPowerMizerMode=1
  101.  
  102. SRR="NO" # YES NO
  103. SRR_SERIAL="000055"
  104. __SRR_SLOT="1"
  105.  
  106.  
  107. #######################################################################################
  108.  
  109. # Maxximus007_AUTO_TEMPERATURE_CONTROL
  110.  
  111. # Set the target temperature; Recommended ranges: 55 - 75. Don't set it too low, if the temperature can't be reached with fan adjustments it will decrease power. If the actual temp is above the target temp this script will up the fan speed. If actual temp is above value set above and fan speed is 100, the script will lower the power limit.
  112.  
  113. TARGET_TEMP=73
  114.  
  115. __FAN_ADJUST=6 # Adjustment size in percent
  116.  
  117. POWER_ADJUST=5 # Adjustment size in watts
  118.  
  119. # Difference in actual temperature allowed before action: Works only if current is BELOW target temp
  120.  
  121. ALLOWED_TEMP_DIFF=3
  122.  
  123. # Restore original power limit if fan speed is lower than this percentage
  124.  
  125. RESTORE_POWER_LIMIT=90
  126.  
  127. # lowest fan speed that will be used
  128.  
  129. MINIMAL_FAN_SPEED=40
  130.  
  131. ########################################################################################
  132. #GLOBAL_WORKERNAME implementation
  133. IPW=$(ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p')
  134. IP_AS_WORKER=$(echo -n $IPW | tail -c -3 | sed 'y/./0/')
  135. MAC=$(ifconfig -a | grep -Po 'HWaddr \K.*$')
  136. MAC_AS_WORKER=$(echo -n $MAC | sed 'y/:/_/')
  137. if [ $GLOBAL_WORKERNAME == "YES" ]
  138. then
  139. if [ $AUTO_WORKERNAME == "HOST" ]
  140. then
  141. WORKERNAME=$IP_AS_WORKER
  142. fi
  143. if [ $AUTO_WORKERNAME == "MAC" ]
  144. then
  145. WORKERNAME=$MAC_AS_WORKER
  146. fi
  147. if [ $AUTO_WORKERNAME == "CUSTOM" ]
  148. then
  149. WORKERNAME=$CUSTOM_WORKERNAME
  150. fi
  151. fi
  152. ########################################################################################
  153.  
  154. # set YOUR ADDRESSES, WORKERS, POOL, INTENSITY and PORT:
  155.  
  156. ZM_or_EWBF="EWBF" # choose ZM or EWBF
  157.  
  158. ZEC_WORKER="$WORKERNAME"
  159. ZEC_ADDRESS="t1RFtQVgJMLMFJhfxsTub95GZGERaxFW3T1"
  160. ZEC_POOL="zec-eu1.nanopool.org"
  161. ZEC_PORT="6666"
  162.  
  163. EWBF_VERSION="3_4" # choose 3_3 or 3_4
  164.  
  165. # change EWBF_PERCENT to alter donation percent for EWBF Miner
  166. EWBF_PERCENT=0
  167.  
  168. #ZClassic
  169. ZCL_WORKER=$WORKERNAME
  170. ZCL_ADDRESS="replace_with_your_ZCL_address"
  171. ZCL_POOL="us.zclmine.pro"
  172. ZCL_PORT="9009"
  173.  
  174. #For Nice Equihash
  175. NICE_EQUIHASH_WORKER=$WORKERNAME
  176. NICE_EQUIHASH_ADDRESS=$BTC_ADDRESS
  177. NICE_EQUIHASH_POOL="equihash.usa.nicehash.com"
  178. NICE_EQUIHASH_PORT="3357"
  179.  
  180. KMD_WORKER=$WORKERNAME
  181. KMD_ADDRESS="replace_with_your_KMD_address"
  182. KMD_POOL="luckpool.org"
  183. KMD_PORT="3857"
  184.  
  185. ZEN_WORKER=$WORKERNAME
  186. ZEN_ADDRESS="replace_with_your_ZEN_address"
  187. ZEN_POOL="luckpool.org"
  188. ZEN_PORT="3057"
  189.  
  190. #For BTX
  191. BTX_WORKER="mikespax"
  192. BTX_ADDRESS="mikespax"
  193. BTX_POOL="stratum+tcp://btx.suprnova.cc:3629"
  194. BTX_INTENSITY="19"
  195.  
  196. #ZDASH or HUSH
  197. HUSH_WORKER=$WORKERNAME
  198. HUSH_ADDRESS="replace_with_your_HUSH_address"
  199. HUSH_POOL="luckpool.org"
  200. HUSH_PORT="3757"
  201.  
  202. #XZC or ZCOIN
  203. ZCOIN_WORKER="Your Miningpoolhub Worker Name"
  204. ZCOIN_ADDRESS="replace_with_your_miningpoolhub_account login name"
  205. ZCOIN_POOL="us-east.lyra2z-hub.miningpoolhub.com:20581"
  206.  
  207. #KRB
  208. KRB_ADDRESS="replace_with_your_KRB_address"
  209. KRB_POOL="stratum+tcp://krb.sberex.com:5555"
  210.  
  211. SIGT_WORKER=$WORKERNAME
  212. SIGT_ADDRESS="replace_with_your_SIGT_address"
  213. SIGT_POOL="stratum+tcp://us.hashbag.cc:8644"
  214. SIGT_INTENSITY="25"
  215.  
  216. SIB_WORKER="Your Suprnova Worker name"
  217. SIB_ADDRESS="Your Suprnova Account name"
  218. SIB_POOL="stratum+tcp://sib.suprnova.cc:3458"
  219. SIB_INTENSITY="21"
  220.  
  221. PXC_WORKER="$WORKERNAME"
  222. PXC_ADDRESS="replace_with_your_GRS_address"
  223. PXC_POOL="stratum+tcp://atlas.phoenixcoin.org:10554"
  224. PXC_INTENSITY="23"
  225.  
  226. # ZPOOL_SKUNK HERE
  227. # if YES ensure you update BTC_ADDRESS
  228. SKUNK_AUTOCONVERT_TO_BTC="YES" #YES NO
  229. SKUNK_WORKER="$WORKERNAME"
  230. SKUNK_ADDRESS=$BTC_ADDRESS
  231. SKUNK_POOL="stratum+tcp://skunk.mine.zpool.ca:8433"
  232. SKUNK_INTENSITY="22"
  233.  
  234. # Used to add worker name on ZPOOL
  235. ZPOOLPASS="$WORKERNAME,c=btc"
  236.  
  237. # ZPOOL uses your BTC_ADDRESS
  238. ZPOOL_LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"
  239. ZPOOL_LYRA2V2_INTENSITY="22"
  240.  
  241. # ZPOOL uses your BTC_ADDRESS
  242. ZPOOL_BLAKE2S_POOL="stratum+tcp://blake2s.mine.zpool.ca:5766"
  243. ZPOOL_BLAKE2S_INTENSITY="21"
  244.  
  245. # ZPOOL uses your BTC_ADDRESS
  246. ZPOOL_EQUIHASH_POOL="equihash.mine.zpool.ca"
  247. ZPOOL_EQUIHASH_PORT="2142"
  248.  
  249. # ZPOOL uses your BTC_ADDRESS
  250. ZPOOL_LBRY_POOL="stratum+tcp://lbc.mine.zpool.ca:3334"
  251. ZPOOL_LBRY_INTENSITY="23"
  252.  
  253. # ZPOOL uses your BTC_ADDRESS
  254. ZPOOL_NEOSCRYPT_POOL="stratum+tcp://neoscrypt.mine.zpool.ca:4233"
  255. ZPOOL_NEOSCRYPT_INTENSITY="22"
  256.  
  257. # ZPOOL uses your BTC_ADDRESS
  258. ZPOOL_SKEIN_POOL="stratum+tcp://skein.mine.zpool.ca:4933"
  259. ZPOOL_SKEIN_INTENSITY="22"
  260.  
  261. #MPH_EQUIHASH
  262. MPH_WORKER="Your Miningpoolhub Worker Name"
  263. MPH_ADDRESS="Your Miningpoolhub account name"
  264. MPH_EQUIHASH_POOL="us-east.equihash-hub.miningpoolhub.com"
  265. MPH_EQUIHASH_PORT="20570"
  266.  
  267. #MPH_ETHASH
  268. MPH_WORKER="Your Miningpoolhub Worker Name"
  269. MPH_ADDRESS="Your Miningpoolhub account name"
  270. MPH_ETHASH_POOL="us-east.ethash-hub.miningpoolhub.com:17020"
  271.  
  272. GRS_WORKER=$WORKERNAME
  273. GRS_ADDRESS="replace_with_your_GRS_address"
  274. GRS_POOL="stratum+tcp://moria.dwarfpool.com:3345"
  275. GRS_INTENSITY="23"
  276.  
  277. XMY_WORKER="Your Miningpoolhub Worker Name"
  278. XMY_ADDRESS="Your Miningpoolhub Account Name"
  279. XMY_POOL="stratum+tcp://us-east1.myriadcoin-groestl.miningpoolhub.com:20479"
  280. XMY_INTENSITY="23"
  281.  
  282. MONA_WORKER="mikespax"
  283. MONA_ADDRESS="mikespax"
  284. MONA_POOL="stratum+tcp://mona.suprnova.cc:2995"
  285. MONA_INTENSITY="19"
  286.  
  287. # if YES ensure you update BTC_ADDRESS
  288. VTC_AUTOCONVERT_TO_BTC="NO" #YES NO
  289. VTC_WORKER="Your Miningpoolhub Worker Name"
  290. VTC_ADDRESS="Your Miningpoolhub Account Name"
  291. VTC_POOL="stratum+tcp://hub.miningpoolhub.com:20507"
  292. VTC_INTENSITY="21"
  293.  
  294.  
  295. BTC_ADDRESS="replace_with_your_BTC_address"
  296.  
  297.  
  298. # NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
  299. NICE_ETHASH_WORKER="$WORKERNAME"
  300. NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  301. GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
  302. NICE_ETHASH_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  303.  
  304. # if YES ensure you update BTC_ADDRESS
  305. DGB_AUTOCONVERT_TO_BTC="NO" #YES NO
  306. DGB_INTENSITY="24"
  307. DGB_WORKER="Your Miningpoolhub Worker Name"
  308. DGB_ADDRESS="Your Miningpoolhub Account Name"
  309. DGB_POOL="stratum+tcp://hub.miningpoolhub.com:20527"
  310.  
  311. LBC_WORKER="mikespax"
  312. LBC_ADDRESS="mikespax"
  313. LBC_POOL="stratum+tcp://lbry.suprnova.cc:6256"
  314. LBC_INTENSITY="19"
  315.  
  316. FTC_WORKER="Your Miningpoolhub Worker Name"
  317. FTC_ADDRESS="Your Miningpoolhub Account Name"
  318. FTC_POOL="stratum+tcp://hub.miningpoolhub.com:20510"
  319. FTC_INTENSITY="23"
  320.  
  321. ORB_WORKER="Your DNB Worker Name"
  322. ORB_ADDRESS="Your DNB Account Name"
  323. ORB_POOL="stratum+tcp://strat.dnb.io:3031"
  324. ORB_INTENSITY="23"
  325.  
  326. ONION_ADDRESS="replace_with_your_ONION_address"
  327. ONION_POOL="stratum+tcp://kawaiipool.party:3633"
  328.  
  329.  
  330. USE_ENVIRONMENTAL_VARIBLES="NO" #YES NO
  331.  
  332. DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="SLASH" # DOT or SLASH # formerly ETHERMINEdotORG
  333.  
  334. CLAYMORE_VERSION="10_0" # choose 10_0 or 9_8 or 9_7 or 9_5 or 9_4 or 8_0
  335.  
  336. ETHMINER_or_GENOIL_or_CLAYMORE="CLAYMORE" # choose ETHMINER or GENOIL or CLAYMORE
  337.  
  338.  
  339. ETH_WORKER="mikespax"
  340. ETH_ADDRESS="0x744d2cb98eBb59A903686EF89A4BE05d1a88d268"
  341. ETH_POOL="eth-eu1.nanopool.org:9999"
  342. ETH_EXTENSION_ARGUMENTS="-dcri 410" # add any additional claymore arguments desired here
  343.  
  344. ETC_WORKER=$WORKERNAME
  345. ETC_ADDRESS="replace_with_your_ETC_address"
  346. ETC_POOL="etc-us-east1.nanopool.org:19999"
  347. ETC_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  348.  
  349. EXP_WORKER=$WORKERNAME
  350. EXP_ADDRESS="replace_with_your_EXP_address"
  351. EXP_POOL="exp-us.dwarfpool.com:81"
  352. EXP_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  353.  
  354. UBQ_WORKER=$WORKERNAME
  355. UBQ_ADDRESS="replace_with_your_UBIQ_address"
  356. UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008"
  357. UBQ_EXTENSION_ARGUMENTS=""
  358.  
  359. MUSIC_WORKER=$WORKERNAME
  360. MUSIC_ADDRESS="replace_with_your_MUSIC_address"
  361. MUSIC_POOL="eus.gmc.epool.io:8008"
  362. MUSIC_EXTENSION_ARGUMENTS=""
  363.  
  364. SOIL_WORKER=$WORKERNAME
  365. SOIL_ADDRESS="replace_with_your_SOIL_address"
  366. SOIL_POOL="stratum+tcp://soil.pool.sexy:9009"
  367. SOIL_EXTENSION_ARGUMENTS=""
  368.  
  369. DUAL_WORKER=$WORKERNAME
  370. DUAL_BTC_ADDRESS=$BTC_ADDRESS
  371. DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  372. DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
  373. DUAL_EXTENSION_ARGUMENTS="-dcri 40"
  374.  
  375. SC_WORKER=$WORKERNAME
  376. SC_ADDRESS="replace_with_your_SIA_address"
  377. SC_POOL="sia-us-east1.nanopool.org:7777"
  378. SC_GW_POOL="sia-us-east1.nanopool.org:9980"
  379.  
  380. DCR_WORKER=$WORKERNAME
  381. DCR_ADDRESS="replace_with_your_DCR_address"
  382. DCR_POOL="stratum+tcp://yiimp.eu:3252"
  383.  
  384. PASC_WORKER=$WORKERNAME
  385. PASC_ADDRESS="replace_with_your_PASC_ACCOUNT"
  386. PASC_POOL="pasc-us-east1.nanopool.org:15555"
  387.  
  388. PASL_WORKER=$WORKERNAME
  389. PASL_ADDRESS="replace_with_your_PASL_ACCOUNT"
  390. PASL_POOL="stratum+tcp://mine.pasl.fairpool.xyz:4009"
  391.  
  392. # if plusCPU is "YES" replace with your XMR info
  393. XMR_WORKER=$WORKERNAME
  394. XMR_ADDRESS="replace_with_your_XMR_address"
  395. XMR_POOL="xmr-us-east1.nanopool.org:14444"
  396.  
  397.  
  398. ######################################################################################
  399.  
  400. # SALFTER_NICEHASH_PROFIT_SWITCHING & SALFTER_MPH_PROFIT_SWITCHING Settings
  401.  
  402. CURRENCY=USD
  403.  
  404. POWER_COST=0.20
  405.  
  406. MINIMUM_PROFIT=0.0
  407.  
  408. MPH_USERNAME=replace_with_your_MPH_username
  409.  
  410. # this is salfters BTC address: 1TipsGocnz2N5qgAm9f7JLrsMqkb3oXe2
  411.  
  412. PAYMENT_ADDRESS=replace_with_your_BTC_address
  413.  
  414. WORKER_NAME=$WORKERNAME
  415.  
  416. PROFIT_CHECK_TIMEOUT=600
  417.  
  418. # ENSURE YOU USE Maxximus007_AUTO_TEMPERATURE_CONTROL for fanspeed
  419.  
  420. daggerhashimoto_POWERLIMIT_WATTS=120
  421. __daggerhashimoto_CORE_OVERCLOCK=180
  422. daggerhashimoto_MEMORY_OVERCLOCK=180
  423.  
  424. equihash_POWERLIMIT_WATTS=120
  425. __equihash_CORE_OVERCLOCK=180
  426. equihash_MEMORY_OVERCLOCK=180
  427.  
  428. neoscrypt_POWERLIMIT_WATTS=120
  429. __neoscrypt_CORE_OVERCLOCK=180
  430. neoscrypt_MEMORY_OVERCLOCK=180
  431.  
  432. lyra2rev2_POWERLIMIT_WATTS=120
  433. __lyra2rev2_CORE_OVERCLOCK=180
  434. lyra2rev2_MEMORY_OVERCLOCK=180
  435.  
  436. lbry_POWERLIMIT_WATTS=120
  437. __lbry_CORE_OVERCLOCK=180
  438. lbry_MEMORY_OVERCLOCK=180
  439.  
  440. Blake_Vanilla_POWERLIMIT_WATTS=120
  441. __Blake_Vanilla_CORE_OVERCLOCK=180
  442. Blake_Vanilla_MEMORY_OVERCLOCK=180
  443.  
  444. Cryptonight_POWERLIMIT_WATTS=120
  445. __Cryptonight_CORE_OVERCLOCK=180
  446. Cryptonight_MEMORY_OVERCLOCK=180
  447.  
  448. Groestl_POWERLIMIT_WATTS=120
  449. __Groestl_CORE_OVERCLOCK=180
  450. Groestl_MEMORY_OVERCLOCK=180
  451.  
  452. Keccak_POWERLIMIT_WATTS=120
  453. __Keccak_CORE_OVERCLOCK=180
  454. Keccak_MEMORY_OVERCLOCK=180
  455.  
  456. Myriad_Groestl_POWERLIMIT_WATTS=120
  457. __Myriad_Groestl_CORE_OVERCLOCK=180
  458. Myriad_Groestl_MEMORY_OVERCLOCK=180
  459.  
  460. Qubit_POWERLIMIT_WATTS=120
  461. __Qubit_CORE_OVERCLOCK=180
  462. Qubit_MEMORY_OVERCLOCK=180
  463.  
  464. Scrypt_POWERLIMIT_WATTS=120
  465. __Scrypt_CORE_OVERCLOCK=180
  466. Scrypt_MEMORY_OVERCLOCK=180
  467.  
  468. Sia_POWERLIMIT_WATTS=120
  469. __Sia_CORE_OVERCLOCK=180
  470. Sia_MEMORY_OVERCLOCK=180
  471.  
  472. Skein_POWERLIMIT_WATTS=120
  473. __Skein_CORE_OVERCLOCK=180
  474. Skein_MEMORY_OVERCLOCK=180
  475.  
  476. X11_POWERLIMIT_WATTS=120
  477. __X11_CORE_OVERCLOCK=180
  478. X11_MEMORY_OVERCLOCK=180
  479.  
  480. # settings below are for rigs using individual powerlimit / target temps / clocks only
  481.  
  482. ###########################################################################
  483. ###########################################################################
  484. ###########################################################################
  485. ###########################################################################
  486. ###########################################################################
  487. ###########################################################################
  488. ###########################################################################
  489. ###########################################################################
  490.  
  491. INDIVIDUAL_POWERLIMIT="YES" # YES NO
  492.  
  493. # Set individual powerlimits here if INDIVIDUAL_POWERLIMIT="YES"
  494. INDIVIDUAL_POWERLIMIT_0=180
  495. INDIVIDUAL_POWERLIMIT_1=180
  496. INDIVIDUAL_POWERLIMIT_2=180
  497. INDIVIDUAL_POWERLIMIT_3=180
  498. INDIVIDUAL_POWERLIMIT_4=85
  499. INDIVIDUAL_POWERLIMIT_5=85
  500. INDIVIDUAL_POWERLIMIT_6=180
  501. INDIVIDUAL_POWERLIMIT_7=180
  502. INDIVIDUAL_POWERLIMIT_8=85
  503. INDIVIDUAL_POWERLIMIT_9=180
  504. INDIVIDUAL_POWERLIMIT_10=180
  505. INDIVIDUAL_POWERLIMIT_11=180
  506. INDIVIDUAL_POWERLIMIT_12=85
  507. INDIVIDUAL_POWERLIMIT_13=180
  508. INDIVIDUAL_POWERLIMIT_14=180
  509. INDIVIDUAL_POWERLIMIT_15=180
  510. INDIVIDUAL_POWERLIMIT_16=180
  511. INDIVIDUAL_POWERLIMIT_17=85
  512. INDIVIDUAL_POWERLIMIT_18=85
  513.  
  514.  
  515. INDIVIDUAL_TARGET_TEMPS="NO" # YES NO
  516.  
  517. # Set individual target temps here if INDIVIDUAL_TARGET_TEMPS="YES"
  518. TARGET_TEMP_0=72
  519. TARGET_TEMP_1=72
  520. TARGET_TEMP_2=72
  521. TARGET_TEMP_3=72
  522. TARGET_TEMP_4=72
  523. TARGET_TEMP_5=72
  524. TARGET_TEMP_6=72
  525. TARGET_TEMP_7=72
  526. TARGET_TEMP_8=72
  527. TARGET_TEMP_9=72
  528. TARGET_TEMP_10=72
  529. TARGET_TEMP_11=72
  530. TARGET_TEMP_12=72
  531. TARGET_TEMP_13=72
  532. TARGET_TEMP_14=72
  533. TARGET_TEMP_15=72
  534. TARGET_TEMP_16=72
  535. TARGET_TEMP_17=72
  536. TARGET_TEMP_18=72
  537.  
  538.  
  539. INDIVIDUAL_CLOCKS="YES" # YES NO
  540.  
  541. # Set individual clocks here if INDIVIDUAL_CLOCKS="YES"
  542. __CORE_OVERCLOCK_0=-150
  543. MEMORY_OVERCLOCK_0=800
  544.  
  545. __CORE_OVERCLOCK_1=-150
  546. MEMORY_OVERCLOCK_1=800
  547.  
  548. __CORE_OVERCLOCK_2=-150
  549. MEMORY_OVERCLOCK_2=800
  550.  
  551. __CORE_OVERCLOCK_3=-150
  552. MEMORY_OVERCLOCK_3=800
  553.  
  554. __CORE_OVERCLOCK_4=-150
  555. MEMORY_OVERCLOCK_4=500
  556.  
  557. __CORE_OVERCLOCK_5=-150
  558. MEMORY_OVERCLOCK_5=500
  559.  
  560. __CORE_OVERCLOCK_6=-150
  561. MEMORY_OVERCLOCK_6=800
  562.  
  563. __CORE_OVERCLOCK_7=-150
  564. MEMORY_OVERCLOCK_7=800
  565.  
  566. __CORE_OVERCLOCK_8=-150
  567. MEMORY_OVERCLOCK_8=500
  568.  
  569. __CORE_OVERCLOCK_9=-150
  570. MEMORY_OVERCLOCK_9=800
  571.  
  572. __CORE_OVERCLOCK_10=-150
  573. MEMORY_OVERCLOCK_10=800
  574.  
  575. __CORE_OVERCLOCK_11=-150
  576. MEMORY_OVERCLOCK_11=800
  577.  
  578. __CORE_OVERCLOCK_12=-150
  579. MEMORY_OVERCLOCK_12=500
  580.  
  581. __CORE_OVERCLOCK_13=-150
  582. MEMORY_OVERCLOCK_13=800
  583.  
  584. __CORE_OVERCLOCK_14=-150
  585. MEMORY_OVERCLOCK_14=800
  586.  
  587. __CORE_OVERCLOCK_15=-150
  588. MEMORY_OVERCLOCK_15=800
  589.  
  590. __CORE_OVERCLOCK_16=-150
  591. MEMORY_OVERCLOCK_16=800
  592.  
  593. __CORE_OVERCLOCK_17=-150
  594. MEMORY_OVERCLOCK_17=500
  595.  
  596. __CORE_OVERCLOCK_18=-150
  597. MEMORY_OVERCLOCK_18=500
  598.  
  599.  
  600. # OC settings you can use based on COIN or ALGO (how ever you want to categorize them)
  601.  
  602. if [ $damNmad_ALGO_SPECIFIC_OC == "YES" ]
  603. then
  604.  
  605. # Neoscrypt
  606.  
  607. if [ $COIN == "FTC" -o $COIN == "ORB" -o $COIN == "PXC" ]
  608. then
  609. POWERLIMIT_WATTS=80
  610. __CORE_OVERCLOCK=-150
  611. MEMORY_OVERCLOCK=800
  612. fi
  613.  
  614. # Ethash
  615.  
  616. if [ $COIN == "ETH" -o $COIN == "ETC" -o $COIN == "EXP" -o $COIN == "UBQ" -o $COIN == "MUSIC" -o $COIN == "SOIL" -o $COIN == "MPH_ETHASH" -o $COIN == "NICE_ETHASH" ]
  617. then
  618. POWERLIMIT_WATTS=76
  619. __CORE_OVERCLOCK=180
  620. MEMORY_OVERCLOCK=1600
  621. fi
  622.  
  623. # Equihash
  624.  
  625. if [ $COIN == "ZEC" -o $COIN == "ZEN" -o $COIN == "HUSH" -o $COIN == "ZCL" -o $COIN == "KMD" -o $COIN == "ZPOOL_EQUIHASH" -o $COIN == "MPH_EQUIHASH" -o $COIN == "NICE_EQUIHASH" -o $COIN == "VOTE" ]
  626. then
  627. POWERLIMIT_WATTS=76
  628. __CORE_OVERCLOCK=-150
  629. MEMORY_OVERCLOCK=800
  630. fi
  631.  
  632. # Skunk
  633.  
  634. if [ $COIN == "SIGT" -o $COIN == "ZPOOL_SKUNK" ]
  635. then
  636. POWERLIMIT_WATTS=78
  637. __CORE_OVERCLOCK=-150
  638. MEMORY_OVERCLOCK=1800
  639. fi
  640.  
  641. # Cryptonight
  642.  
  643. if [ $COIN == "XMR" -o $COIN == "KRB" ]
  644. then
  645. POWERLIMIT_WATTS=62
  646. __CORE_OVERCLOCK=155
  647. MEMORY_OVERCLOCK=-300
  648. fi
  649.  
  650. # lyra2v2
  651.  
  652. if [ $COIN == "MONA" -o $COIN == "VTC" ]
  653. then
  654. POWERLIMIT_WATTS=65
  655. __CORE_OVERCLOCK=135
  656. MEMORY_OVERCLOCK=-1200
  657. fi
  658.  
  659. # ZCOIN lyra2v2
  660.  
  661. if [ $COIN == "ZCOIN" ]
  662. then
  663. POWERLIMIT_WATTS=65
  664. __CORE_OVERCLOCK=160
  665. MEMORY_OVERCLOCK=-1500
  666. fi
  667. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement