Bitcoin Forum
May 01, 2024, 12:52:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 »
281  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 14, 2015, 03:58:53 AM
Nice script from Nico there as well as an awesome promotion for everyone to try out. Who wouldnt want 3.5btc?

Good point only couple days left wonder what players will get the prize.

Just found your thread on the bitcoin.com forum great idea to have one there as this forum is really outdated.  
https://forum.bitcoin.com/gambling/betterbets-io-secure-trusted-weekly-rake-vip-dice-plinko-horse-racing-t2215.html
282  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 12, 2015, 09:04:35 PM
Great and helpful script NLNico, thanks...

Yeah asrita it keeps us from getting a finger cramp from clicking I still hope to turn 30k sats into 3 btc too.
283  Economy / Gambling / Re: Introducing PevPot.com The Only +EV Lottery on: November 12, 2015, 09:02:05 PM
Sent some bits to try it and see if I have any luck left Smiley
284  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 12, 2015, 03:48:07 PM
for(i=0;i<10;i++) { setTimeout(function(){ placeBetPlinko(1,0.00000100,2); }, 1000*i); }

Tried this nice and easy console script in Chrome set it to run 5000 bets and works great hit 141x multiplier...someday 9999x
At one point had over 300 plinko chips on screen I thought my pc gonna blow up but was fun.
285  Economy / Gambling / Re: Best gambling site to put in my sig for referrals? on: November 12, 2015, 07:35:30 AM
Betterbets.io 15% doesn't matter if the player wins or loses plus great owners.
286  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 12, 2015, 06:21:10 AM
Okay, so I simplified it a bit and tested it. So this PHP code actually works to make 1 bet (you can loop it yourself to auto-bet, just don't make a infinite loop lol.)

Notes:
- Only those who know PHP should use this. It's not a bot for all users or whatever.
- You have to get ajax key + cookies manually and put it there
- The plinko "rules" are just saved on server, so change it in browser on your account and just run script would work
- You could actually make 1 cURL command in terminal to make 1 bet - so that might be easier than PHP script
- Etc. etc. use on own risk :p

Code:
<?php

$ssl_ca 
"/var/www/cacert.pem";
$url "https://betterbets.io/ep/ajax/?func=placeBetPlinko&ajaxUserKey=";
$ajax_key "yourajaxkey"// NOT same as API key > get manually

function make_bet() {
global $url,$ajax_key,$ssl_ca;

$ch curl_init();
curl_setopt($chCURLOPT_URL$url.$ajax_key);
curl_setopt($chCURLOPT_POST1);
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);

// SSL stuff you can change 2 and 1 both to 0 and remove CAINFO if you don't care about verifying SSL
curl_setopt($chCURLOPT_SSL_VERIFYHOST2);
curl_setopt($chCURLOPT_SSL_VERIFYPEER1);
curl_setopt($chCURLOPT_CAINFO$ssl_ca);

curl_setopt($chCURLOPT_POSTFIELDS
http_build_query(array(
'pidx' => "2"// Green=0,Yellow=1,Red=2
'r' => "3"// Green=1,Yellow=2,Red=3
'ui' => "1",
'w' => "0.00000100" // Wager amount
))
);

// Change to your cookies
curl_setopt($chCURLOPT_COOKIE,"__cfduid=1; PHPSESSID=1; BetterBetsSession=1");
curl_setopt($chCURLOPT_HTTPHEADER, array('X-Requested-With: XMLHttpRequest','Referer: https://betterbets.io/app/game/plinko/'));

$server_output curl_exec($ch);
if (empty($server_output)) {
die('broken');
} else {
$return json_decode($server_output,true);
if (empty($return['profit'])) {
echo $server_output;
die('broken');
} else {
echo '<pre>';
print_r($return);
echo '</pre>';

return $return;
}
}
}

make_bet();

?>








EDIT: Just to be clear, anyone who wants to make a autobet bot should definitely NOT do it in PHP lol. For example it's even easier to do it like this:

Let's say we want to bet 10 times on Yellow for 100 sats each:

1. Press F12 while plinko game is open in browser
2. Go to "Console" tab
3. Enter the following command and press enter:
Code:
for(i=0;i<10;i++) { setTimeout(function(){ placeBetPlinko(1,0.00000100,2); }, 1000*i); }
4. Done.



Notes:
- The 0.00000100 is the amount
- To change colors: change 1 and 2 parameters at the placeBetPlinko function... Green=0+1, Yellow=1+2, Red=2+3
- I put a 1 second delay (1000ms) to not DoS the site
- You can change the 10 to slightly higher, but I recommend to not make it -too- high, just in case anything goes wrong
- Use at own risk Smiley

Quoting for later use omg thanks for posting this I been looking for a way to automate my hunt for the 9999x multiplier.  Good post NlNico.
287  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 11, 2015, 01:31:04 PM



Nice contest i just realized if you bet 2 btc per bet this could be done in 500 bets that is only 2 minutes at full betting speed lmao. May be easier to win than i first thought.
288  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 08, 2015, 12:55:30 PM
Theres still a possibilty of a weekly raffle guys. Dont forget to make sure you have your tickets set just in case

That would be a nice surprise if it does happen on one of this month's weeks. I only submit 20% of tickets to carry them each month.
289  Economy / Gambling / Re: MoneyPot.com :: The bitcoin gambling wallet on: November 07, 2015, 01:25:54 AM
Good idea unless we want to keep weeding through 300 piles of all these stupid sport prediction and why do you gambles posts. This subforum is a cesspool of spam and could benefit investors with something else.
290  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 06, 2015, 10:36:11 PM
Hello everyone, this is just a reminder to keep your accounts secure and for players who have bet over 1 Bitcoin worth of volume make sure you do not forget your account name and password. If you have not used our site yet I urge you to give us a try and wager at least 1 BTC in volume to participate in the upcoming bonus we are developing. Every 1 BTC wagered will be counted and tallied up in December when this new feature launches.

Players who join us after the promotion will still have a chance as well, but having a previous account and wagers (over 1 BTC volume) will allow you to have instant access to this bonus at launch.

Good luck players, come beat the house up Smiley

This bonus stacks like most of our other promotions, so for every 1 BTC wagered you will receive more.

This sounds like something really good for us I like the fact you take our past betting into this too can't wait for the revealing.
291  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: October 31, 2015, 12:56:17 PM
Since today is the last day to win the ipads any hints for next month raffle?
292  Economy / Gambling / Re: Betterbets.io vs PocketRockets Casino on: October 30, 2015, 12:15:41 PM
i think prc is better .. ilove the ui and have always won a couple of times....betterbets is nice but doesnt steals the show when it comes to battle against PRC... Smiley

I feel the same about betterbets I think it's way better and the most modern of every casino with the best bonuses by far.
293  Economy / Exchanges / Re: So coinbase closed my account for gambling... on: October 30, 2015, 06:33:25 AM
Moneypot uses a mixer upon withdraw as a feature that helps bs like this.

 

nice idea of using a mixer but isnt it that withdrawing funds from a gambling site have withdrawal fee? then another fee for using a mixer?
that's a lot of fees to pay before funds reach the wallet

No moneypot provides it to players as a service just one normal fee.
294  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: October 30, 2015, 06:26:09 AM
Congrats to PRC for kicking our asses. Til the next time guys. Hopefully the next challenge will bring out some big guns. Seems everyone stayed home for this 1

Wish I could have helped more btc low atm.
295  Economy / Exchanges / Re: So coinbase closed my account for gambling... on: October 30, 2015, 06:25:26 AM
Moneypot uses a mixer upon withdraw as a feature that helps bs like this.
296  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: October 30, 2015, 03:05:44 AM
I wouldn't mind winning an ipad this month but my raffle luck is not the best. Grats to the winners.
297  Economy / Gambling / Re: stay far, far away from vegascasino.io on: October 29, 2015, 09:46:06 PM
I find it fascinating people are still playing at non provably fair casinos. You can watch patterns all you want but playing at these types of casino you can't verify bets. If you are playing at one of these 100s of non provably fair sites ur doing yourself a disservice.
298  Other / Meta / Re: Bitcointalk is it possible to separate businesses and gambling discussion? on: October 28, 2015, 09:58:01 PM
It's getting worse look at page 1 today its like sig post spam fest I can barely find my favorite casinos in that shit. OP has a valid point need gambling discussion and take out all that crap then make main gambling section business threads only it's a mess.
299  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: October 27, 2015, 12:20:47 PM
Dammit now I'm curious too sounds interesting BetterBets can't wait to see the updates.
300  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: October 23, 2015, 07:50:54 AM
I'm sure that the whale betting 200btc+ on PRC would be able to do 5k in wagers in a matter of minutes, :p.

I think the whale will not be coming because of the low max win, He is betting 2x for high amount and the max win here is now 7 btc. ALso the whale has just lost 100 + btc yesterday. The whale should be getting nice rakeback from PRC as well

Lobos what's next in for development? I see you just got back after bring away. Lot of investors are curious myself included.

Im curious myself, also I want to see the new game that was announce like  2 - 3 months ago, how is it going?

Ouch, wasn't aware he lost 100 BTC. How do you get this information from PRC?

It is in PRC's thread and and you can even check the number from dicesites.com. Because of this one whale the number of wager warz between PRC and betterbets is now more than 3k bitcoin different. Those who bet PRC to win at 3x odds will be happy right now, I think the match is almost decided

Ah, I thought you could track specific player results like with MP. And agreed... I'm not even sure if Mollotype and the others can top that now. Maybe it'll have a surprising twist, Smiley.

Let's hope so I'd hate to see betterbets stop being creative about this industry due to low player participants.  This is why we can't have nice things lol
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!