Bitcoin Forum
May 28, 2024, 11:44:03 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 »
541  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest on: June 21, 2013, 05:54:52 PM
https://just-dice.com/roll/708311

542  Economy / Gambling / Re: 777Coin - The Modern Bitcoin Casino! [Beta][Free Bitcoins] on: June 20, 2013, 10:19:37 PM
EDIT: Clicking on "Settings" at the top does nothing, at least while in satoshi slider.

Has been posted here already and that is intended for now.
543  Economy / Gambling / Re: BitBook.biz - Bitcoin sportsbook - Best odds - Very quick transactions on: June 20, 2013, 10:19:02 PM
No, it was a valid parlay (no other bets from same game).  It said something like Heat -5.5 too popular, bet remaining 1.5000 -e  or something like that.  I gave up but it would be nice if owner of site explained.

Just checked - still not letting me bet Heat -5 straight up. 

I had this issue once with a straight bet on a tennis match. Quickly forgot about it and moved on.
544  Economy / Gambling / Re: My Sportsbetting Picks (Record 0-0 +$0.00) on: June 20, 2013, 08:23:14 PM
Why is Spain performing so good. I mean why is Tahiti not resisting ANYTHING at all?
545  Economy / Gambling discussion / Re: Sports betting Picks (NEW PROFIT SHARING PICKS) on: June 20, 2013, 06:27:24 PM
and Mjallby ML  (2.22 / +122)

Grrr, why did I trust you on this? Cheesy

Don't bet on sports you aren't comfortable with

Especially Swedish soccer leagues Cheesy

Actually soccer is the only sport I am comfortable with (all rules 'n such). But yeah: I have no clue about teams that are not from Germany, Netherlands, UK or national teams (national as in "the Spanish team").
546  Economy / Gambling / Re: BitBook.biz - Bitcoin sportsbook - Best odds - Very quick transactions on: June 20, 2013, 06:26:15 PM
Golf would be awesome!

BitBook does offer Golf.
547  Economy / Gambling discussion / Re: Sports betting Picks (NEW PROFIT SHARING PICKS) on: June 20, 2013, 06:23:02 PM
and Mjallby ML  (2.22 / +122)

Grrr, why did I trust you on this? Cheesy
548  Economy / Gambling discussion / Re: Sports betting Picks (NEW PROFIT SHARING PICKS) on: June 20, 2013, 05:02:19 PM
I also partially follow this one.

So far only the losing bets Cheesy

549  Economy / Gambling / Re: PrimeDice.com | The New Way to Roll | Lowest House Edge (1%) | Instant Betting on: June 20, 2013, 02:44:23 PM
That is JavaScript code.
550  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest on: June 20, 2013, 01:57:18 PM
Upper right: Deposit.
551  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest on: June 20, 2013, 01:36:45 PM
Over 100,000 bets made (due to Vlees botting), over 2400 BTC wagered, in less than 12 hours.

And toly!
552  Economy / Gambling / Re: 777Coin - The Modern Bitcoin Casino! [Beta][Free Bitcoins] on: June 20, 2013, 10:48:41 AM
very colourful site, but hurting my eyes (just a little bit) after a while. If you want people to stick with you, need a better colour scheme.

I can't quite understand how "bit boxes" works, and have difficulties in following your instruction.

Few items to note:
1. payout = 1.011x5 = 5.055 (are you rounding up to 5.1?)
2. won = 432 (please explain how this figure comes about) 432/5.1=84.7; 432/5.055=85.46



There might be simple answers to the above and I am too dumb to spot them.

I can confirm: The Bit Boxes are currently broken. It always draws 10 numbers instead of the typed in amount.

EDIT: When I pick 4 boxes only 1 and 2 prizes work.
EDIT2: Seems that the maximum prizes on the server is currently limited to the square root of the amount of boxes.
553  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest on: June 20, 2013, 10:09:32 AM
For people eager to lose their money (and stress-test this site):

Code:
var i = 0;

var initialBet = 0.00000005;
var nextBet = initialBet;
var round = 1;

var table = {};
function bet(round) {
if (round <= 1)
return {total:initialBet, bet:initialBet};
if (table[round])
return table[round];
var start = 0;
var previous = bet(round-1);
var newBet = initialBet;
while (-previous.total + 1.97*newBet < initialBet) {
newBet += initialBet;
}
table[round] = {total:previous.total + newBet, bet: newBet};
return table[round];
}

function startRound() {
i++;
if (i <= 5000) {
console.log(i);
roll();
}
}

function roll() {
var hi_lo = Math.round(Math.random());
if (hi_lo == 0)
hi_lo = 'hi';
else
hi_lo = 'lo';
socket.emit("bet", {
chance: "33.3333",
bet: nextBet.toFixed(8),
which: hi_lo
});
}

socket.on("wins", function (data) {
nextBet = initialBet;
round = 1;
startRound();
});
socket.on("losses", function (data) {
nextBet = bet(++round);
nextBet = nextBet.bet;
roll();
});
socket.on("jderror", function (data) {
roll();
});
554  Economy / Gambling / Re: PrimeDice.com | The New Way to Roll | Lowest House Edge (1%) | Instant Betting on: June 20, 2013, 10:06:56 AM
Do you have an API?

Used to work a month ago.
JavaScript:
Code:
	$.post('api_bet.php', {roll: 66.67, bet: YOURAMOUNT, seed: YOUR_SEED}).success(function(e) {
var won = $(e).find('.yolo').length == 1;
if (won) {
DO_WHATEVER_YOU_WANT_TO_DO_IN_CASE_OF_WIN();
}
else {
DO_WHATEVER_YOU_WANT_TO_DO_IN_CASE_OF_LOSS();
}
});
555  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice : FREE BTC : Play or Invest on: June 20, 2013, 08:29:07 AM
90
556  Economy / Gambling / Re: BitBook.biz - Bitcoin sportsbook - Best odds - Very quick transactions on: June 19, 2013, 11:15:49 PM
but bets for it are still pending.

In the case of some MLB games the game does not show up as pending but actually as being "Finished" with the correct score (compared to xscores.com and other sites). Yet it also takes some time there to get it payed out. IMHO MLB is not some minor league so how is it possible that these aren't payed out immediately?

Also @ the person above claiming they scam: I think you get "winnings" wrong. For example, you put 1BTC on something that has "winning odds" of 1.5, you will get 1.5BTC back when you won. But remember, you already payed 1BTC so your total is +0.5BTC.
This is completely normal and any sportsbook works like this (otherwise the odds would be insane and one could win 100% by betting on all options at once).
557  Economy / Gambling discussion / Re: Journey from .15 btc to a motorcycle (32 btc) via sports betting OVER 1 BTC NOW! on: June 19, 2013, 11:10:18 PM
https://bitcointalk.org/index.php?topic=154995.msg2470674#msg2470674

Weird, he claims he won 7 BTC even though he was not even near 2 BTC according to this thread at that date.
558  Economy / Gambling / Re: 777Coin - The Modern Bitcoin Casino! [Beta][Free Bitcoins] on: June 19, 2013, 10:55:24 PM
I was winning epically and suddenly I went back to 25000 tokens...?

Quickly tested it. Site works fine. Maybe a little too much colors for someones liking. Getting the gamble results back is very fast. I did not calculate it myself (too lazy atm) but they do give all information to see that it is provably fair. For the slots that is even quite detailed so everyone should be able to understand how it works.
http://777coin.com/slots/satoshi_scrambler/results.php?result=d8b7b59a2c5d5864108199a71cfea54046c72968856dcb32bc3d73739123cf67250603fa82afeccfaa9310446b00ea3fb95330c7ea28067ec743b0318cc29348
559  Economy / Gambling / Re: Coin-casino on: June 19, 2013, 11:03:42 AM
Unable to insert into database, please contact an admin and let them know: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'user' cannot be null
560  Economy / Service Announcements / Re: CoinsVictory.com - Bet Bitcoins on PacMan, Tetris, Snake & Others | 33% Referral on: June 19, 2013, 08:15:55 AM
For action games such as PacMan, Snake, etc, how do you intend to verify the legitimacy of submitted scores?

You can only play against verified friends, so would cheat your friends who you would then beat up IRL.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!