Bitcoin Forum
May 08, 2024, 07:25:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 »
1  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ New Game Added: Squares 101 on: February 02, 2021, 05:33:32 PM
I am trying to check your new social game but I am wondering why it takes too long to load, is your platform open to all country or you have some countries that you banned in using your platform?
Everything is fine on my side, might the issue came from your browser or poor network connection.

Added a new social game called Squares101.  Test it out, love to hear some thoughts
Have tried out the game, in my opinion it's something like your own unique crash game (squares everywhere) with the maximum multipliers is 100x. It would be nice if you able to add an autoplay option to the game if possible.


Thanks for trying it out.  An autoplay option is a high priority, as well as options to define different autoplay strategies .
2  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ New Game Added: Squares 101 on: February 01, 2021, 03:39:14 PM
Added a new social game called Squares101.  Test it out, love to hear some thoughts
I am trying to check your new social game but I am wondering why it takes too long to load, is your platform open to all country or you have some countries that you banned in using your platform?

I saw that you have plenty of update that were added in your platform, is this a new update that were launch by this year 2021? or it is an old update that were launch way back 2020?

hmmmm...not sure why it takes long to load, it is currently accessible from all countries.

This update (the new game) was added last week and just announced 12 hours ago.  All other updates were 2020 updates
3  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ New Game Added: Squares 101 on: February 01, 2021, 03:37:25 PM
Added a new social game called Squares101.  Test it out, love to hear some thoughts
sure we will test it out but do you offer play money for testing the games or some faucets ? and what does social game means ? we can chat while playing the game ? but we can also do this on any gambling site with chat support or maybe this game is a multiplayer game , thats good if it is .

 just keep on adding new games and updates ln you site and you can notice soon that your thread here will became lively because your thread here seem to be so quite as i see on its last replies

You can test the game without signing up just go to the game, place a bet and play.  You will just be using "demo coins".  Every 10-15 minutes a game runs in chat where registered players can win free BTC as well.

I've used "social game" to mean that everyone is playing the same game, so yes it's multiplayer.  The panel on the left side of the screen shows everyone playing the game with you.

Thanks for the encouragement.
4  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ New Game Added: Squares 101 on: February 01, 2021, 02:38:27 AM
Added a new social game called Squares101.  Test it out, love to hear some thoughts
5  Economy / Gambling / Re: SatoshiSquares.com: Squares101 seeding event on: January 17, 2021, 04:29:50 PM

Quoting! As of now, 666,468 blocks are mined.

Just to clear things, will 9,999,999th hash be used for the first game or 10,000,001 hashes are generated?

By the way, nice game concept. Your original idea?

Thank you Smiley

Good Question.  So the 10,000,000th hash will be used for the first game, but you can think about 6a79ad9ef6ff0514f89274e26751fa981880c4b432829b867cf9d5f559051cc8 as hash #10,000,001.  So yeah, in some sense 10,000,001 hashes were generated.

It is an original idea, glad you like it.
6  Economy / Gambling / Re: SatoshiSquares.com: Squares101 seeding event on: January 17, 2021, 02:36:52 AM
Archived snapshot of post: https://archive.is/GhyDX

It would be appreciated if someone would quote the OP and confirm that the post was created before block 666,666 has been mined.

edit: block 666,666 has been mined, our hash/salt is 0000000000000000000b7b8574bc6fd285825ec2dbcbeca149121fc05b0c828c
7  Economy / Gambling / SatoshiSquares.com: Squares101 seeding event on: January 17, 2021, 02:34:45 AM
In a few days SatoshiSquares will release it's 2nd game; Squares101.  Squares101 is a social game that requires a public seeding event in order to prove fairness.

We've created a list of 10 million hashes where each hash in the list is the lowercase, hexadecimal string representation of the previous hash.  The first hash in the list is the sha256 hash of our "secret message".

The hash of the final element of the list of hashes is 6a79ad9ef6ff0514f89274e26751fa981880c4b432829b867cf9d5f559051cc8.

To verify that a hash corresponds to game #n,  one can hash it n times and compare the result with the hash of the final element.

As the title hints, this game contains 101 squares.   In each game, one square will be designated the "bomb square".  This square is determined by a hash in the list.  The 10,000,000th hash in the list will correspond with game #1, and the 1st hash will correspond with game #10,000,000.  

To prevent us from being able to bias our hashes, we will salt each hash with the lowercase, hexadecimal string representation of of block 666,666 in the Bitcoin blockchain.  As of posting this, this block has not yet been mined.

The code to compute the bomb square from the hash:

Code:

const crypto = require("crypto")

function bombSquare(seed, salt) {

  // 1. HMAC_SHA256(key=salt, message=seed)
  const hmac = crypto.createHmac("sha256", salt)
  hmac.update(seed)
  seed = hmac.digest("hex")

  // 2. Convert 3 most significant bytes to uniformly distributed in [0, 1)
  let X = parseInt(seed.substring(0,2), 16)/256.0 +
          parseInt(seed.substring(2,4), 16)/Math.pow(256.0,2) +
          parseInt(seed.substring(4,6), 16)/Math.pow(256.0,3)

  // 3.  Convert uniformly distributed in [0, 1) to uniformly distributed integer in [0, 100]
  return Math.floor(X*101)

}



In Squares101 bets placed on a square that has an id lower than the bomb square is considered a winning bet.  Winners will receive their wager times the multiplier that's mapped to each square.  Squares 0 and 100 cannot be selected by the player.  The multiplier mapped to squares 1 through 99 is defined by:

Code:

function squareMultiplier(squareId) {
  return Math.floor(100/(100-squareId)*100)/100
}


Ex. Square 1 has a multiplier of 1.01x and square 99 has a multiplier of 100x

It would would be great if someone would quote this post and verify that block 666,666 has not been mined at the point of this post's creation.
8  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: November 17, 2020, 09:30:02 PM
Recent update, chat can be accessed on mobile devices, and provably fair calculator has been added.

Naughtydoggy is really killing the game! i noticed he's playing the easy level, based from his recent games. when i played the demo mode, easy level has really high chance to reach the other end. but when you try the extreme level, youre lucky if you can even get out alive after the first stage. lol

i really do hope you can attract more players here. skirmishbet already exited the game.

I played skirmishbet and enjoyed it, surprised to hear that they're out.  Yes Naughtydoggy played a few thousand games to win his 2000 bits, seems he created a script to play for him at the easy level.

i really do hope you can attract more players here. skirmishbet already exited the game.
i played before and test it. it's really addictive for me and i do like the game didn't know that you have race competition on your website, i'll try to check it out i hope i'll be able to be one of the winners, i think it's good start having a competition maybe soon they could also run some signature campaign to attract more players.

Glad you like it.  The race competition was taken down this week in order to modify it a bit, and will be back up to coincide with some advertising, possibly including a signature campaign.

9  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 25, 2020, 12:19:14 AM
Congratz to our race winners:

RankPlayerScore
1stNaughtyDoggy2,000 bits
2ndalito801,000 bits
3rdAnhmanh500 bits
4thalpha09300 bits
5thgmdever200 bits

Next race beginning now!
10  Economy / Games and rounds / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race: 4 mBTC up for grabs on: October 25, 2020, 12:18:38 AM
Congratz to our race winners:

RankPlayerScore
1stNaughtyDoggy2,000 bits
2ndalito801,000 bits
3rdAnhmanh500 bits
4thalpha09300 bits
5thgmdever200 bits

Next race beginning now!
11  Economy / Games and rounds / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race on: October 24, 2020, 02:20:36 AM
Tomorrow marks the final day of our first weekly race.  Here are the current standings:

RankPlayerScore
1NaughtyDoggy113.66
2alito8086.21
3Anhmanh31.83
4alpha0928.23
5gmdever0.67
6nino110.51
7bazikon0.27
8Jonnes0.01
12  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 24, 2020, 02:16:30 AM
Tomorrow marks the final day of our first Weekly Race.  Good luck to everyone!
13  Economy / Games and rounds / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race on: October 22, 2020, 02:18:15 AM
We're midway though our first race.  Here are the current standings:

RankPlayerScore
1alito8083.25
2alpha0928.23
3Anhmanh16.01
4gmdever0.67
5bazikon0.27
6Jonnes0.01
14  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 22, 2020, 02:11:28 AM
I prefer to play at sites which have support for the DOGE coin. I can easily transfer small amount of coins to the gambling site and test the new site with DOGE coins.
I hope SatoshiSquares.com will get many new customers after this addition of DOGE coin in their site.
I like dogecoin because the fee is not too high, and dogecoin is one of the coins that many people use to gamble.
And if satoshisquares can add dogecoin to their site, I think that will attract many gamblers to come to their website.
But until that time, we should satisfy to use existing coin on their site.

Hi . I dont see room chat when i use phone
I think the chat is not available on the mobile phone because I don't see the chat room as you.
But after I try to visit on the website, I see the chat room available, and it's in your right position at your monitor.
Maybe the @OP will add the chat room feature to the mobile phone to chat using their phone directly.
Or maybe the chat room is available only if you register on their website because I don't register with them now.

The chat's not accessible through the phone right now, on the todo list, but for now it's non-mobile.

Here's the update and it's great to see that Doge already there, like what you have said it's nice and it's been used by most gambling site, gambler enjoys the low transaction fees.  Very well done team!

Thanks Fredomago, appreciate the kind words Smiley

15  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 20, 2020, 04:08:40 AM
......
We calculate a player's "theoretical loss".  If their theoretical loss is greater than the transaction fee for the selected currency then we take care of the transaction fees.  For currencies like LTC, DASH, and DOGE playing 1 game at the equivalent wager of 1 USD will likely be enough for the transaction to be feeless, however since BTC fees are a bit higher, more play is required.  Let me know if you need more specificity.

As far a colors, personally I like them too (I'm biased) but I've had a few people mention that they'd prefer a dark mode, so it'll likely be a future option.

There are minimum amounts to wager, for example in BTC it's 1 bit.  However if an account has less than one bit, the player may wager below the minimum wager.  So likely in your demo play your demo account hit 0.16 bits.
In other words, players have to pay for the transaction fee if they are winning. The computation is done automatically? I mean the players will know if there are fees or none once they click withdraw?

Thank you for explaining the minimum wager. It was a bit confusing at first. 

i think we are qualified for the no fee withdrawal if we start loosing at first ( loose above 1 usd for non btc and slight more loose for btc ) and then we recover the loose and end up on profit .

 they should put an indication for this so that players will know because every site also puts a notice if how much is thier withdrawal fee .

the sites free withdrawal offer is useful to those who use btc and dont want to suffer a high fee and its also good to those small gamblers that uses altcoins  . 1usd wagger can be easily achievable

Not exactly.  By "theoretical loss" I mean the amount that a player should lose mathematically on average.  For example, lets say a player wagers 200 DOGE on easy mode, and has the opportunity to click on the 1st prize square of 502 DOGE.  On average a player should lose about 4 DOGE when going for this prize square.  It doesn't matter if the player wins or loses, we add 4 DOGE to the player's theoretical loss meaning after that 1 game a player may make a free withdraw as long as the fees are 4 DOGE or less (right now it's listed at 2.2 DOGE).  In this scenario the player may make a feeless withdraw.

To be clear a player could win every game that they play and still get a feeless withdraw.  It's based on amount of play, not the outcome of their play.

When the player makes their withdraw they are taken to a confirmation page.  If their withdraw is feeless they are told so and asked to confirm the details of their withdraw.  If they haven't wagered enough they will be shown the percentage of play they've already completed for a feeless withdraw.  They have the option of canceling their withdraw in order to complete some more play or pay the fees themselves.  

Let me know if that made more sense.
16  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 19, 2020, 02:46:32 PM
Hello SatSquares,

I visited your site's withdrawal policy in FAQ section. It's indicated there that you allow a feeless withdrawal if a player reaches a minimum number of games or amount wagered. Can you be more specific about that? I'm making a list of casinos with free withdrawals that's why I'm asking.

Feedbacks:
- I actually like the background color. I don't think a dark mode is needed since the colors are pretty dull.
- The tutorial is straight forward and I love that. Is there no minimum amount to wager? The demo game accepted 0.16 bits.

Hey Yogee,

We calculate a player's "theoretical loss".  If their theoretical loss is greater than the transaction fee for the selected currency then we take care of the transaction fees.  For currencies like LTC, DASH, and DOGE playing 1 game at the equivalent wager of 1 USD will likely be enough for the transaction to be feeless, however since BTC fees are a bit higher, more play is required.  Let me know if you need more specificity.

As far a colors, personally I like them too (I'm biased) but I've had a few people mention that they'd prefer a dark mode, so it'll likely be a future option.

There are minimum amounts to wager, for example in BTC it's 1 bit.  However if an account has less than one bit, the player may wager below the minimum wager.  So likely in your demo play your demo account hit 0.16 bits.

Thanks for checking out the site Smiley
17  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 19, 2020, 02:59:00 AM
Just visited the casino today and I think everything is good but the colors on the website are little weird I mean I don't feel calm when I visit the casino so maybe some themes can be added because that purple color hurt my eyes.

I don't feel very good staying for even 10 minutes because of the strain the colors bring to my eyes so really please do something about the colors and I haven't registered yet because I don't see any promotions or bonuses for new users so it makes no sense to play at a new casino that doesn't attract me neither it has some cool giveaways or bonuses.

I really hope the design improves if not anything else, at least give an option to chose dark/light themes.

Thanks for the feedback lixer.  Sorry about the eye strain, but good news is that a dark mode is something that will be worked on soon.  As for giveaways, right now we have the weekly races, but more promotions will be coming later.  Smiley
18  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race added on: October 18, 2020, 04:42:15 AM
The weekly race has been added for SatoshiSquares.  Scroll down to the "RECENT GAMES" tab and click on "WEEKLY RACE" for details.
19  Economy / Games and rounds / SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ Weekly Race: 4 mBTC up for grabs on: October 18, 2020, 04:37:57 AM
20  Economy / Gambling / Re: SatoshiSquares.com 🟩🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛⬛ DOGE and DASH added on: October 16, 2020, 05:45:47 PM
I prefer to play at sites which have support for the DOGE coin. I can easily transfer small amount of coins to the gambling site and test the new site with DOGE coins.
I hope SatoshiSquares.com will get many new customers after this addition of DOGE coin in their site.
Dogecoin is accepted on many casinos and the acceptance on this casino will help total deposits to the casino. The coin was added on SatoshiSquares.com about one week ago with OP edited version. In addition, I am happy to see the casino built up 2FA for users. It is a must to protect users account, funds and prevent account hacks. The more secured user accounts are, the less risk on the casino. Less pressure on support team too.
UPDATE:  New updated version of provably fair
UPDATE:  Turbo mode activated!  Now play Satoshi Squares with some speed
UPDATE:  Two Factor Authentication added
UPDATE:  Chat game added
UPDATE:  Added new coins, DOGE and DASH

I would like to know if this new feature of 2fa authentication is mandatory or optional ?  I personally do not want to enable 2fa on casino because every time we have to enter the code to login. This is my personal preference of not using 2fa on casino because i do not keep much money on them.

However if you are holding a lot of coins in casino, then this feature is very nice and it will also prevent account hacks. Also this turbo mode feature is very cool and you can play Satoshi Squares quickly  Smiley

Hey JohnBitCo, good question.  The 2fa is optional, once you create an account you can click on the options "cog" icon on the top bar and configure it.  We didn't want to make it mandatory since, like you, many won't be storing and leaving tons in value on the site.  But for those who play higher stakes or are staking or have a lot of referrals coming in, we would certainly encourage the minor inconvenience of pulling out their phone, for the gain of security that 2fa provides.
Pages: [1] 2 3 4 5 6 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!