Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.88 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # nvOC v0019 by fullzero
  4.  
  5. # + contributors:
  6.  
  7. # BaliMiner: BaliMiner_TELEGRAM_ALERTS
  8. # BaliMiner BTC address: 1HbzxQ6AVeWYvFm322KtxZcJJLAqfJHpN8
  9.  
  10. # IAmNotAJeep: IAmNotAJeep_and_Maxximus007_WATCHDOG
  11. # Methods for improved system stability
  12. # IAmNotAJeep BTC address: 13PnEKpfVzNseWkrm6LoueKcCMPj74zPv7
  13.  
  14. # lost_post: upPASTE (timeout based _Parallax_ Mode auto-updating)
  15. # Methods for separating settings and implementation
  16. # Methods for AUTO_UPDATE
  17. # lost_post BTC address: 1GFTEtLLvvwoa4ogDntD5oaXBgJLYokzTC
  18.  
  19. # Maxximus007: Maxximus007_AUTO_TEMPERATURE_CONTROL
  20. # Expectless 1bash
  21. # IAmNotAJeep_and_Maxximus007_WATCHDOG
  22. # Maxximus007 BTC address: 1JAFefdPVAs3WQiTqnYWbsjifJAEjQcjQ8
  23.  
  24. # _Parallax_: _Parallax_ Mode ( wget + pastebin oneBash updating )
  25. # Methods for image size reduction
  26. # Methods for logging and system enhancements (with next version)
  27. # _Parallax_ BTC address: 329k8rDgxHHcHAEXfwznqv25Go5LERGWLp
  28.  
  29. # salfter: SALFTER_NICEHASH_PROFIT_SWITCHING
  30. # SALFTER_MPH_PROFIT_SWITCHING
  31. # salfter BTC address: 1TipsGocnz2N5qgAm9f7JLrsMqkb3oXe2
  32.  
  33. # xleejohnx: SRR support
  34. # xleejohnx BTC address: 1EY5WbiW3YkWanSKEGcjCETpQfCR81wc56
  35.  
  36. # Open a terminal to launch miner; will auto launch on boot
  37.  
  38. # firefox has an OP bookmark; look at the OP for more information
  39.  
  40. # USE ALL CAPS
  41.  
  42. # CHOOSE COIN FROM:
  43.  
  44. # XMR SIGT ZPOOL_SKUNK UBQ ONION
  45. # DMD GRS ZPOOL_LYRA2V2 ZPOOL_BLAKE2S
  46. # ZEC ZCOIN HUSH ZEN ZCL
  47. # NICE_ETHASH ETH MUSIC ETC EXP DCR PASC
  48. # MONA VTC DGB SIA FTC LBC
  49. # DUAL_ETC_DCR DUAL_ETC_PASC DUAL_ETC_LBC DUAL_ETC_SC
  50. # DUAL_EXP_DCR DUAL_EXP_PASC DUAL_EXP_LBC DUAL_EXP_SC
  51. # DUAL_ETH_DCR DUAL_ETH_PASC DUAL_ETH_LBC DUAL_ETH_SC
  52. # DUAL_MUSIC_DCR DUAL_MUSIC_PASC DUAL_MUSIC_LBC DUAL_MUSIC_SC
  53. # SALFTER_NICEHASH_PROFIT_SWITCHING
  54. # SALFTER_MPH_PROFIT_SWITCHING
  55.  
  56. COIN="ZEC"
  57.  
  58. Maxximus007_AUTO_TEMPERATURE_CONTROL="YES"
  59.  
  60. IAmNotAJeep_and_Maxximus007_WATCHDOG="YES"
  61.  
  62. # LOCAL will attach the mining process to the gnome or guake terminal
  63. # REMOTE will leave it unattached / ready for SSH
  64. LOCALorREMOTE="LOCAL" # LOCAL or REMOTE
  65.  
  66. TEAMVIEWER="NO" # YES NO
  67.  
  68. SSH="YES" # YES NO
  69.  
  70. POWERLIMIT="NO" # YES NO
  71.  
  72. POWERLIMIT_WATTS=53
  73.  
  74. __CORE_OVERCLOCK=100
  75. MEMORY_OVERCLOCK=100
  76.  
  77. MANUAL_FAN="YES" # YES NO
  78.  
  79. FAN_SPEED=75 # Set fan speed if MANUAL_FAN="YES"
  80.  
  81. # GLOBAL_WORKERNAME will use a single worker name for all coins
  82. GLOBAL_WORKERNAME="YES" # YES NO
  83.  
  84. # HOST will use the rigs host address
  85. # MAC will use the rigs NIC's MAC address
  86. # CUSTOM will use your own
  87. AUTO_WORKERNAME="CUSTOM" # HOST or MAC or CUSTOM
  88.  
  89. # if AUTO_WORKERNAME="CUSTOM"
  90. CUSTOM_WORKERNAME="omega"
  91.  
  92. # AUTO_UPDATE will enable your rig to pull updates
  93. AUTO_UPDATE="NO" # YES NO
  94.  
  95. # BETA will pull the newest unverified updates
  96. # STABLE will only pull verified updates
  97. AUTO_UPDATE="STABLE" # STABLE or BETA
  98.  
  99. AUTO_UPDATE_TIMEOUT_IN_MINUTES=1440
  100.  
  101. _Parallax_MODE="NO" # YES NO
  102.  
  103. pasteBASH="uZNXXJuE" #change for v0019
  104.  
  105. upPASTE_TIMEOUT_IN_MINUTES=30
  106.  
  107. CLEAR_LOGS_ON_BOOT="YES" # YES NO
  108.  
  109. BaliMiner_TELEGRAM_ALERTS="NO" # YES NO
  110. # ensure IAmNotAJeep_and_Maxximus007_WATCHDOG is set to "YES" if using TELEGRAM_ALERTS to ensure reboot telegrams
  111. # use BotFather ( https://core.telegram.org/bots/api ) to make a new bot and get a CHATID and APIKEY
  112. # BaliMiner is going to make a Guide (+ hopefully a video demonstrating how to set this up; it is not as straightforward as I expected it to be; but it is worth the time to have Telegram Alerts)
  113.  
  114. TELEGRAM_TIMEOUT_IN_MINUTES=30
  115.  
  116. TELEGRAM_CHATID="422650663"
  117.  
  118. TELEGRAM_APIKEY="417738071:AAE7nwRoaJec4f6zMuK9W5dMmpQ_yAt6YAw"
  119.  
  120. # Mine XMR with CPU
  121. plusCPU="NO" # YES NO
  122.  
  123. threadCOUNT="1" # Number of threads for plusCPU: varies per CPU
  124.  
  125. P106_100_FULL_HEADLESS_MODE="NO"
  126.  
  127. AUTO_REBOOT="NO"
  128.  
  129. REBOOT_TIMEOUT_IN_MINUTES=1440 # once every 24 hours
  130.  
  131. # If you are using a slow USB Key
  132. SLOW_USB_KEY_MODE="NO" # YES NO
  133.  
  134. GPUPowerMizerMode_Adjust="NO"
  135.  
  136. # Set PowerMizerMode
  137. GPUPowerMizerMode=1
  138.  
  139. SRR="NO" # YES NO
  140. SRR_SERIAL="000055"
  141. __SRR_SLOT="1"
  142.  
  143.  
  144. #######################################################################################
  145.  
  146. # Maxximus007_AUTO_TEMPERATURE_CONTROL
  147.  
  148. # 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.
  149.  
  150. TARGET_TEMP=85
  151.  
  152. __FAN_ADJUST=5 # Adjustment size in percent
  153.  
  154. POWER_ADJUST=5 # Adjustment size in watts
  155.  
  156. # Difference in actual temperature allowed before action: Works only if current is BELOW target temp
  157.  
  158. ALLOWED_TEMP_DIFF=3
  159.  
  160. # Restore original power limit if fan speed is lower than this percentage
  161.  
  162. RESTORE_POWER_LIMIT=90
  163.  
  164. # lowest fan speed that will be used
  165.  
  166. MINIMAL_FAN_SPEED=50
  167.  
  168. ########################################################################################
  169. #GLOBAL_WORKERNAME implementation
  170. IPW=$(ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p')
  171. IP_AS_WORKER=$(echo -n $IPW | tail -c -3 | sed 'y/./0/')
  172. MAC=$(ifconfig -a | grep -Po 'HWaddr \K.*$')
  173. MAC_AS_WORKER=$(echo -n $MAC | sed 'y/:/_/')
  174. if [ $GLOBAL_WORKERNAME == "YES" ]
  175. then
  176. if [ $AUTO_WORKERNAME == "HOST" ]
  177. then
  178. WORKERNAME=$IP_AS_WORKER
  179. fi
  180. if [ $AUTO_WORKERNAME == "MAC" ]
  181. then
  182. WORKERNAME=$MAC_AS_WORKER
  183. fi
  184. if [ $AUTO_WORKERNAME == "CUSTOM" ]
  185. then
  186. WORKERNAME=$CUSTOM_WORKERNAME
  187. fi
  188. fi
  189. ########################################################################################
  190.  
  191. # set YOUR ADDRESSES, WORKERS, POOL and PORT:
  192.  
  193. ZEC_WORKER="$WORKERNAME"
  194. ZEC_ADDRESS="t1Vbjn37Z76ARbg2NUiVsa1xkP4CLeUzBU2"
  195. ZEC_POOL="us1-zcash.flypool.org"
  196. ZEC_PORT="3333"
  197. EWBF_VERSION="3_4" # choose 3_3 or 3_4
  198.  
  199. # change EWBF_PERCENT to alter donation percent for EWBF Miner
  200. EWBF_PERCENT=0.1
  201.  
  202. ZCL_WORKER="$WORKERNAME"
  203. ZCL_ADDRESS="fullzero22"
  204. ZCL_POOL="zcl.coinmine.pl"
  205. ZCL_PORT="7007"
  206.  
  207. ZEN_WORKER="$WORKERNAME"
  208. ZEN_ADDRESS="znictSisUCALijmhJrjLS8FozvcJRAiHc29"
  209. ZEN_POOL="us.zenmine.pro"
  210. ZEN_PORT="9009"
  211.  
  212. HUSH_WORKER="$WORKERNAME"
  213. HUSH_ADDRESS="fullzero22"
  214. HUSH_POOL="zdash.suprnova.cc"
  215. HUSH_PORT="4048"
  216.  
  217. ZCOIN_WORKER="$WORKERNAME"
  218. ZCOIN_ADDRESS="fullzero22"
  219. ZCOIN_POOL="stratum+tcp://xzc.suprnova.cc:1569"
  220.  
  221. SIGT_WORKER="$WORKERNAME"
  222. SIGT_ADDRESS="fullzero22"
  223. SIGT_POOL="stratum+tcp://sigt.suprnova.cc:7106"
  224. SIGT_INTENSITY=25
  225.  
  226. UBQ_WORKER="$WORKERNAME"
  227. UBQ_ADDRESS="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  228. UBQ_POOL="stratum+tcp://eu.ubiqpool.io:8008"
  229. UBQ_EXTENSION_ARGUMENTS=""
  230.  
  231. # ZPOOL uses your BTC_ADDRESS
  232. ZPOOL_LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"
  233.  
  234. # ZPOOL uses your BTC_ADDRESS
  235. ZPOOL_BLAKE2S_POOL="stratum+tcp://blake2s.mine.zpool.ca:5766"
  236.  
  237. DMD_WORKER="$WORKERNAME"
  238. DMD_ADDRESS="fullzero"
  239. DMD_POOL="stratum+tcp://us.miningfield.com:3376"
  240.  
  241. GRS_WORKER="$WORKERNAME"
  242. GRS_ADDRESS="FnN3tyehFmkKgw75qu4GnbgmWxCrARbu8t"
  243. GRS_POOL="stratum+tcp://erebor.dwarfpool.com:3345"
  244.  
  245. MONA_WORKER="$WORKERNAME"
  246. MONA_ADDRESS="fullzero22"
  247. MONA_POOL="stratum+tcp://mona.suprnova.cc:2995"
  248.  
  249. # if YES ensure you update BTC_ADDRESS
  250. VTC_AUTOCONVERT_TO_BTC="YES" #YES NO
  251. VTC_WORKER="$WORKERNAME"
  252. VTC_ADDRESS="VsvtYL2mz3YFM3fpt5pb28zHodTbnJodRc"
  253. VTC_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"
  254.  
  255. # if YES ensure you update BTC_ADDRESS
  256. # ZPOOL_SKUNK HERE
  257. SKUNK_AUTOCONVERT_TO_BTC="YES" #YES NO
  258. SKUNK_WORKER="$WORKERNAME"
  259. SKUNK_ADDRESS="VsvtYL2mz3YFM3fpt5pb28zHodTbnJodRc"
  260. SKUNK_POOL="stratum+tcp://skunk.mine.zpool.ca:8433"
  261.  
  262.  
  263. BTC_ADDRESS="1EZtPXmj1aAnkk66cYzFL5TdDxRAPfLuu1"
  264.  
  265.  
  266. # NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
  267. NICE_ETHASH_WORKER="$WORKERNAME"
  268. NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  269. GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
  270. NICE_ETHASH_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  271.  
  272. # if YES ensure you update BTC_ADDRESS
  273. DGB_AUTOCONVERT_TO_BTC="YES" #YES NO
  274. DGB_INTENSITY=26
  275. DGB_ADDRESS="DKhCswL8Ff5UyZWdVEbyUVvDhLYMmfVLP7"
  276. DGB_POOL="stratum+tcp://skein.mine.zpool.ca:4933"
  277.  
  278. LBC_WORKER="$WORKERNAME"
  279. LBC_ADDRESS="fullzero22"
  280. LBC_POOL="stratum+tcp://lbry.suprnova.cc:6256"
  281.  
  282. FTC_WORKER="$WORKERNAME"
  283. FTC_ADDRESS="fullzero22"
  284. FTC_POOL="stratum+tcp://coinotron.com:3337"
  285.  
  286. ONION_ADDRESS="DijjrA5hMtFxuqt2U3BiF5gZ1sejxVQBFi"
  287. ONION_POOL="stratum+tcp://kawaiipool.party:3633"
  288.  
  289.  
  290. USE_ENVIRONMENTAL_VARIBLES="NO" #YES NO
  291.  
  292. DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="SLASH" # DOT or SLASH # formerly ETHERMINEdotORG
  293.  
  294. CLAYMORE_VERSION="9_8" # choose 9_8 or 9_7 or 9_5 or 9_4 or 8_0
  295.  
  296. ETHMINER_or_GENOIL_or_CLAYMORE="ETHMINER" # choose ETHMINER or GENOIL or CLAYMORE
  297.  
  298.  
  299. ETH_WORKER="$WORKERNAME"
  300. ETH_ADDRESS="0xe12bdd454997e443ec0cae6bebb6bb3c74242aae"
  301. ETH_POOL="eth-us-east1.nanopool.org:9999"
  302. ETH_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  303.  
  304. ETC_WORKER="$WORKERNAME"
  305. ETC_ADDRESS="0xc3eab16bd575e5498efef2b038c8c178598d659e"
  306. ETC_POOL="etc-us-east1.nanopool.org:19999"
  307. ETC_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  308.  
  309. EXP_WORKER="$WORKERNAME"
  310. EXP_ADDRESS="0xa7108c64e6fec3193091f2cae2a5c62a36d4396a"
  311. EXP_POOL="exp-us.dwarfpool.com:8018"
  312. EXP_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  313.  
  314. MUSIC_WORKER="$WORKERNAME"
  315. MUSIC_ADDRESS="0x48919b296f648bd2edfeb6f336d2b3f66a741ea5"
  316. MUSIC_POOL="stratum+tcp://213.154.202.174:3334"
  317. MUSIC_EXTENSION_ARGUMENTS="" # add any additional claymore arguments desired here
  318.  
  319. SC_WORKER="$WORKERNAME"
  320. SC_ADDRESS="1569a3353bb3353aedc6e0b79e796787ffcbe45d6caaa28f678ba74a5c50fdb02e735244e706"
  321. SC_POOL="sia-us-east1.nanopool.org:7777"
  322. SC_GW_POOL="sia-us-east1.nanopool.org:9980"
  323.  
  324. DCR_WORKER="$WORKERNAME"
  325. DCR_ADDRESS="fullzero22"
  326. DCR_POOL="stratum+tcp://dcr.suprnova.cc:3252"
  327.  
  328. PASC_WORKER="$WORKERNAME"
  329. PASC_ADDRESS="86646-64.b12a9833f216b5a8"
  330. PASC_POOL="pasc-us-east1.nanopool.org:15555"
  331.  
  332. # if plusCPU is "YES" replace with your XMR info
  333. XMR_WORKER="$WORKERNAME"
  334. XMR_ADDRESS="47sghzufGhJJDQEbScMCwVBimTuq6L5JiRixD8VeGbpjCTA12noXmi4ZyBZLc99e66NtnKff34fHsGRoyZk3ES1s1V4QVcB.23d5f83d0021a50d8f809f4727c8622d3ea25798942bcb1ba0eee40cc157f65c"
  335. XMR_POOL="xmr-us-east1.nanopool.org:14444"
  336.  
  337. ######################################################################################
  338.  
  339. # SALFTER_NICEHASH_PROFIT_SWITCHING & SALFTER_MPH_PROFIT_SWITCHING Settings
  340.  
  341. CURRENCY=USD
  342.  
  343. POWER_COST=0.00
  344.  
  345. MINIMUM_PROFIT=0.0
  346.  
  347. MPH_USERNAME=salfter
  348.  
  349. # this is salfters BTC address: 1TipsGocnz2N5qgAm9f7JLrsMqkb3oXe2
  350.  
  351. PAYMENT_ADDRESS=1EZtPXmj1aAnkk66cYzFL5TdDxRAPfLuu1
  352.  
  353. WORKER_NAME=$WORKERNAME
  354.  
  355. PROFIT_CHECK_TIMEOUT=600
  356.  
  357. # ENSURE YOU USE Maxximus007_AUTO_TEMPERATURE_CONTROL for fanspeed
  358.  
  359. daggerhashimoto_POWERLIMIT_WATTS=125
  360. __daggerhashimoto_CORE_OVERCLOCK=100
  361. daggerhashimoto_MEMORY_OVERCLOCK=100
  362.  
  363. equihash_POWERLIMIT_WATTS=125
  364. __equihash_CORE_OVERCLOCK=100
  365. equihash_MEMORY_OVERCLOCK=100
  366.  
  367. neoscrypt_POWERLIMIT_WATTS=125
  368. __neoscrypt_CORE_OVERCLOCK=100
  369. neoscrypt_MEMORY_OVERCLOCK=100
  370.  
  371. lyra2rev2_POWERLIMIT_WATTS=125
  372. __lyra2rev2_CORE_OVERCLOCK=100
  373. lyra2rev2_MEMORY_OVERCLOCK=100
  374.  
  375. lbry_POWERLIMIT_WATTS=125
  376. __lbry_CORE_OVERCLOCK=100
  377. lbry_MEMORY_OVERCLOCK=100
  378.  
  379. Blake_Vanilla_POWERLIMIT_WATTS=125
  380. __Blake_Vanilla_CORE_OVERCLOCK=100
  381. Blake_Vanilla_MEMORY_OVERCLOCK=100
  382.  
  383. Cryptonight_POWERLIMIT_WATTS=125
  384. __Cryptonight_CORE_OVERCLOCK=100
  385. Cryptonight_MEMORY_OVERCLOCK=100
  386.  
  387. Groestl_POWERLIMIT_WATTS=125
  388. __Groestl_CORE_OVERCLOCK=100
  389. Groestl_MEMORY_OVERCLOCK=100
  390.  
  391. Keccak_POWERLIMIT_WATTS=125
  392. __Keccak_CORE_OVERCLOCK=100
  393. Keccak_MEMORY_OVERCLOCK=100
  394.  
  395. Myriad_Groestl_POWERLIMIT_WATTS=125
  396. __Myriad_Groestl_CORE_OVERCLOCK=100
  397. Myriad_Groestl_MEMORY_OVERCLOCK=100
  398.  
  399. Qubit_POWERLIMIT_WATTS=125
  400. __Qubit_CORE_OVERCLOCK=100
  401. Qubit_MEMORY_OVERCLOCK=100
  402.  
  403. Scrypt_POWERLIMIT_WATTS=125
  404. __Scrypt_CORE_OVERCLOCK=100
  405. Scrypt_MEMORY_OVERCLOCK=100
  406.  
  407. Sia_POWERLIMIT_WATTS=125
  408. __Sia_CORE_OVERCLOCK=100
  409. Sia_MEMORY_OVERCLOCK=100
  410.  
  411. Skein_POWERLIMIT_WATTS=125
  412. __Skein_CORE_OVERCLOCK=100
  413. Skein_MEMORY_OVERCLOCK=100
  414.  
  415. X11_POWERLIMIT_WATTS=125
  416. __X11_CORE_OVERCLOCK=100
  417. X11_MEMORY_OVERCLOCK=100
  418.  
  419. # settings below are for rigs using individual powerlimit / target temps / clocks only
  420.  
  421. ###########################################################################
  422. ###########################################################################
  423. ###########################################################################
  424. ###########################################################################
  425. ###########################################################################
  426. ###########################################################################
  427. ###########################################################################
  428. ###########################################################################
  429.  
  430. INDIVIDUAL_POWERLIMIT="NO" # YES NO
  431.  
  432. # Set individual powerlimits here if INDIVIDUAL_POWERLIMIT="YES"
  433. INDIVIDUAL_POWERLIMIT_0=53
  434. INDIVIDUAL_POWERLIMIT_1=53
  435. INDIVIDUAL_POWERLIMIT_2=53
  436. INDIVIDUAL_POWERLIMIT_3=53
  437. INDIVIDUAL_POWERLIMIT_4=53
  438. INDIVIDUAL_POWERLIMIT_5=53
  439. INDIVIDUAL_POWERLIMIT_6=53
  440. INDIVIDUAL_POWERLIMIT_7=53
  441. INDIVIDUAL_POWERLIMIT_8=53
  442. INDIVIDUAL_POWERLIMIT_9=53
  443. INDIVIDUAL_POWERLIMIT_10=53
  444. INDIVIDUAL_POWERLIMIT_11=53
  445. INDIVIDUAL_POWERLIMIT_12=53
  446. INDIVIDUAL_POWERLIMIT_13=53
  447.  
  448.  
  449. INDIVIDUAL_TARGET_TEMPS="NO" # YES NO
  450.  
  451. # Set individual target temps here if INDIVIDUAL_TARGET_TEMPS="YES"
  452. TARGET_TEMP_0=70
  453. TARGET_TEMP_1=70
  454. TARGET_TEMP_2=70
  455. TARGET_TEMP_3=70
  456. TARGET_TEMP_4=70
  457. TARGET_TEMP_5=70
  458. TARGET_TEMP_6=70
  459. TARGET_TEMP_7=70
  460. TARGET_TEMP_8=70
  461. TARGET_TEMP_9=70
  462. TARGET_TEMP_10=70
  463. TARGET_TEMP_11=70
  464. TARGET_TEMP_12=70
  465. TARGET_TEMP_13=70
  466.  
  467.  
  468. INDIVIDUAL_CLOCKS="NO" # YES NO
  469.  
  470. # Set individual clocks here if INDIVIDUAL_CLOCKS="YES"
  471. __CORE_OVERCLOCK_0=100
  472. MEMORY_OVERCLOCK_0=100
  473.  
  474. __CORE_OVERCLOCK_1=100
  475. MEMORY_OVERCLOCK_1=100
  476.  
  477. __CORE_OVERCLOCK_2=100
  478. MEMORY_OVERCLOCK_2=100
  479.  
  480. __CORE_OVERCLOCK_3=100
  481. MEMORY_OVERCLOCK_3=100
  482.  
  483. __CORE_OVERCLOCK_4=100
  484. MEMORY_OVERCLOCK_4=100
  485.  
  486. __CORE_OVERCLOCK_5=100
  487. MEMORY_OVERCLOCK_5=100
  488.  
  489. __CORE_OVERCLOCK_6=100
  490. MEMORY_OVERCLOCK_6=100
  491.  
  492. __CORE_OVERCLOCK_7=100
  493. MEMORY_OVERCLOCK_7=100
  494.  
  495. __CORE_OVERCLOCK_8=100
  496. MEMORY_OVERCLOCK_8=100
  497.  
  498. __CORE_OVERCLOCK_9=100
  499. MEMORY_OVERCLOCK_9=100
  500.  
  501. __CORE_OVERCLOCK_10=100
  502. MEMORY_OVERCLOCK_10=100
  503.  
  504. __CORE_OVERCLOCK_11=100
  505. MEMORY_OVERCLOCK_11=100
  506.  
  507. __CORE_OVERCLOCK_12=100
  508. MEMORY_OVERCLOCK_12=100
  509.  
  510. __CORE_OVERCLOCK_13=100
  511. MEMORY_OVERCLOCK_13=100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement