still get error
not capable masternode: Could not connect to *****:9998
that is for masternode 3. The 1st 2 configs work and they have not got the ports changed like you said only the rpc port number.
Do you have the latest wallet? The zipped file is named cravex64mn7.7z and you can download it from the OP
Here is my config and it is working with three MN
Read the following if you want to setup more then one master node using the same computer with one ip address.
You can change the port and the rpcport and setup more if you want.
You will need one copy of the data dir and the crave-qt.exe for each master node that you wan to run.
Here is an example of running three master nodes.
Folder that hold the block chain and .conf files
C:\SubFolders\CraveMasterNode1
C:\SubFolders\CraveMasterNode2
C:\SubFolders\CraveMasterNode3
Folders that contain the crave-qt.exe and the .bat files to launch the masternode
c:\MyFiles\CraveMN1\
c:\MyFiles\CraveMN2\
c:\MyFiles\CraveMN3\
Then in each of the above folders you would put in the following .bat files to launch the master nodes.
StartMasterNode1.bat
crave-qt -datadir=C:\SubFolders\CraveMasterNode1
StartMasterNode2.bat
crave-qt -datadir=C:\SubFolders\CraveMasterNode2
StartMasterNode3.bat
crave-qt -datadir=C:\SubFolders\CraveMasterNode3
Also in each of the data dir you need to put in a crave.conf file like the following.
Notice with each config they use a different port and a different rpcport for each crave.conf.
It is best to have staking=0 so it does not stake.
crave.conf for use with Crave Master Node 1
maxconnections=100
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30105
port=9999
gen=0
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=YouIPAddress:9999
masternode=1
masternodeprivkey=YourMasterKey
rpcallowip=127.0.0.1
crave.conf for use with Crave Master Node 2
maxconnections=100
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30106
port=9998
gen=0
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=YouIPAddress:9998
masternode=1
masternodeprivkey=YourMasterKey
rpcallowip=127.0.0.1
crave.conf for use with Crave Master Node 3
maxconnections=100
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30107
port=9997
gen=0
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=YouIPAddress:9997
masternode=1
masternodeprivkey=YourMasterKey
rpcallowip=127.0.0.1