I mean send coins automaticly to other account.
With Windows or Linux?
Are there these both possibilities? Could you explain shortly both please?
Thank you very much.
For Linux it's pretty easy in that you can create a bash script using your terminal/daemon
***You can navigate to your ColossusCoin2 directory
cd ColossusCoin2/src
***Then you can create your script as whatever name you want, in this case we can call it send.sh
nano send.sh
***It will then open up a blank file and you can copy in your script, in this case we can have it execute 30 times, send 5000 Coins every 600 seconds
#!/bin/bash
for n in {1..30}
do
./ColossusCoin2d sendtoaddress ChgfiA4ijs5aXt9iEpFnKwMSzMVLyMTk5e 5000
sleep 600
done
***Then press ctrl+o to save the file
***Then we want to create it as an executable file
chmod +x send.sh
***Then we can run the script in the background using nohup
nohup ./send.sh &
***You can also layer the addresses to send to and even send random amounts within a range like so, in this case it would execute sending to the three addresses 30 times (90 times in total), with a minimum of 1000 plus a random amount between 1 and 2000.
#!/bin/bash
for n in {1..30}
do
./ColossusCoin2d sendtoaddress CtW2iA4ijs5aXt9iEpFnKwMSzMVLyMTk5e $[ ( $RANDOM % 2000 ) + 1000 ]
sleep $[ ( $RANDOM % 27 ) + 60 ]s
./ColossusCoin2d sendtoaddress CCbm3Ez7QQfrErkkwo2duZCq82NJepDvUG $[ ( $RANDOM % 2000 ) + 1000 ]
sleep $[ ( $RANDOM % 45 ) + 72 ]s
./ColossusCoin2d sendtoaddress CMZgRztjFPquEsAGk2rAHSqRhzvZB4TX5S $[ ( $RANDOM % 2000 ) + 1000 ]
sleep $[ ( $RANDOM % 56 ) + 63 ]s
done
For Windows you can use an Auto Transfer program I've had for ages
https://mega.co.nz/#!IlFFxCxB!oKh8nlNcScZJ-UZf5t3u_LhE0iOHfoajs-pS9Gh_ImA
With this you would make sure you have rpcallowip=127.0.0.1 in your config file and in the fields you would put in the rpc username and password you have set in your config file, the rpc port number and 127.0.0.1 as your IP (localhost)
Hope this helps