any 1 know how to get more address in vanilacoin ?
this should help
(havn't tried it m'self - but recomend you back up everything b4 you execute it, (write down your addy, priv key...)
Command | Parameters | Description
checkwallet Check wallet for integrity.
dumpprivkey <walletAddress> Reveals the private key corresponding to given address.
encryptwallet <passphrase> Encrypts the wallet with given passphrase.
getaccount <walletAddress> Returns the account associated with the given address.
getaccountaddress <account> Returns the current bitcoin address for receiving payments to this account. If <account> does not exist, it will be created along with an associated new address that will be returned.
getbalance [account] If [account] is not specified, returns the server's total available balance. If [account] is specified, returns the balance in the account.
getblock <hash> Returns information about the block with the given hash.
getblockcount Returns the number of blocks in the longest block chain.
getblockhash <index> Returns hash of block in best-block-chain at <index>; index 1 is the genesis block.
getblocktemplate [param] Returns data needed to construct a block to work on.
getdifficulty Returns the current proof-of-work & proof-of-stake difficulty.
getinfo Returns an object containing various state info.
getmininginfo Returns an object containing mining-related information: blocks, currentblocksize, currentblocktx, difficulty, errors, generate, genproclimit, hashespersec, networkhashps, pooledtx, testnet.
getnetworkhashps Returns the estimated network hashes per second.
getnewaddress [account] Returns a new address for receiving payments. If [account] is specified (recommended), it is added to the address book so payments received with the address will be credited to [account].
getpeerinfo Returns data about each connected node.
getrawtransaction <txid> Returns raw transaction representation for given transaction id.
gettransaction <txid> Returns an object about the given transaction containing: amount, confirmations, txid, time, details (an array of objects containing: account, address, category, amount, fee).
importprivkey <privkey> Adds a private key (as returned by dumpprivkey) to your wallet.
listreceivedbyaccount [minconf=1] [includeempty=false] Returns an array of objects containing: account, amount, confirmations.
listreceivedbyaddress [minconf=1] [includeempty=false] Returns an array of objects containing: address, account, amount, confirmations.
listsinceblock [blockhash] Get all transactions in blocks since block [blockhash], or all transactions if omitted.
listtransactions [account] [count=10] Returns up to [count] most recent transactions skipping the first [from] transactions for account [account]. If [account] not provided will return recent transaction from all accounts.
repairwallet Repair wallet.
sendmany <fromaccount> {address:amount,...} amounts are double-precision floating point numbers.
sendtoaddress <address> <amount> <amount> is a real and is rounded to 8 decimal places. Returns the transaction ID <txid> if successful.
submitblock <hex data> [optional-params-obj] Attempts to submit new block to network.
validateaddress Return information about given address.
walletlock Removes the wallet encryption key from memory, locking the wallet. After calling this method, you will need to call walletpassphrase again before being able to call any methods which require the wallet to be unlocked.
walletpassphrase <passphrase> <86400=1day> Stores the wallet decryption key in memory for <timeout> seconds.