Author

Topic: Auto BTC sending PHP script (Read 1501 times)

member
Activity: 65
Merit: 10
June 15, 2011, 05:09:28 AM
#5
Yeah, I've been trying to win the jackpot but no luck so far Sad
hero member
Activity: 560
Merit: 500
June 15, 2011, 04:30:24 AM
#4
It loops over and over again until there is money then it sends it.
Oh, I wasn't thinking very long term usage.
I see how this script works now.

Good idea. Smiley
member
Activity: 65
Merit: 10
June 15, 2011, 04:25:53 AM
#3
Code:
while(1) {
$bitcoind_path '"%ProgramFiles(x86)%\Bitcoin\daemon\bitcoind"';
$sendtoaddress 'fdasfad';
$tax 0.0005;
$betamount 0.1;
$minimumbalance 0.0;
$strbalance =  exec($bitcoind_path.' getbalance');
$balance floatval($strbalance);
if($balance >= $betamount $tax && $balance - ($betamount $tax) > $minimumbalance) {
echo exec($bitcoind_path.' sendtoaddress '$sendtoaddress ' ' $betamount) . '\n';
echo 'sent!';
} else {
die();
}
}
?>

Changed your sleep() to die(). I can't see any point in retrying the loop if there isn't enough money.

It loops over and over again until there is money then it sends it.
hero member
Activity: 560
Merit: 500
June 15, 2011, 03:29:23 AM
#2
Code:
while(1) {
$bitcoind_path '"%ProgramFiles(x86)%\Bitcoin\daemon\bitcoind"';
$sendtoaddress 'fdasfad';
$tax 0.0005;
$betamount 0.1;
$minimumbalance 0.0;
$strbalance =  exec($bitcoind_path.' getbalance');
$balance floatval($strbalance);
if($balance >= $betamount $tax && $balance - ($betamount $tax) > $minimumbalance) {
echo exec($bitcoind_path.' sendtoaddress '$sendtoaddress ' ' $betamount) . '\n';
echo 'sent!';
} else {
die();
}
}
?>

Changed your sleep() to die(). I can't see any point in retrying the loop if there isn't enough money.
member
Activity: 65
Merit: 10
June 15, 2011, 12:13:34 AM
#1
Code:
while(1) {
$bitcoind_path '"%ProgramFiles(x86)%\Bitcoin\daemon\bitcoind"';
$sendtoaddress 'fdasfad';
$tax 0.0005;
$betamount 0.1;
$minimumbalance 0.0;
$strbalance =  exec($bitcoind_path.' getbalance');
$balance floatval($strbalance);
if($balance >= $betamount $tax && $balance - ($betamount $tax) > $minimumbalance) {
echo exec($bitcoind_path.' sendtoaddress '$sendtoaddress ' ' $betamount) . '\n';
echo 'sent!';
} else {
sleep(10);
}
}
?>

I use it for sites like bitcoin lottery and such so I can continue to waste my mining earnings Cheesy

I will add JSON-RPC support in the future, this was just a test script.

If you like it consider donating a small amount to 17kKVg1NP8ciHG3qKoZirc7UP3NE1AFQC6
Jump to: