Many of us use windows. It looks like this guide is for Linux. Is there a windows guide? I have enough to setup a couple and would like to do that under windows.
Vegas
http://www.cravecoin.info/master-node-guide/For Windows
Here are instructions on how to set up a masternode in Windows environment:
Start up and sync your wallet.
Open debug console, type: masternode genkey
Copy output key into a text file to be used later
Then, in debug console type: getaccountaddress 0
Copy output address into a text file to be used later
Send 500 CRAVE to address output above, no more, no less. Exactly 500.
Close Wallet
Create/Edit crave.conf:
maxconnections=100
rpcuser=YourRPCUser
rpcpassword=YourRPCPassword
rpcport=30105
port=9999
gen=0
server=1
daemon=1
staking=0
reservebalance=500
masternodeaddr=Your_IP_Address:9999
masternode=1
masternodeprivkey=The_Value_you_get_from_masternode_genkey
rpcallowip=127.0.0.1
Save crave.conf
open wallet
Wait 15 blocks (see confirmations from wallet you sent 500 CRAVE)
To start masternode wallet, open debug console and type: masternode start
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 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