So here's what I did for solo-mining
I made a file named bitpokemongo.conf with these entries
server=1
daemon=1
listen=1
maxconnections=1024
rpcuser=user
rpcpassword=password
rpcport=9890
I made up the port number. Obviously, user and password are different.
I placed the .conf in my appdata\roaming\bitpokemongo folder
I used the program cc miner 1.8 with lbry support. you can download it here
http://cryptomining-blog.com/tag/ccminer-1-8/Then I made a .bat with these entries
ccminer-x64 -a x11 -o
http://127.0.0.1:9890 -u user -p password --show-diff --cpu-priority 4
pause
ccminer-x64 - is the program name, you can put .exe if you want.
-a x11 - is telling it what algo to use. This miner can mine most algos.
-0
http://127.0.0.1:9890 - means we're mining on localhost at port 9890. You define the port in the .conf. You can make it up for most coins.
-u user - change this to whatever you want but it has to match the entries in the .conf
-p password - change this to whatever you want but it has to match the entries in the .conf
--show-diff - shows the difficulty line
--cpu-priority 4 - idk what this does
pause - Always add this. So you can see why it fails. If your miner ever crashes and you can't see why all you need to do is add pause in the .bat and you can see it.
Once you have written the .bat you put it in the same folder as your ccminer-x64 is found. You need to start your wallet before you run the .bat.
btw I paid .1 for this miner before it was released publicly, and it's worth every penny.
Edit: Now that the pool is up solo-mining is pretty worthless, but you can join the pool!
ccminer-x64 -a x11 -o stratum+tcp://bazco.in:3333 -u YOURWALLET -p ANYTHING --show-diff --cpu-priority 4
pause