How did you guys format your .bat file for excavator? I'm trying it now with my bat file and it's just getting stuck on "core initialized".
My bat file:
excavator -a neoscrypt -o stratum+tcp://pool.unimining.net:4234 -u DDnfG1Zb2NjhC4kB7gep7R9ThkcbaSWU4y -p d=256,c=DSR,stats
It's easiest to use a JSON command file, so you can just run "excavator -c command_file.json".
Here's an example of one I use for Neoscrypt for ORB on Zergpool with my 5-card rig:
[
{
"time": 0,
"commands": [
{
"id": 1,
"method": "algorithm.add",
"params": [
"neoscrypt",
"83.99.183.36:4233",
"1NG4nxGzn9sNhzYacha5XSazyZEt54X7vk:c=BTC,mc=ORB"
]
}
]
},
{
"time": 3,
"commands": [
{"id": 1,"method": "worker.add", "params": ["0", "0"]},
{"id": 2,"method": "worker.add", "params": ["0", "1"]},
{"id": 3,"method": "worker.add", "params": ["0", "2"]},
{"id": 4,"method": "worker.add", "params": ["0", "3"]},
{"id": 5,"method": "worker.add", "params": ["0", "4"]}
]
},
{
"time": 10,
"loop": 30,
"commands": [
{"id": 1,"method": "worker.print.speed", "params":["0"]},
{"id": 2,"method": "worker.print.speed", "params":["1"]},
{"id": 3,"method": "worker.print.speed", "params":["2"]},
{"id": 4,"method": "worker.print.speed", "params":["3"]},
{"id": 5,"method": "worker.print.speed", "params":["4"]},
{"id": 6,"method": "algorithm.print.speeds", "params": ["0"]}
]
}
]
You'll obviously need to adjust this for your BTC address, coin to mine etc. and adjust the number of "worker.add" and "worker.print.speed" lines to match the number of cards in your rig. Also, you need to know the IP of the pool stratum endpoint as DNS name resolution doesn't always work with Excavator. I've supplied the one for "zergpool.com" in that sample file. This file basically creates one Neoscrypt worker thread for each of my GPUs and prints the per-GPU and summary stats every 30 seconds.