@spexx
I spent a lot of time trying to set the right myminer.bat, but whatever I try, it does not connect to the pool. Could you please provide a clear example of what to fill out in what position?
I.e. to login on suprnova I use my emailaddress, not the username. What and where to fill out in the .bat file?
I guess it's a login problem, my guess would be the incorrect setting with Login Name and Worker.
My file looks like this (in case you edit myminer.bat directly)
start "XMG Magi Autominer" automine.bat "POOL LOGIN" "WORKERNAME" "2" "0" "PASSWORD" "stratum+tcp://mine2.magi.nonce-pool.com:4090" "stratum+tcp://mine2.magi.nonce-pool.com:4090" "1" "2"
I created 2 workers, worker0 and worker1. This line tells the miner to use POOLLOGINAME.WORKER (i.e. johndoe.worker), 2 worker are present, starting with 0.
The last value after the stratum address should be the number of threats ("2"). But using the setup file is easier.
If that doesn't help, please copy your file and give your information (probably with alias data).
Thank you for helping out. I get stratum authentication failed. This is my bat file:
@echo off
title XMG Magi Monitor
start "XMG Magi Autominer" automine.bat "xmgwes" "worker1" "4" "0" "worker1password" "stratum+tcp://xmg.suprnova.cc:7128" "stratum+tcp://mine2.magi.nonce-pool.com:4090" "1" "2"
exit
xmgwes is my suprnova account Username
in other .bat files you have to enter xmgwes.worker1
but here it is split in 2. why?
You are right, usually you put USERNAME.WORKER in most bat file. But in those cases you use 1 device.
In this case, you're using several cores of your CPU. Each core gets an it's own worker (this way you get more speed).
Step by step:
Log into suprnova pool
Account - Workers
If you want 2 threads, create i.e. worker0 and worker1. Using 4 threads, it would be worker0, worker1, worker2, worker3
Your bat file would be, depending how many threads you use and how many worker you created
start "XMG Magi Autominer" automine.bat "xmgwes" "worker" "4" "0"
xmgwes is pool username, worker the name of the worker without any digits. 4 means 4 threads and 0 means "start counting at 0". The script would start 4 threads:
xmgwes.worker0
xmgwes.worker1
xmgwes.worker2
xmgwes.worker3
Let me know if it works.