Pages:
Author

Topic: 🌴 PlataOCrypto.io 🦩 - The Casino is yours - Casino & NFT Shareholders - page 4. (Read 1982 times)

copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
PØC Provably Fair Seeding Event!

This will reuse the idea posted by Ryan and used for Bustabit.
   
A chain of 10 million (1e7) sha256 hashes was generated, starting with a Server Secret that has been repeatedly fed the output of sha256 hash back into itself 10 million times.

The final hash in the chain is: 7e20e7fbca9d13d321a42d1b525e1467fb1594fae2f6ac4faf1424e6f3178ffe, by publicizing it here we are preventing any ability to pick an alternate sha256 chain.

We will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
To avoid criticism that the Server Secret used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of.

The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 733916

The reference code (javascript) is as follows:

The method to create the hash chain is simply sha256:

Code:
 
Code:
Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}

The method to convert a game hash, mix it with the picked client seed to a money pot multiplier:

Code:
Code:
Code:
function crashPointFromHash(serverSeed, clientSeed) {
  function divisible(hash, mod) {
    // We will read in 4 hex at a time, but the first chunk might be a bit smaller
    // So ABCDEFGHIJ should be chunked like  AB CDEF GHIJ
    var val = 0;
   
    var o = hash.length % 4;
    for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) {
      val = ((val << 16) + parseInt(hash.substring(i, i+4), 16)) % mod;
    }

    return val === 0;
  }

  var hash = crypto.createHmac('sha256', serverSeed).update(clientSeed).digest('hex');

  /* In 1 of 51 games the game crashes instantly. */
  if (divisible(hash, 51))
     return 0;

The chain could be generated with code such as:

Code:
 
Code:
Code:
var serverSecret =  'If you knew this, you could steal all our coins';
var clientSeed = 'examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);


Using our chosen starting serverSeed, the hash terminating the chain is 7e20e7fbca9d13d321a42d1b525e1467fb1594fae2f6ac4faf1424e6f3178ffe.

That is to say, the first game's hash played under the new provably fair scheme, when hashed will be 7e20e7fbca9d13d321a42d1b525e1467fb1594fae2f6ac4faf1424e6f3178ffe.
copper member
Activity: 2156
Merit: 536
Building my own Dreams!
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Signature campaign : https://bitcointalk.org/index.php?topic=5396388.0;all

We will get back to you in a few days for a special launch event for Bitcointalk users Wink

I am pretty much sure that the signature campaign will drive immense traffic to the site.
All you need to do is that give the players some amazing offers and promotions to stay on the site.
Already the games present in the sites are awesome, the UI and interface is also great.
Now as yahoo, is also helping you to spread this amazing site all over the forum, make sure to discuss with him for more promotional ideas.
At last waiting for some great competition and promotions from the site, where we can bet as much as we want and win big.
Good luck PlataOCrypto team.
hero member
Activity: 1414
Merit: 915
🇺🇦 Glory to Ukraine!
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Congratulations on launching your signature campaign. You have chosen one of the best campaign managers here, if I may say so. For a formal launch at a grand event, you are actually doing pretty well for yourself. I wish you all the best in your professional future.

We will get back to you in a few days for a special launch event for Bitcointalk users Wink

We are eagerly awaiting ...  Cheesy
legendary
Activity: 2352
Merit: 1041
Smart is not enough, there must be skills
Everything is working correctly but let me detail something important.

Plataocrypto.io and game.plataocrypto.io don't use the same register method.

On plataocrypto.io, the register option is only use to purchase NFT Shares and become a casino co-owner

On game.plataocrypto.io, the register option is to play our game (even if deposits and withdrawals are working, please wait a few hours, we are preparing our seeding event to prove to the community that our game is provably fair)

In a near future, we'll simplify this process.
Sorry for the misunderstanding.


PS : Password reset by emails works fine, please check your spams folder
But I saw that when I wanted to start the game I had to login, so I signed up to find out, but now I've received a message from Gmail to change my password and this message is a little late arriving in the inbox.

I hope the update with the deep simplification is done quickly, any changes would be greatly appreciated.

Problem solved.
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Signature campaign : https://bitcointalk.org/index.php?topic=5396388.0;all

We will get back to you in a few days for a special launch event for Bitcointalk users Wink
Glad that your platform has run a signature campaign it's a great promotion.

But I want to ask here, I just registered and it was successful, but after I wanted to log in with the user and password I couldn't log in, what I entered was correct.
Even trying to forget the password, no email arrives in my gmail.

Is there a little problem?

Everything is working correctly but let me detail something important.

Plataocrypto.io and game.plataocrypto.io don't use the same register method.

On plataocrypto.io, the register option is only use to purchase NFT Shares and become a casino co-owner

On game.plataocrypto.io, the register option is to play our game (even if deposits and withdrawals are working, please wait a few hours, we are preparing our seeding event to prove to the community that our game is provably fair)

In a near future, we'll simplify this process.
Sorry for the misunderstanding.


PS : Password reset by emails works fine, please check your spams folder
legendary
Activity: 2352
Merit: 1041
Smart is not enough, there must be skills
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Signature campaign : https://bitcointalk.org/index.php?topic=5396388.0;all

We will get back to you in a few days for a special launch event for Bitcointalk users Wink
Glad that your platform has run a signature campaign it's a great promotion.

But I want to ask here, I just registered and it was successful, but after I wanted to log in with the user and password I couldn't log in, what I entered was correct.
Even trying to forget the password, no email arrives in my gmail.

Is there a little problem?
hero member
Activity: 1960
Merit: 586
Free Crypto Faucet in Trustdice
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Signature campaign : https://bitcointalk.org/index.php?topic=5396388.0;all

We will get back to you in a few days for a special launch event for Bitcointalk users Wink
Confirmed I have launched their signature campaign. Glad to see the quick interest from the community. Also, very nice of you to offer a special launch event for the community.
Glad to hear this casino is launching a signature campaign. Work with you and it is proven that this casino shows seriousness for long-term prospects. I congratulate you on being chosen to manage this campaign. Hopefully, in the future we can work with this casino.
legendary
Activity: 3556
Merit: 4191
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Signature campaign : https://bitcointalk.org/index.php?topic=5396388.0;all

We will get back to you in a few days for a special launch event for Bitcointalk users Wink
Confirmed I have launched their signature campaign. Glad to see the quick interest from the community. Also, very nice of you to offer a special launch event for the community.
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
Hello Bitcointalk.

Our games will be live in a few hours, we just need to announce our crash game seeding event.

Also, our first signature campaign is now live, thanks to @yahoo62278 for organizing everything !

Signature campaign : https://bitcointalk.org/index.php?topic=5396388.0;all

We will get back to you in a few days for a special launch event for Bitcointalk users Wink
legendary
Activity: 2660
Merit: 1009


Quote
How many poker games do you plan to do through the Beta version? I understand that the Beta version is to test both the platform and the number of users that can enter, how does the platform work when there are many users online, do you plan to expand the platform to do PVP tournaments? there is a site called Betnomi that does PVP tournaments and is very well received by Bitcointalk players, in fact it is very famous and is growing more and more, I think that if they go down the path of poker here they will do very well.

We plan on adding PvP Poker tournaments and PvP Poker cash games for now.
I will take a look at Betnomi Wink

We are working on our crash game seeding event and everything will be live in the next hours hopefully (maybe a day or two)  Cool

This is exciting I will be playing first upon going live, do you already have some kind of promotions for the players to test the crash game? I think a promotion could spice up your opening especially for players like me who are waiting on your live opening.
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io


Quote
How many poker games do you plan to do through the Beta version? I understand that the Beta version is to test both the platform and the number of users that can enter, how does the platform work when there are many users online, do you plan to expand the platform to do PVP tournaments? there is a site called Betnomi that does PVP tournaments and is very well received by Bitcointalk players, in fact it is very famous and is growing more and more, I think that if they go down the path of poker here they will do very well.

We plan on adding PvP Poker tournaments and PvP Poker cash games for now.
I will take a look at Betnomi Wink

We are working on our crash game seeding event and everything will be live in the next hours hopefully (maybe a day or two)  Cool
legendary
Activity: 2394
Merit: 1848
Leading Crypto Sports Betting & Casino Platform
As planned on our roadmap, our new lottery game is now live.

It's a simple Players vs Players game (still in development/beta) where you can fight each others.
The more tickets you buy, the more chances you have to win !

2% house edge (1% for the house, 1% for co-owners) on each round.
When the amount is too low to apply our house edge, the round will have a 0% house edge.

Next stop -> Poker game  Wink


How many poker games do you plan to do through the Beta version? I understand that the Beta version is to test both the platform and the number of users that can enter, how does the platform work when there are many users online, do you plan to expand the platform to do PVP tournaments? there is a site called Betnomi that does PVP tournaments and is very well received by Bitcointalk players, in fact it is very famous and is growing more and more, I think that if they go down the path of poker here they will do very well.

Hello Bitcointalk !

Our early NFT shares sell is now over, i would like to thanks all our early investors who are now the first co-owners of our new casino Smiley

In the 2-3 next days, our team will work on our game to setup everything and launch our games in production mode !
Marketing will be launched starting with a Bitcointalk signature campaign.

See you soon on https://game.plataocrypto.io !

That's great news, if things go this successfully, I'm sure that everything with the signature campaign will have more exposure, more traffic, more clients, I'm glad when things start to go well for people. The good thing is that each campaign that you have in the casino forum is profitable, a large conglomerate of attentive players is maintained, it gives more security and confidence to the players, especially those of us who make life here in the forum.
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
Hello Bitcointalk !

Our early NFT shares sell is now over, i would like to thanks all our early investors who are now the first co-owners of our new casino Smiley

In the 2-3 next days, our team will work on our game to setup everything and launch our games in production mode !
Marketing will be launched starting with a Bitcointalk signature campaign.

See you soon on https://game.plataocrypto.io !
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
As planned on our roadmap, our new lottery game is now live.

It's a simple Players vs Players game (still in development/beta) where you can fight each others.
The more tickets you buy, the more chances you have to win !

2% house edge (1% for the house, 1% for co-owners) on each round.
When the amount is too low to apply our house edge, the round will have a 0% house edge.

Next stop -> Poker game  Wink
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
What are your marketing plans and how would you convince players to play in your gambling site I like the passive income based on the volume and not if the gambling site is in profit or not. Can you explain that more how the users will earn? you mean the investors will still get profit but the amount is depends on the volume?

We will start with a classic bitcointalk bounty campaign.
Then we will launch a full marketing campaign with a company who is specialized on casino's advertising.

The users earn a passive income (Co-owner's balance is updated after each bet) based on the total wagered amount in each round, so you are right it depends on volume.
The more players we get playing, the more co-owners will earn, and they do not have to be worried about the Casino's bankroll going down or up.
legendary
Activity: 2660
Merit: 1009
What are your marketing plans and how would you convince players to play in your gambling site I like the passive income based on the volume and not if the gambling site is in profit or not. Can you explain that more how the users will earn? you mean the investors will still get profit but the amount is depends on the volume?
legendary
Activity: 2394
Merit: 1848
Leading Crypto Sports Betting & Casino Platform
Well, congratulations.

I hope that they manage to sell more than those 300 shares, from the way the program looks and the advances that they have provided, everything seems to be going very well, many casinos want to enter with everything related to the NFT through the front door and some have already done so and they are having a lot of success, as you can see everything, I like the attitude they have, besides the fact that pre-sales are always crazy, the whales want to destroy it and the system is quite good, if things are given to them they will be very successful because not only will they have active players but they are attracting investors to the game and this is a very good combination.
copper member
Activity: 67
Merit: 10
Founder @Plataocrypto.io
Is there a minimum or maximum shares an investor can buy? I was curious would I earn good with 1 NFT share only? and what are your plans in the future in order to have more players? Do you have a roadmap you can share what was your goal and when?
From this post you can easily know that you can buy minimum 1 share and there is no maximum shares mentioned. So, you can buy all the shares of them. But I am curious to know how you are sure that you would be able to make profit and there is no chance to be loser. Don't be over confident, that may make you loser.

There is no guarantee to make profit you are right.
But you have to keep in mind that owning shares makes you earn a passive income on volume, not on our profit, so if we have volume you make profit regardless if the casino makes profit or not.

That’s an important difference.
copper member
Activity: 2128
Merit: 1241
Need a Bounty Manager? t.me/shasan32
Is there a minimum or maximum shares an investor can buy? I was curious would I earn good with 1 NFT share only? and what are your plans in the future in order to have more players? Do you have a roadmap you can share what was your goal and when?
From this post you can easily know that you can buy minimum 1 share and there is no maximum shares mentioned. So, you can buy all the shares of them. But I am curious to know how you are sure that you would be able to make profit and there is no chance to be loser. Don't be over confident, that may make you loser.
Pages:
Jump to: