Bitcoin Forum
June 03, 2024, 05:01:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 ... 476 »
2401  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 12, 2015, 10:28:06 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.

Yeah, I like both of the scripts. I'm decent with PHP but not with running scripts that do things on other sites, Smiley.

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)?
2402  Other / Beginners & Help / Re: Where can I invest? on: November 12, 2015, 10:23:08 AM
Every kind of investment has it's own risk, so invest in bitcoin also has it's own risk.
If you believe it's good investment, you should do it.

Yes every investment in our real world has some risks, it's true in bitcoin world also. i believe cloud mining would be some what profitable even it's has some risk and slow ROI. I prefer cloud mining if I have some bitcoins to spend.

cloud mining is the worst idea to invest in my opinion. 99% are scams, the rest will never ROI for you in a timely manner. I do not recommend it.

Yes, pretty much everyone except Hashnest which is a reputable, at least until now. Even with them it's hard and long to ROI! Bitcoin mining game is very unpredictable and with the upcoming halving I would just stay out of mining game completely!
+100, definitely advisable to stay away from mining of any sort at this point unless you can get your hands on some cheap enough gear to ROI < 8.5-9 months.  And as for cloud mining, avoid it like the plague.  As mentioned above the vast majority of them are absolute scam's of one sort or another.

9 months is still way out there. Pay attention to how quick new hardware comes out. Pay closer attention to the massive strides in technology at the moment. The hash rate could easily triple within a couple week period. Things are moving very quick, and the pace is picking up day after day.
2403  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 12, 2015, 03:16:07 AM
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.
2404  Other / Beginners & Help / Re: Where can I invest? on: November 12, 2015, 03:13:48 AM
if i were in your shoes i wouldnt invest my bitcoins and keep it in either my paper wallet or hardware wallet as the price of it will start growing after some time

Tell that to the people that invested at $1200. I'm guessing they didn't lose anything?
2405  Economy / Gambling / Re: Dragon's Tale - a Massively Multiplayer Online RPG/Casino on: November 12, 2015, 03:12:17 AM
Yeah, Umuri was my mentor also. I would definitely recommend him if he's still there. But it's been so long since I logged into DT. Umuri was good about explaining the games and also gave you half of what he earned from being your mentor. He clued me into the secrets the seed planting game, the waterwheel, the air balloons and the wishing well. He really helped me to level up and unlock the higher level islands. Not sure if the game is the same now though. Maybe I should log in again and check things out.

They've actually made a lot of changes recently regarding that "giving back half" thingy.  I think it was pretty controversial and to be honest I still don't understand all the details of what went down.  In any case, I recommend LucyLuck as a mentor, she's almost always online.

I was wondering if this was allowed to begin with. Essentially it results in people buying referrals (who might otherwise not be using them).
2406  Economy / Investor-based games / Re: [ANN] MinerFarm - Virtual Mining Game for Real Bitcoin on: November 11, 2015, 04:55:33 PM
I can't login to the site. It says "Please check the captcha." but there is no captcha in the page. It didn't load. I refreshed several times.

i have the same problem!

http://www.minerfarm.com/login#tologin sometimes work.. sometimes don't work...

what can i do to fix it?
The fix to that is already posted few posts under it :
I can't login to the site. It says "Please check the captcha." but there is no captcha in the page. It didn't load. I refreshed several times.
I mentioned this before, the easiest way is to use a vpn service upon login in, that fixed my problem... You could fine many free vpn's out there and just use them and the re-captcha will appear
To name some of the good free VPN's out there that is tested by myself on minerfarm, are: Psiphon, HotSpot Shield and Tunnel Bear

or simply refresh your page with browser's refresh button Smiley

Ideally, none of that should be needed. Has Aliser stated what the issue is yet? This is the only site I've ever encountered with this problem.
2407  Economy / Micro Earnings / Re: [ANN] Mellow Ads - simple, bitcoin advertising. NEW free faucet!! on: November 11, 2015, 04:22:30 PM
Thanks that it is online again. But I have problem with my account. I am not able to claim from faucet. I am getting error message like "Faucet claim failed: Account is currently disabled for faucet claims" even I am not getting my ref bonus. Again as a publisher my balance is 0 btc though 5 active ads space are displaying ads for 5 days. I contacted lots of time. I understand you were mad about DDOS attack. Now hoping a quick solution from your end. Thanks.
My login: a.aftub@gmail.com

Do you have adblock on? Even though all ads showed up on the site I had to disable that to get the faucet to work.
2408  Economy / Gambling / Re: ToTheMoon.me | Invest into the Bankroll of Social gambling site on: November 11, 2015, 04:13:37 PM
Just received my bankroll from Twin. Really top guy refunding his players after getting over screwed over so bad, good luck with finding the scumbag hacker bud.

If you end up starting the site up again let me know I will be one of the first on!  Grin

+1 to this. Have there been any updates in regards to finding more information on who did this yet?
2409  Economy / Gambling / Re: Dragon's Tale - a Massively Multiplayer Online RPG/Casino on: November 10, 2015, 10:17:48 PM
I've only ever used the linux client.  It works alright for me.  You need several i386 packages in order for it to run.  I'm on debian but I assume ubuntu is multiarch by now.

I think the solidier statues on the private islands still work.

yes linux  client runs fine. if you are going to use faucet or soldiers to try out games it won't be enough you will have to deposit. warning this game is too addictive.

Thank you. Any good, up-to-date guide/review? (to have an idea of what I am going to find before actually getting in).
you can get guidance from your mentor inside the game they will teach you everything, i recommend user "umuri" he's good at almost every game.(i don't know if he still plays or not just check in someone will help you getting started Wink)

+1 to that. He was my mentor as well and would go around to the different games with me and explain timing and such.
2410  Economy / Securities / Re: [HAVELOCK] CasinoBitco.in CBTC on: November 10, 2015, 12:47:06 PM
Toss me a PM about the equity-based investing. I'm definitely interested in hearing what you're offering up.

On the Peerbet side, are you also including the other coins in the P/L statement, or is it just inclusive of BTC?

Will do in the AM, Ranlo.

On peerbet, we do the strike price of alt-coin / BTC at the end of the month and just include that in the P&L. Normally, we are doing anywhere from 1 - 3 btc in profit in alt-coins, Doge and Litecoin leading the way.


Got it. Do you also liquidate some of the alts? Asking because let's say LTC is $2 and the site gains 100. The next month it's $1 and the site gains 0. Would this count as a profit of zero or a loss of $100?

We've been exchanging alt-coin profit to btc at the end of each month when it's worthwhile (e.g. > ~0.10 btc)

Awesome. Thanks for your time and transparency! Smiley
2411  Economy / Securities / Re: [HAVELOCK] CasinoBitco.in CBTC on: November 10, 2015, 01:23:50 AM
Toss me a PM about the equity-based investing. I'm definitely interested in hearing what you're offering up.

On the Peerbet side, are you also including the other coins in the P/L statement, or is it just inclusive of BTC?

Will do in the AM, Ranlo.

On peerbet, we do the strike price of alt-coin / BTC at the end of the month and just include that in the P&L. Normally, we are doing anywhere from 1 - 3 btc in profit in alt-coins, Doge and Litecoin leading the way.


Got it. Do you also liquidate some of the alts? Asking because let's say LTC is $2 and the site gains 100. The next month it's $1 and the site gains 0. Would this count as a profit of zero or a loss of $100?
2412  Economy / Securities / Re: [HAVELOCK] CasinoBitco.in Bit777/Peerbet CBTC Thread- STATS! Q3 POSTED! on: November 09, 2015, 11:46:16 PM
October Metrics and Financials below.

Monthly Metrics: https://docs.google.com/spreadsheet/ccc?key=0AmSWZWkGJ1V3dFpxZHVTN0x6ZldUeHRteWdBd1pMNXc#gid=16

P&L - https://docs.google.com/spreadsheets/d/1mFzQOuJ-8hBI8ftH75EEhRkcpLh8NbJMJPOoKhK17Yo

Sportsbook:         -4.65 btc
HTML5 Casino:     +5.665 btc
Bit777/ PeerBet:  -17.04 btc

Overall Month: -16.025 btc

Noteworthy callouts
PeerBet had a pretty bad month starting in early October where a few lucky players went red hot and won over 55 btc in profit. Considering we fund ~30% of the bankroll – we took a sizeable loss as well. However, we are happy to report that we have received two different offers for Peerbet and Bit777 and are now finalizing the path forward for all parties. We hope to share more details (and hopefully a closed deal announcement) by the end of the year.

Sportsbook – The sportsbook took a modest loss on relatively low volume. While we are seeing better traffic on the weekend with US Football in full swing, we are no doubt down in volume year over year. Consider that in October 2014, we took over 2300 bets for a total of 1316 btc in handle compared to October 2015 where we only took 748 bets for 159 btc in volume.

We attribute our decreased action in the sportsbook to the following, fixable, pain points:

·         A lack of active marketing of BitcoinRush

·         Lower Limits than last year (we need lower limits since we are taking on 100% of the risk)


Future considerations

With the eventual sell of Peerbet / Bit777, we are taking a very close look at what we need to improve BitcoinRush.io to return to profitability, this includes new development in the Sportsbook, Slots Integration and paid marketing; however, in order to achieve this we will be seeking additional partners in exchange for equity.  Please note - we will not be issuing any new Havelock units, instead we will be transferring units currently owned by management to any new partners - please contact us directly to learn more.

We know, and encourage unit holders to understand, that this will not happen overnight and will take hard work and patience; however, we feel extremely confident that the Bitcoin Gaming marketplace is continuing to grow and that BitcoinRush.io with its solid reputation, and unique offerings can still capture market share from some of the earliest Bitcoin Casinos as well as the new professional competition which has entered the marketplace.





Toss me a PM about the equity-based investing. I'm definitely interested in hearing what you're offering up.

On the Peerbet side, are you also including the other coins in the P/L statement, or is it just inclusive of BTC?
2413  Economy / Gambling / Re: Dragon's Tale - a Massively Multiplayer Online RPG/Casino on: November 09, 2015, 11:44:13 PM
Hi guys i just want to ask if this is a new official website of the dragon's tale http://www.dragons.tl/
yes this is the official link of the game "dragons tale".

The link on the first page is not working anymore in my laptop www.atitd.com...
this link or website is of the game called "a tale in dessert" i think. dragons tale is built using this game's source.
I install it now but i dont know what i will choose there are selection The one is ( A Tale in the Desert VII )(A Tale in the Desert VII beta) and the last one is Dragon tale. What should i choose?
update:
I choose Dragon tale how about the affiliate code?
i was play the game now its really cool
...

I believe affiliate codes need to be done personally. The only one you can do yourself is the mentor one, which requires a higher level.
2414  Other / Beginners & Help / Re: How to make Bitcoin transactions untraceable? on: November 09, 2015, 11:54:01 AM
Trade bitcoin for altcoins on one exchange. Move altcoins to another exchange.and trade for BTC. Move to a wallet you control. Use Tor when you do this.

If you're going to do that, might as well say "trade BTC for cash and then use the cash to buy BTC." This has nothing to do with making it untraceable. Converting from one to another isn't making it anonymous, it's using alternate forms of money. Two very different things.
I may be wrong but it is traceable in most alt coins but how about anonymous coins like monero? Wouldn't this reduce the risk? The change is price is another thing.

Again, converting to another coin isn't making Bitcoin anonymous. It's simply converting to a different coin. This is no different than saying "You want to make Bitcoin anonymous? It's easy. Just use euros instead and now your BTC is anonymous!"
2415  Other / Beginners & Help / Re: How to make Bitcoin transactions untraceable? on: November 09, 2015, 11:36:10 AM
Trade bitcoin for altcoins on one exchange. Move altcoins to another exchange.and trade for BTC. Move to a wallet you control. Use Tor when you do this.

If you're going to do that, might as well say "trade BTC for cash and then use the cash to buy BTC." This has nothing to do with making it untraceable. Converting from one to another isn't making it anonymous, it's using alternate forms of money. Two very different things.
2416  Economy / Service Announcements / Re: [ANN] Purse.io - Bitcoin Amazon Marketplace - Save ~10-25% on Amazon Wishlist on: November 09, 2015, 11:33:57 AM
Someone want to buy my order?

$427.98 --> $321 (25% off)
PM me

A little lost by this. Are you saying someone gives $427.98 in BTC for $321, or $321 in BTC for $427.98?
2417  Economy / Investor-based games / Re: [ANN] MinerFarm - Virtual Mining Game for Real Bitcoin on: November 09, 2015, 10:20:57 AM
It would be too cool if I could transfer the money from your other faucets to my MinerFarm account!

i think you can do it but there is minimal deposit amount (On Account section : Minimal amount for deposit is 0.0001 BTC). You shuld send more than 0.0001 BTC from faucet.

So how would I ... Oh, I would do a withdrawal from a faucet, asking it to be paid to the deposit address on MinerFarm?


So I could do the same with faucetbox? Asking for my withdrawal to be sent directly to the mine, rather than go through my wallet first? I never thought of that!

If you do this, make sure you edit your minimum balance so that it's high enough to be credited when it's sent out.
2418  Economy / Gambling / Re: Dragon's Tale - a Massively Multiplayer Online RPG/Casino on: November 09, 2015, 10:18:37 AM
I tried playing it is pretty hard getting started

I have to agree with you there. The game is rather hard to pick up because the UI is old and takes getting used to it. They have a mentor system where older players help newbies but it is still a lot to take in when you are just starting.
Some of the games also have a "skill" element so theres something to learn all the time.

What is the best sites for info on the game?

Best would be to look into their official Wiki, it has quite a lot of info on the game. I felt the Wiki helps but for me the biggest help was a mentor who helped me get started, told me about the games, helped me set up travel points on different islands and told me what to make as my home island.
If you dont have a mentor/helper, ask in chat. Theres quite a few people ready to help.

A mentor also helps because they may know tricks to different games. The more you play, the more your mentor wins as well, so they directly benefit from you winning (and therefore giving good advice).
2419  Economy / Gambling / Re: BetterBets.io |Secure & Trusted|Weekly Rake+VIP|DICE★PLINKO★HORSE RACING on: November 09, 2015, 10:17:10 AM
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.

I apparently missed something. What is the new feature, or rather, what are we trying to wager 1 BTC+ for?
2420  Economy / Micro Earnings / Re: [ANN] Mellow Ads - simple, bitcoin advertising. NEW free faucet!! on: November 09, 2015, 10:14:48 AM
IMPORTANT UPDATE

Just to let you guys know that we are under DOS attack again. We received this email earlier today...

-------------------------------------------------
You be dosed. Pay 2 bitcoins and I stop.

1Avvs166fkV45eECThqtpCXHnKCAwBUjAA

My botnet is extremelly powerfull. So think.

If not, price increase.

Dont answer me. When payed i know it was you and go FOR EVER!


С уважением,
Чулпан Горохов
mister.chulpan@inbox.ru
-------------------------------------------------



We are working on getting the site back up as soon as possible, please bear with us.


Quick update: Our service provider has advised that "Your server was being attacked with 8GBs. It has been null routed for a minimum of 9 hours to protect our network."
We are continuing to work to get this resolved asap.
Please be assured that once we are back up and running we will adjust our system so that no-one loses out. Publishers will be paid for active network campaigns (even though they are not displaying currently) and advertisers will have their campaigns extended to make up for the lost time.
Thanks for your patience

I want to thank you for making everyone whole on this, but what are you able to do to keep it from happening over and over? It looks like your host just shut you down instead of working to resolve it. Is this going to continue happening?
Pages: « 1 ... 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 ... 476 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!