Bitcoin Forum
May 24, 2024, 07:03:11 PM *
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 61 62 63 64 65 66 67 68 69 70 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 ... 102 »
981  Economy / Gambling / Re: █ ▌► Foklers.com ║▌ Online fair games (NOT CASINO) █║▌ Start bonus 0,00001 B ◄ █ on: December 18, 2015, 06:04:27 PM
The foklers game is a real fun!! I enjoy to play it  Cheesy

Yes it really is fun! Takes a lot to become comfortable playing it because anything can still happen if you are unlucky but knowing how to place your's certainly gives a nice edge and lets the player win a lot. One of my unluckiest games was when the game collapsed from the topmost row and nearly reached the bottom (and ofc it toke my 3 tokens on the way).
982  Economy / Gambling discussion / Re: In Gambling any one got cheated by house? on: December 18, 2015, 09:56:32 AM
In Gambling any one got cheated by gambling house?

Just share your bad experiences with any gambling houses so other people will be aware of it.



Most sites are using good provable fairness systems that make it pretty much impossible to get cheated. There have been a few casinos that tried to cheat users but those dissapeared soon after. Right now it seems the way you could get cheated are sports books or when the site doesnt want to play out and tells that you have been doing something against the rules.
983  Economy / Gambling / Re: Need LTC gambling site on: December 18, 2015, 09:49:52 AM
Hello!

I'm looking for a gambling site allowing LTC that is provably fair.

Most of the sites I know are btc only. Any dice and poker site accepting ltc?

Im not sure about poker but www.bitdice.me does allow playing with LTC. I believe they have Dice and BlackJack (Both have a good provable fairness system) that can be played with LTC. They are also one of the most reliable sites out there and i haven't heard any complaints with them.
984  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] ♠ CasinoCoin v2.0 ♥ New Wallet ♦ 2+ Years Old ♣ on: December 18, 2015, 09:20:23 AM
Everyone,
If you have casinocoins stored at Cryptsy, please consider withdrawing them. Users are presently concerned that Cryptsy is showing severe indications of possible insolvency. In the event that Cryptsy collapses, we will not be able to recover any Casinocoins that you may lose. Please protect your coins and take them to your own wallet or to an alternate exchange.


Alternate exchanges:

Alcurex; https://alcurex.org/index.php/crypto/market?pair=CSC_BTC
Alterdice: https://alterdice.com/hello


I would also support that move. The problem however seems to be that it is almost impossible to withdraw them. I got some of my coins out but i know quite a few who tried to withdraw but their withdrawals never arrived. It will be really tricky to get them out but i think it is the only way.

Are they still pending? Was a transaction id issued? Or was the amount lowered because of inputs? Even yesterday, I was told by oher users that they were still able to withdraw albeit in smaller amunts due to the small inputs. What are you seeing going on at Cyptsy?

I managed to get most out using small transactions (it seems to work that way). I first tried it with bigger amounts and what happens is they leave them all as pending. Then after they dont get executed in a long time you need to go through support to cancel those orders.
What seems to be happening is the so called "endgame". They are trying to milk the users as much as they can. If you look at cryptsy you can see most coins are a lot higher then everywhere else. This makes them a lot of money. They can set up the orders themselves if they want. Because withdrawing BTC is really really hard. Only way out is buying the expensive altcoins.
985  Economy / Gambling / Re: Primedice.com | Most Popular & Trusted Bitcoin Game | Huge Community | Free BTC on: December 18, 2015, 09:05:17 AM
The 0.01btc giveaway to 100 BitcoinTalk members has officially been credited!  Thanks for participating and good luck everyone!

Thank you! Received the giveaway. Pretty active giveaway i have to say Tongue well over 100 people looking to enter. Im sorry if this is mentioned somewhere but is there something like a christmas event or a new years event ? Would be cool if there was but not sure how many could take part of it.
986  Economy / Gambling / Re: 🌟Bitvest🌟 ▌Investor Plinko▐ Changeable Rows▐ Multidrop▐ BIG Promo▐ RTP:98.3% on: December 18, 2015, 07:59:27 AM
Well, I was considering keeping this code private but figured given the lack of automated betting on the site I may as well make it public.

Below is the code for a simple martingale but for Bitvest. It features up to 5 bets a second, A client seed re-randomizer and stop loss. You can also modify your base bet and on loss multiplier as well (assuming you aren't afraid to tweak a bit of code).

Currently it is set to dust bet and win 1 satoshi a roll. A bankroll of atleast .005 BTC is recommended. You can use this script by pasting it into your browsers console (hit f12 in chrome) and hitting enter. It will continue to bet until you refresh your browser.

Code:
var bet = {base: 0.00000050, current: 0.00000050}; //Modify these values to change your base bet
var placeBet=function(){
$.post( "action.php", { prizes: "4,1.1,1.05,1,1.1,1.02,1.02,1.02,1.02,1.02,1.02,1.02,0,0,0,0,0",
token: token,
secret:0,
bet:bet.current,
bits:null,
user_seed:makeid(),
act:"play"
})
  .done(function( data ) {
if (!data.success){
alert(data.msg);
return 0;
}
    
var win=data.game_result.win;
console.log( win, data.data.balance );
if (win>bet.current){
bet.current=bet.base;
if (bet.current<bet.base) bet.current=bet.base;
}else if (win<bet.current){
bet.current=(bet.current-win)*50; //Modify this value in order change the on loss multiplier
}
//console.log(balance);
placeBet();
  }).fail(function() {
    setTimeout(function(){placeBet();},3000); //This is the value the script uses to re-send the rolls if the server doesn't respond
  });
}

//re-randomize our client seed to ensure provably faireness

function makeid()
{
    var text = "";
    var possible = "abcdef0123456789";

    for( var i=0; i < 16; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

placeBet();

The code above will directly bet to the site, You won't see plinko balls falling down however you will see your balance begin to grow by satoshis at a time. Please be careful using this script and of course never risk more than what you are willing to lose. I take no responsibility for any betting errors or loses incurred from the use of this script.


If you win something and would like to shoot me a tip, Or just appreciate the bot and use it, Feel free to send a tip to:
1ART8MzPqABmqWz4SsaKLZfrwb9HjNF5dv


Cheers everyone and good luck.

KLYE

Not bad! Was thinking when one of these will pop up. Will give it a try a bit later when i get some free time. Really nice to see that over 1mil bets have already been placed on Bitvest Smiley Really wanted to take part of that but i got overwhelmed and couldnt make it.
987  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] ♠ CasinoCoin v2.0 ♥ New Wallet ♦ 2+ Years Old ♣ on: December 18, 2015, 07:39:26 AM
Everyone,
If you have casinocoins stored at Cryptsy, please consider withdrawing them. Users are presently concerned that Cryptsy is showing severe indications of possible insolvency. In the event that Cryptsy collapses, we will not be able to recover any Casinocoins that you may lose. Please protect your coins and take them to your own wallet or to an alternate exchange.


Alternate exchanges:

Alcurex; https://alcurex.org/index.php/crypto/market?pair=CSC_BTC
Alterdice: https://alterdice.com/hello


I would also support that move. The problem however seems to be that it is almost impossible to withdraw them. I got some of my coins out but i know quite a few who tried to withdraw but their withdrawals never arrived. It will be really tricky to get them out but i think it is the only way.
988  Economy / Gambling / Re: •••• COINICHIWA • SUPER FAST DICE • JACKPOT • ACHIEVEMENTS •••• on: December 17, 2015, 08:23:16 PM
HAPPY HOUR 10k FAUCET!

(until 2015-12-17 21:15:00 UTC)

Thank you for the promo, ill come and make a few rolls, see if the place is still the same it used to be. Btw it is nice to see you back active it was pretty quiet on the coinichiwa front for a very long time. Ok time to go and have some fun Tongue
989  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★★ PandaCoin [PND] ★★★ New devs, old community ° No more locked threads on: December 17, 2015, 12:16:23 PM
As we say, PandaCoin will continue to exist after swap,
but with much lower total supply.

More rare = more valuable

Well yes, PND should be able to reach that way 20-30 satoshi as other coins already did after a BURN.

I`m looking forward to all updates regarding this, good luck!
20-30 satoshi WHAT THE FUCK

2 satoshi be difficult u have dream 20-30 satoshi.LOL
Not hard at all, I`ve already removed my sell wall, and others will probably do it soon.

Plus with 5-6 bitcoin probably it can be reached which is not an extraordinarly huge amound given the new popularity. I think we can make it Wink

I agree with you on this one. It is just a few BTC to make it up to like 10 satoshis. People just need to take away some walls and everything will be just fine. Once the new coin comes, or what ever is planed it will increase the value for sure. Pandas fun Smiley
990  Economy / Gambling / Re: FastDice.com LAUNCHED | Fast Rolls | Fast Deposits | Fast Wins |Daily Happy Hour on: December 17, 2015, 08:56:07 AM
Indeed, I've seen a lot of people complaining about "bad, scammy" streaks. The truth is, most of them were like 10 loss streaks for 50%.
The odds of that is 0.5 ^ 10 = 0.0009765625- Just under 0.1%, which is pretty common considering how many bets you play.
They have not seen the mega ones, of 20+. Moreover, the highest loss streak on a dice site for 50% was ~30.

This is exactly what people dont realize 10+ losses on red is really common. The real "rare" ones start once you get to the 18+ range as that possibility is pretty low. I understand where the people are coming from as noone want to believe they have such bad luck, its a good doze of reality Smiley
991  Economy / Exchanges / Re: Anyone else having problems logging into bittrex? on: December 16, 2015, 08:26:43 PM
Im just getting "oops sorry an error has occured" and then a contact button.

Just me or is everyone else getting this?

I just tried and it seems to work well for me. If you keep getting the same error then the next step is to contact Bittrex. You could also try another browser or maybe a new fresh user (like on chrome) to log in. Could be a chace issue or something like that.
992  Economy / Gambling / Re: █ ▌► Foklers.com ║▌ Online fair games (NOT CASINO) █║▌ Start bonus 0,00001 B ◄ █ on: December 16, 2015, 04:35:16 PM
I played some Auction and some of the regular game also and i have to say im starting to like it more and more every time i try it.
Once there's even more players it will be really fun and the best part is that it is not all random but "skill" will help you get the edge over others. Will be playing more for sure!
993  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BTI] Brain Technology Industries - "TronREX TAKEOVER & OVERHAUL" on: December 16, 2015, 03:43:58 PM
I heard about this takeover and it really looks like you have the passion to follow through on where the old version was lacking. It is really good that you already got into another exchange.
Any news on when we will see a new roadmap or what is planed for the coin ?
994  Economy / Gambling / Re: If Mayweather made a comeback, would you bet on it? on: December 16, 2015, 11:23:28 AM
If it did happen it would depend largely on who he is facing. Never know when someone decides it would be good to put him up against some other retired guy lol. In that case i could go with him, if he is to face someone new, i think his odds are not as great.
995  Economy / Gambling / Re: Can gambling sites deduct amounts in my account? on: December 16, 2015, 10:05:11 AM

Been playing with dice for a bout a week now and won few. I was wondering if gambling site can deduct some bitcoins in our accounts if they intend to. Can they?

The question you ask has a pretty obvious answer. Can a website owner modify and change the content of the site? If you answer that one you will know.
If the gambling site is legit and is not into shady stuff then they shouldn't. Play at reputable sites and it will not happen.
996  Economy / Gambling / Re: █ ▌► Foklers.com ║▌ Online games + Faucet ║▌ Referrals 50% ║▌ ● Start bonus ● █ on: December 15, 2015, 07:34:22 PM
Hello

We were just playing and encountered a bug. We were playing the auction game. One of the users bid 1200 and after that the game closed, just as no one had bid. I hope the bug can be sorted out soon Smiley
The game id is 823 and i think the user did not get coins.

P.S Move your thread to just "Gambling" away from games and Rounds as this is just for giveaways.
997  Economy / Gambling / Re: △▽BitKong.me - The Most Addictive Bitcoin Game Ever - Provably Fair. △▽ on: December 15, 2015, 06:45:23 PM
WOWZA! BitKong has reached 100 BTC of total bets!


Congraz! That is a huge milestone to reach, really shows that players enjoy the game and appreciate what you are trying to do. Im sure you the numbers will start racking up faster and faster as the user base grows Wink
Makes me feel like opening up some bananas on those charts.
998  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ►IVUGEO COIN◄►Please update your wallet◄►NEW HARD FORK◄ on: December 15, 2015, 05:26:17 PM
Wonder when iec will be open for trading again on bittrex

Thats a good question, i would also liek to get back to trading on Bittrex. Especially now that it seem YoBit has managed to update the wallet and we can transfer between the exchanges. This trading offtime hurts a lot tho, people dont like instablity. I hope Bittrex manages to start everything back up Smiley
Yes nice when that BOT gets switched back on too and trades about 50 BTC a day randomly. Wink

Bittrex is opened!
It is indeed. Hope the BOT returns now. Grin

Looks like the trade was opened just moments after i made that post lol. I know because i wanted to trade some but saw that trading was off, went to YoBit saw the wallet is on and sent my coins to Bittrex.
I hope that bot does come back, really nice profit when you catch it in action.
999  Economy / Gambling / Re: Greetings from the new 🌟🌟MoneyPot🌟🌟 staff on: December 15, 2015, 05:20:13 PM
At the end of the day, MoneyPot is going to have the apps that they believe will generate the move additional revenue for MoneyPot featured/advertised on MoneyPot. (this is assuming they use the same model that MoneyPot currently uses).

Thats the whole point of this business I think. MP relies on sites to give them profit so while they can help some sites to generate better traffic then why spend some of their time to help some useless sites. MP may be free for all but lets be real that it is a business and needs to generate revenue as well

95% of all the sites listed on MP would not see any betting on their sites if it was not for MP and that is a fact. Who would trust them ? Where would they get a bankroll ?
MP is a really nice place for new sites and interesting ideas. People should be happy for the opportunity given.
Looking forward to where you go from here Smiley

do you know how many apps are on moneypot?


Exact number ? No i do not, but it doesn't change anything about what i wrote earlier. Anyway, i do not think this is the topic for this discussion. Besides there's still plenty of time to go before the new team can start making changes and bringing them out.
1000  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ►IVUGEO COIN◄►Please update your wallet◄►NEW HARD FORK◄ on: December 15, 2015, 04:56:19 PM
Wonder when iec will be open for trading again on bittrex

Thats a good question, i would also liek to get back to trading on Bittrex. Especially now that it seem YoBit has managed to update the wallet and we can transfer between the exchanges. This trading offtime hurts a lot tho, people dont like instablity. I hope Bittrex manages to start everything back up Smiley
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 61 62 63 64 65 66 67 68 69 70 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 ... 102 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!