Pages:
Author

Topic: ★★★ MEMs LIST of GAMBLING SITES ★★★ - page 11. (Read 134964 times)

hero member
Activity: 640
Merit: 771
BTC⇆⚡⇄BTC
What about adding a note/symbol for those that offer games with progressive jackpots? Wink

Ahhh, so nice to talk to an actual gambler and not a scam operator desperately defending their scam.

Yes, yes, 100 times yes.
I love a good jackpot, definitely adding it.

Cheers, keep up with the good suggestions all.
Yes indeed, I am a gambler!  Smiley

However I'm already running a gambling experiment: a Bitcoin Raffle Lottery (with progressive jackpot and provably fair, of course). Wink

Keep up the good work!

Cheers!
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
Auto scoring added, not in the bbcode but its on the website.

Im a bit tired to be explaining it all right now, but the short explanation is higher == better.

edit (fixing code):
here is the sub that generates the score:

Code:
sub auto_score
{
# generate score
my $r = shift;
my %h = %$r;
my $score = 0;

$score -= 2 if($h{'badge_not_pf'} eq 'yes');
$score -= 1 if($h{'badge_unfriendly_admin'} eq 'yes');
$score -= 1 if($h{'badge_false_adds'} eq 'yes');
$score -= 0.5 if($h{'badge_pf_concern'} eq 'yes');
$score -= 1 if($h{'badge_payout_issues'} eq 'yes');
$score -= 2 if($h{'badge_non_responsive_admin'} eq 'yes');

$score += 0.1 if($h{'badge_progressive_jackpots'} eq 'yes');
$score += 0.2 if($h{'badge_provable_results'} eq 'yes');
$score += 0.5 if($h{'badge_friendly_admin'} eq 'yes');
$score += 2 if($h{'badge_pf'} eq 'yes');

$score += 0.5 if($h{'status'} eq 'approved');
$score += 0.25 if($h{'status'} eq 'pre-approved');
$score += 1 if($h{'status'} eq 'untrustworthy');

$score -= 5 if($h{'status'} eq 'scam');
$score =  0 if($h{'status'} eq 'offline');
# award extra points for low low house edges.
if
(
$h{'badge_pf'} eq 'yes' &&
looks_like_number($h{'house_edge'}) &&
$h{'house_edge'} < 2
)
{
$score *= (1 + ((2 - $h{'house_edge'})/2));
}
return sprintf("%.2f", $score) + 0;
}


also finished off the moderator code Smiley
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
moderator role added and completed Smiley any would be moderators I encourage you to create accounts now.
html "good enough".
bbcode great (imho).
added all coinflip games - working my way down that list.

tomorrow:

automatic addition of sites (finally I hear site admins sigh).
Add pre-approved category (mods have approved, just waiting on the final sign off from grumpy (me)).
all that will be needed is a memslist.txt SOMEWHERE on your server containing:

Code:
name: SITENAME
email: [email protected]

An email will be fired off to you with a generated password enabling you to add all your games + nice descriptions etc (brief please) yourself.
The site and games will automatically added to pre-pending which I and other moderators can view in the lists but normal users cannot (to prevent spam & abuse).
Then after a quick inspection it will be moved to pending or "pre-approved".

on a side note: its been sad to see so many nice game sites go offline while I have been absent.
member
Activity: 136
Merit: 15
Mem,

Can you please review http://www.bituna.com and add it to your list.

Bituna.com is for now first and only bitcoin lottery based on the official results of the existing Italian and New York lotteries.

Bets can be placed every hour for the Italian lottery Win For Life Classico and every night for New York Pick 10 lottery.
Because is based on the official results of the existing lotteries there is no possibility for cheating.

copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
A JSON interface would be awesome. That way I could add your reviews on my website without having to update it everytime you add a new review.
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
so, for users / site owners here is a USEFUL progress report (and not yay code code test test).

* Working through each category on main post (just finished Dice/ Odds)>
* doing simple offline check for each.
* once all sites and games are added, I will review all current pending sites in the main list first (they have waited the longest).
* then scan my email/ private messages and work through each request, pending, review etc.

now code stuff:

* the moderator roles ARE COMING (grrm / southpark).
* bbcode is great, very happy with the end result and its all templated for easy adjustment later on.
* will likely focus on auto submitting to bitcointalk tomorrow, bbcode is good enough for it now.
* todo badges for HTML code.
* decided to add JSON interface (basic at first then let it grow), lowest on todo list unless I get distracted.
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
Mem, we can host your list on Bitcoin Reviewer for free. You can benefit from the additional exposure too Smiley

maybe a mutual link / json api - Im all for people reviewing bitcoin services, anything that helps people avoid scams etc etc.
I will keep hosting with hostgator for now, mainly because I like to be in control of my code and I dont like other people seeing how messy it is when Im working on it.
Also I quite like plugging along doing my thing.

But thanks for the offer because it has given me the idea of adding a json api Smiley

Sounds good. Smiley Would love to integrate your ratings into Bitcoin Reviewer too.

to easy I'll tack it onto my todo list.

just spitballing ideas but Id like to take the merit & demerit badges a bit further and create a rating system.

eg:

provably fair: +2
provable results: +0.5 (to be expected in this day and age).
friendly admin/ support: +0.5
not provably fair: -1
unfriendly admin: -1
payout issues: -1

to give an overall score.

for anyone interested in seeing how my templating system works, well its basically what I wrote for wiicr but adjusted for my current needs + a lot more security since this is a public facing service & not a hack for streaming media to the nintendo wii.

you can browse the current default template (coders html 1.0 ui) here:
http://memslist.com/list/templates/mem/
I call them .tpl files for TemPLate. Since ive been knocking out perl cgi code since the mid 90's for various small jobs Ive found it easier to smash together my own simple templating, I think users will find it easy enough, I had many good themes for WiiCR (some amazing) thanks to users finding it easy to work with.

Anyone interested is welcome to build a new template and email it to me for addition, if the theme is nice enough I may make it the default Smiley
users will be able to set their prefered theme in their profile (eventually).
Naturally, you may add your own "short" footer (small graphics are fine as well) with a link to your own domain to advertise your html skills Smiley
b!z
legendary
Activity: 1582
Merit: 1010
Mem, we can host your list on Bitcoin Reviewer for free. You can benefit from the additional exposure too Smiley

maybe a mutual link / json api - Im all for people reviewing bitcoin services, anything that helps people avoid scams etc etc.
I will keep hosting with hostgator for now, mainly because I like to be in control of my code and I dont like other people seeing how messy it is when Im working on it.
Also I quite like plugging along doing my thing.

But thanks for the offer because it has given me the idea of adding a json api Smiley

Sounds good. Smiley Would love to integrate your ratings into Bitcoin Reviewer too.
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
Mem, we can host your list on Bitcoin Reviewer for free. You can benefit from the additional exposure too Smiley

maybe a mutual link / json api - Im all for people reviewing bitcoin services, anything that helps people avoid scams etc etc.
I will keep hosting with hostgator for now, mainly because I like to be in control of my code and I dont like other people seeing how messy it is when Im working on it.
Also I quite like plugging along doing my thing.

But thanks for the offer because it has given me the idea of adding a json api Smiley
legendary
Activity: 882
Merit: 1000
Hi mem,
Wondering if you would like to review and add https://pocketrocketscasino.eu

Official thread here https://bitcointalksearch.org/topic/poker-30-rakeback-blackjack-invest-play-chat-pocketrocketscasinoeu-220740

Been live now a year offering poker, blackjack and dice with options to invest in all house games or open own table.
Dice has 0.96% house edge.

Was the first Bitcoin Open Face Chinese poker site too which is the main draw. Players can play for Bitcoin, Dogecoin, Litecoin.

Thanks
Dean
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
ok that formatting (latest edit on this page) looks pretty sweet.

Badges etc are appearing as they should.....

need to finally add [time]

need a unfair icon/ badge, suggestions welcome.

will make a start on the autosubmission / auto update shortly.
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
Mem, just some friendly advice. It might be smart to close this topic and open a new one, once you got that BBCODE generator working. That way a lot of unnecessary posts will be gone Wink

no this topic will live on forever Tongue

but I do like to go back through and delete / cleanup some of my messy posts.
copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
Mem, just some friendly advice. It might be smart to close this topic and open a new one, once you got that BBCODE generator working. That way a lot of unnecessary posts will be gone Wink
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
If you are updating this list anytime in the future, everydice.com has cheated me out of my money by not crediting a deposit.

Have there been complaint's about everydice?

Im still catching up atm, is there a thread I can read ?
member
Activity: 118
Merit: 10
If you are updating this list anytime in the future, everydice.com has cheated me out of my money by not crediting a deposit.

Have there been complaint's about everydice?
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
Please add multibet.io, provably fair dice. We use the same system as Just-Dice if you want to verify it.

you are already in pending Tongue

1 thing at a time folks Wink
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
mem,

was wondering if you could review fastbluff.com.


Please add multibet.io, provably fair dice. We use the same system as Just-Dice if you want to verify it.

Mem,
Can you please review http://royal-casino.pl and add it to your list. Royal Casino provides fair gambling environment and 24h support. Royal Dice game based on coindice 3.0 and legitimate Royal Bitcoin Pyramid with 110% return coming soon...



added to db as pending

all sites, please let me know your house edge, a discussion thread if you have one etc etc.
no favouristism being shown atm, everything new will be shoved into pending UNTIL Im happy with the bb code generation and finish off a few todo items.
Once done, I can easily and at my leisure review sites .

I will try to do in order of first contact + bonus to those nice admins who offer me some btc to test their sites.
Dont worry people, I dont accept bribes for good ratings etc, but when testing potential scams its a lot more reassuring that I can use some real btc, run it through mixers etc, create several new accounts and do runs.

anyway, was really only here to test out the badges, but i'll add these new sites as well.
mem
hero member
Activity: 644
Merit: 501
Herp Derp PTY LTD
seeing how badges look:

 TESTING BBCODE GENERATOR:
 
 be sure to view my list of scams:
 HYIP's, Ponzi's
 chain games, pyramids
 
- LEGEND -

Good Legend:
 
 
  • = Provably Fair, considered mathmatically honest, users can input their own seed and see a hash of the sites seed before making their bet. Ive played them all enough to be a believer.
  • = PVP, Player v Player

 Bad Legend:
 
 
  • = Questions raised regarding fairness/randomness thats waiting on admin response
  • = payout issue/s - removed if/when payout is resolved
  • Angry = SCAM
  • Lips sealed = Non responsive admin

 
- NOTICE BOARD -


 * BitLotto was a long con - Im very sad to hear this, I am trying to contact the admin to confirm.
 
 * For direct contact email (or gmail chat): [email protected] for any urgent issues ie ongoing scams.
 
 * testing auto generated bbcode
 
- BlackJack -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
BitzinoBlack Jackapproved  Grin Kiss        0?2.1%Admin Profile
 
 Discussion Thread.
 
 
 .
Coin RoyaleBlack Jackpending           0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
Royal CasinoBlack Jackpending           0?10%Admin Profile
 
 Discussion Thread.
 Royal Casino provides fair gambling environment and 24h support.
Royal Dice game based on coindice 3.0 and
legitimate Royal Bitcoin Pyramid with 110 return coming soon...
 Operator plans to add a pyramid....
 .
- Coin Flip -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
Satoshi RouletteCoin Flipapproved  Grin Kiss        0?1%Admin Profile
 [email protected]
 Discussion Thread.
 blockchain based casino.
 old and reliable.
 .
- Craps -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
BitzinoCrapsapproved  Grin Kiss        0?0%Admin Profile
 
 Discussion Thread.
 
 testing
 .
- Odds -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
Satoshi RouletteJackpot Diceapproved  Grin Kiss        0?0.9%Admin Profile
 [email protected]
 Discussion Thread.
 odds game with a progressive jackpot
 old and reliable.
 .
Just DiceJust Diceapproved   Kiss        0?1%Admin Profile
 
 Discussion Thread.
 
 
 .
Satoshi RouletteMini Diceapproved  Grin Kiss        0.0025?1.91%Admin Profile
 [email protected]
 Discussion Thread.
 Mini Jackpot Dice
 old and reliable.
 .
Prime DicePrime Diceapproved  Grin         0?1%Admin Profile
 [email protected]
 Discussion Thread.
 The provable fairness needs work to allow
players to see and/or modify the client seed.
The admin is aware of the issue and has said
he will address it.
 
 .
BitdiceBitdicepending           0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
Coin RollCoin Rollpending           0?1%Admin Profile
 
 Discussion Thread.
 
 need to review again.
 .
Fast BluffFast Bluffpending           0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
Multi BetMulti Betpending           0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
Sato-DiceSato Dicepending  Grin         0?5%Admin Profile
 [email protected]
 Discussion Thread.
 
 
 .
BTC MultiplierBTC Multiplieroffline           0?0%Admin Profile
 
 Discussion Thread.
 We were victims of a scammer who
double-spent us out of existence.

We ran an honest site and provided
the funds ourselves. We had no
outside investors. We havent been
able to recover our lost bitcoin
since.
 really sorry to hear that were taken out.
 .
Bit BattleDiceoffline           0?0%Admin Profile
 [email protected]
 Discussion Thread.
 
 
 .
- Poker -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
pmpokerPokerapproved  Grin         0?0%Admin Profile
 
 Discussion Thread.
 
 
 .
- Roulette -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
BitzinoRouletteapproved  Grin Kiss        0?2.1%Admin Profile
 
 Discussion Thread.
 
 
 .
Satoshi RouletteRouletteapproved  Grin Kiss        0.001?0.8%Admin Profile
 [email protected]
 Discussion Thread.
 Roulette with a progressive jackpot
 derp derp 123
 .
Royal CasinoAmerican Roulettepending           0?5.26%Admin Profile
 
 Discussion Thread.
 Royal Casino provides fair gambling environment and 24h support.
Royal Dice game based on coindice 3.0 and
legitimate Royal Bitcoin Pyramid with 110 return coming soon...
 Operator plans to add a pyramid....
 .
- Sicbo -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
Satoshi RouletteJackpot Sic Boapproved  Grin Kiss        0?0%Admin Profile
 [email protected]
 Discussion Thread.
 sicbo with a jackpot ?
 old and reliable.
 .
- Slots -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
BitzinoSlotsapproved  Grin Kiss        0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
- Texas Holdem -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
Seals with ClubsTexas Holdemapproved   Kiss        0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
Satoshi PokerSatoshi Pokerpending  Grin  Angry       0?5%Admin Profile
 
 Discussion Thread.
 
 Impatient and rude admin.
 .
bitworldpokerPokeroffline           0?5%Admin Profile
 
 Discussion Thread.
 
 need to review
 .
- Video Poker -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
BitzinoVideo Pokerapproved  Grin Kiss        0?5%Admin Profile
 
 Discussion Thread.
 
 
 .
- Wagering -
Site Name - Game Name - Status - Badges - Min Bet - Max Bet - Edge - Notes -
_______________________________________________________________________________________________________________________
BitBetBitBetuntrustworthy unfair   Angry       1?5%Admin Profile
 
 Discussion Thread.
 wagering site.
 Several wagers have been
resolved in a very
unreasonable manner.
 .

Last Updated: [time]
 
member
Activity: 112
Merit: 10
Casino, Lottery, Dice
Mem,
Can you please review http://royal-casino.pl and add it to your list. Royal Casino provides fair gambling environment and 24h support. Royal Dice game based on coindice 3.0 and legitimate Royal Bitcoin Pyramid with 110% return coming soon...
full member
Activity: 168
Merit: 100
https://fastbluff.com/
mem,

was wondering if you could review fastbluff.com.
Pages:
Jump to: