Pages:
Author

Topic: BetterBets.io |V2 NXT betting + Shapeshift.io|🎲 DICE★PLINKO★PVP Game CORE - page 81. (Read 315811 times)

legendary
Activity: 1988
Merit: 1007
Bjorn what does sale of moneypot mean for Betterbets is changes or will remain same? I invest in moneypot as it is only way to invest in Betterbets so I invest in your casino in this fashion. Do you plan to sell? PM me if this info not public I can evaluation investment.

I'd like to know how this all affects BB as well. Changing ownership can be a huge deal, both BB and elsewhere.
full member
Activity: 134
Merit: 100
Bjorn what does sale of moneypot mean for Betterbets is changes or will remain same? I invest in moneypot as it is only way to invest in Betterbets so I invest in your casino in this fashion. Do you plan to sell? PM me if this info not public I can evaluation investment.
hero member
Activity: 728
Merit: 500
Betterbets.io Casino
With all the bonuses and take a this casino offers why are players still playing sites like PD? I dont get it. PD only offers a higher faucet and affiliate bonuses. Betterbets has a crap faucet sure but if you're a mid size to high roller betterbets is the place to play.

20% of hose edge rake back 15% affiliate commission raffles I mean really c'mon.

I never understood this either people afraid of making extra btc from betting. Maybe players hate bonuses lol

I think players new and old would rather know the options for bonuses are still available even if they are not taking full advantage Smiley
hero member
Activity: 560
Merit: 500
With all the bonuses and take a this casino offers why are players still playing sites like PD? I dont get it. PD only offers a higher faucet and affiliate bonuses. Betterbets has a crap faucet sure but if you're a mid size to high roller betterbets is the place to play.

20% of hose edge rake back 15% affiliate commission raffles I mean really c'mon.

I never understood this either people afraid of making extra btc from betting. Maybe players hate bonuses lol
legendary
Activity: 1282
Merit: 1051
With all the bonuses and take a this casino offers why are players still playing sites like PD? I dont get it. PD only offers a higher faucet and affiliate bonuses. Betterbets has a crap faucet sure but if you're a mid size to high roller betterbets is the place to play.

20% of hose edge rake back 15% affiliate commission raffles I mean really c'mon.
hero member
Activity: 728
Merit: 500
Betterbets.io Casino

Tell your friends to come join you at https://betterbets.io and earn 15% of house edge for their bets!
If you own a blog or faucet putting up a banner link with your referral code is a great idea.

BetterBets.io encourages our players to keep building the community it will help greatly for some upcoming features!

You earn affiliate from the referred players' volume, win or lose it counts towards BTC credit.
hero member
Activity: 560
Merit: 500
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
legendary
Activity: 3682
Merit: 4469
Nice script from Nico there as well as an awesome promotion for everyone to try out. Who wouldnt want 3.5btc?
hero member
Activity: 728
Merit: 500
Betterbets.io Casino

Hello players, there is still three days left to take advantage of this bonus rake.
This is 1.1BTC higher than the normal Silver VIP Cashback and will earn you extra raffle tickets as well!
hero member
Activity: 560
Merit: 500
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.
full member
Activity: 352
Merit: 100
Great and helpful script NLNico, thanks...
legendary
Activity: 1274
Merit: 1006

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

Nice script NLNico, thanks !! ●‿●
legendary
Activity: 1876
Merit: 1295
DiceSites.com owner
But question: how do you know, for example, what code to use for the JS script? Like how do you get this information from the site (as I'm guessing it should be similar for other sites)?

Generally start is developer tools (F12) and Network tab. You can see all the scripts/socket/etc being loaded. Alternative just "view source" (CTRL+U) to easily watch source (and click to javascript files.)


For direct betting by URL request: if you make a bet, you can see the actual request being made in that Network tab. So easy to make the same request with your own code.

For on-site betting: I would check the scripts that are loaded and seem relevant. In this case BB loads "plinko.min.js". So in that file, I search for "placeBetPlinko" (because I know this is used in the URL request) but it's not there. BB also loads "ajax.js" so I checked that. In there you can find "placeBetPlinko" in the function placeBetPlinko(). So now you just have to look which parameters it takes and you can run it in console Smiley



Ps, I actually use FF addon "Firebug" and I can even easily search through all the javascript files at once in their Network tab, so finding "placeBetPlinko" is even easier that way. Not sure if the default FF and Chrome "developer tools" offer that.
Ps2, if that minimized javascript looks a bit difficult to follow, try http://jsbeautifier.org
hero member
Activity: 560
Merit: 500
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.
legendary
Activity: 1988
Merit: 1007
hero member
Activity: 560
Merit: 500
legendary
Activity: 1876
Merit: 1295
DiceSites.com owner
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:

$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 '
';
print_r($return);
echo '
'
;

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
legendary
Activity: 1988
Merit: 1007
I did indeed make a script to bet continuously during that promo. I don't feel like releasing it though, it was a pretty ugly PHP script and I am pretty sure it's already broken.

Basically I just made a loop with a cURL request to bet with manually the URL/cookies copied from browser. So that's pretty simple if you know some programming.

Any chance you could share the script (even if broken)? I'm new to cURL and figuring out how these things work (when it comes to interacting with a site) so it would be awesome to see an example for a site I use, :p.
hero member
Activity: 728
Merit: 500
Betterbets.io Casino
woowww Horse Racing i play this

Yes indeed horse racing is given a multiplier of 4.95x so it's a decent bet when it wins, good luck! Smiley
legendary
Activity: 3682
Merit: 4469
woowww Horse Racing i play this

Yep Betterbets offers horse racing, dice, and plinko. Also hear they may be adding another game soon.
Pages:
Jump to: