The bot its based on "curl" and "Blockchain API". and it work from Bash Linux.
It make 1 bet every 5 minutes (sleep 300), and make first 1 green (0.0025 btc), then 1 yellow (0.0015 btc) and then 1 red (0.001 btc)... and this becomes a cycle.
#Guid
gu="baxxx-xxx6-xxxxx-xxxf-14xxxxxxxx"
#Blockchain password
pas="MYPASSWORD"
echo "Good luck in your bets"
for a in $(seq 1 100)
do
curl "https://blockchain.info/es/merchant/$gu/payment?password=$pas&to=1LuckyG4tMMZf64j6ea7JhCz7sDpk6vdcS&amount=250000"
echo ""
echo "Green sent" && date
sleep 300
curl "https://blockchain.info/es/merchant/$gu/payment?password=$pas&to=1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S&amount=150000"
echo ""
echo "Yellow sent" && date
sleep 300
curl "https://blockchain.info/es/merchant/$gu/payment?password=$pas&to=1LuckyR1fFHEsXYyx5QK4UFzv3PEAepPMK&amount=100000"
echo ""
echo "Red sent" && date
sleep 300
done
http://s29.postimg.org/56ivng5lz/botlucky.png
This is the beta version, hope to end soon a pro version with some nice bet methods. Feel free to make some contributions to the code.
Luckyb.it bets BOT 2.0
Update:
*3 bets in the same transaction
#Guid
gu="xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx"
#Blockchain password
pas="xxxxxxxxxx"
green="1LuckyG4tMMZf64j6ea7JhCz7sDpk6vdcS"
yellow="1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S"
red="1LuckyR1fFHEsXYyx5QK4UFzv3PEAepPMK"
BTCg="250000"
BTCy="150000"
BTCr="100000"
for a in $(seq 1 100)
do
echo ""
curl "https://blockchain.info/merchant/$gu/sendmany?password=$pas&recipients=%7B%22$green%22%3A$BTCg%2C%22$yellow%22%3A$BTCy%2C%22$red%22%3A$BTCr%7D&shared=false&fee=10000"
echo ""
sleep 300
done
With this bet way we only pay one fee (0.0001) for 3 bets, 1 green, 1 yellow and 1 red.
https://bitcointalksearch.org/topic/m.9054721
LUCKYB.IT BET BOT V3 (My yellow martingale)
*Linux bash / Blockchain API / Luckyb.it API
*Single bet
*Increase 0.0001 after lost
*when get x3 or better, it return tu base bet (0.001)
Code:
echo "**********************************"
echo "******BtcBoss Luckyb.it bot*******"
echo "**********************************"
echo "1BtcBoSSnqe8mFJCUEyCNmo3EcF8Yzhpnc"
echo "**********************************"
#Guid
gu="xxxxxx-xxxxx-xxxx-xxxx-xxxxxxx"
#Blockchain password
pas="xxxxxxxxxxx"
BTCy="100000"
y="0"
while true
do
a=$(curl "https://blockchain.info/es/merchant/$gu/payment?password=$pas&to=1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S&amount=$BTCy");
echo $a > tx.txt
sleep 60
b="0"
b=$(curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76) | grep "multiplier" | cut -d " " -f6 | sed -e "s/,//g");
while [ -z $b ]
do
b=$(curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76) | grep "multiplier" | cut -d " " -f6 | sed -e "s/,//g");
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);
sleep 5
done
if [ "$b" = "0.3" ]
then
let "BTCy = $BTCy + 10000"
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);
sleep 60
echo $a > tx.txt
elif [ "$b" = "0.5" ]
then
let "BTCy = $BTCy + 10000"
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);
sleep 60
echo $a > tx.txt
elif [ "$b" = "1" ]
then
let "BTCy = $BTCy + 10000"
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);
sleep 60
echo $a > tx.txt
elif [ "$b" = "1.4" ]
then
let "BTCy = $BTCy + 10000"
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);
sleep 60
echo $a > tx.txt
elif [ "$b" = "3" ]
then
echo "************"
echo "YOU WIN x3"
echo "************"
echo ""
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);sleep 60
BTCy="100000"
elif [ "$b" = "5" ]
then
echo "************"
echo "YOU WIN x5"
echo "************"
echo ""
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);sleep 60
BTCy="100000"
elif [ "$b" = "12" ]
then
echo "************"
echo "YOU WIN x12"
echo "************"
echo ""
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);sleep 60
BTCy="100000"
elif [ "$b" = "38" ]
then
echo "************"
echo "YOU WIN x38"
echo "************"
echo ""
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);sleep 60
BTCy="100000"
elif [ "$b" = "111" ]
then
echo "************"
echo "YOU WIN x111"
echo "************"
echo ""
curl http://luckyb.it/api/getbetsbytxid/$(cat tx.txt | cut -d " " -f1 | cut -c13-76);sleep 60
BTCy="100000"
else
echo "Waiting Transaction..."
fi
done
Output:
**********************************
******BtcBoss Luckyb.it bot*******
**********************************
1BtcBoSSnqe8mFJCUEyCNmo3EcF8Yzhpnc
**********************************
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
143 143 143 143 0 0 77 0 0:00:01 0:00:01 --:--:-- 174
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
102 616 102 616 0 0 1186 0 --:--:-- --:--:-- --:--:-- 1638
{
"dd2d7b325650c03ed2831a87a320aead1a978672e7221c47f26a253df4360b84:0": {
"bet_amount": 0.001,
"binary_string": "1100110010001100",
"created_at": "2014-10-03 00:19:17",
"game_address": "1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S",
"game_name": "yellow",
"multiplier_obtained": 0.5,
"payout_amount": 0.0005,
"player_address": "1Bot4vHX7hNhVd5TJaaGtqBEywMY9x4Kkk",
"txin_id": "dd2d7b325650c03ed2831a87a320aead1a978672e7221c47f26a253df4360b84",
"txin_vout": 0,
"txout_id": "6dd3c3b6b950980288ba73b7bc997003c954a94107392f1225185ca863edf063",
"type": "VALID_BET"
}
} % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
144 144 144 144 0 0 115 0 0:00:01 0:00:01 --:--:-- 272
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
103 618 103 618 0 0 1195 0 --:--:-- --:--:-- --:--:-- 1639
{
"5d76234ac480be8b8b42d36773edc6a197b4d59fce6c8b91112569374e33a52d:0": {
"bet_amount": 0.0011,
"binary_string": "1001011100101100",
"created_at": "2014-10-03 00:21:07",
"game_address": "1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S",
"game_name": "yellow",
"multiplier_obtained": 0.3,
"payout_amount": 0.00033,
"player_address": "1Bot4vHX7hNhVd5TJaaGtqBEywMY9x4Kkk",
"txin_id": "5d76234ac480be8b8b42d36773edc6a197b4d59fce6c8b91112569374e33a52d",
"txin_vout": 0,
"txout_id": "064cf374c7d9dc263d3ee9697deefcf313064c9bff109c1a1b0038dbf7539c85",
"type": "VALID_BET"
}
} % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
144 144 144 144 0 0 93 0 0:00:01 0:00:01 --:--:-- 249
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
102 615 102 615 0 0 614 0 0:00:01 0:00:01 --:--:-- 831
************
YOU WIN x3
************
{
"b17ce7289254265b0c3b455a0ba830eabba341c6d83622236ffcae81c26203b6:0": {
"bet_amount": 0.0012,
"binary_string": "0100000000110010",
"created_at": "2014-10-03 00:23:10",
"game_address": "1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S",
"game_name": "yellow",
"multiplier_obtained": 3,
"payout_amount": 0.0036,
"player_address": "1Bot4vHX7hNhVd5TJaaGtqBEywMY9x4Kkk",
"txin_id": "b17ce7289254265b0c3b455a0ba830eabba341c6d83622236ffcae81c26203b6",
"txin_vout": 0,
"txout_id": "c6e6bc9106209c092bcfefb928e9326b00393646b1158869d9a883d7826a2606",
"type": "VALID_BET"
}
} % Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
143 143 143 143 0 0 104 0 0:00:01 0:00:01 --:--:-- 229
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
110 551 110 551 0 0 943 0 --:--:-- --:--:-- --:--:-- 1290
************
YOU WIN x3
************
{
"8106a4ddebc2beac1e51d1c887675b061c5b690c93da7a95c87733af5b307c3a:0": {
"bet_amount": 0.001,
"binary_string": "1111011101111001",
"created_at": "2014-10-03 00:25:15",
"game_address": "1LuckyY9fRzcJre7aou7ZhWVXktxjjBb9S",
"game_name": "yellow",
"multiplier_obtained": 3,
"payout_amount": 0.003,
"player_address": "1Bot4vHX7hNhVd5TJaaGtqBEywMY9x4Kkk",
"txin_id": "8106a4ddebc2beac1e51d1c887675b061c5b690c93da7a95c87733af5b307c3a",
"txin_vout": 0,
"txout_id": "-1",
"type": "VALID_BET"
}
}
https://bitcointalksearch.org/topic/m.9060423
If you like this code feel free to tip some btc: 1BtcBoSSnqe8mFJCUEyCNmo3EcF8Yzhpnc