Post
Topic
Board Gambling
Topic OP
Unprovably Fair - No ledger or database of bets (MEGAPLAY.IO)
by
SweetL0u
on 29/08/2023, 15:44:39 UTC
Hello members of the forum,

I trust this message finds you well. I am writing to seek assistance in understanding the dynamics of betting outcomes on the platform megaplay.io. My experience on the site has led me to observe a considerable variance in results based on the size of my bets. Curiously, I've noticed that as my bets increase in amount, the odds of winning seem to decrease proportionally.

I've been exploring megaplay.io and noticed that there isn't a ledger or database keeping track of all the past bets. Strangely, my old bets have been deleted. This raises some questions about transparency and accountability.

As a curious and responsible user, I find myself pondering the implications of this pattern and how it aligns with the fairness system that megaplay.io purports to maintain. I am reaching out to the community in hopes that individuals with substantial experience on the platform could shed some light on whether this observed correlation between bet size and winning odds could potentially indicate something significant about the platform's fairness system.

If any members possess the requisite experience and insights to provide clarity on this matter, I would be immensely grateful for your input. Your expertise could assist me and fellow users in better understanding the underlying mechanics of the platform's betting system.

Thank you for taking the time to read my inquiry, and I eagerly anticipate any responses that might contribute to a more comprehensive understanding of the situation.

Best regards,

Fairness according to them, do you see anything wrong in their code or something suspicious.

Dice Game (PHP Code)


Provably Fair system


Dice Game

Description for variables found in provably fair codes


   $ss -> Server Seed
   $cs -> Client Seed
   $nn -> Nonce

Provably Fair code for Dice game - PHP Version


   function lucky_number($server_seed, $client_seed, $nonce){
      $result_seed = hash_hmac('sha512', $server_seed, $client_seed.':'.$nonce);
      $result_number = hexdec(substr($result_seed,0,10));
      $lucky_number = $result_number % 10000;
      
      return $lucky_number;
   }







PROVABLY FAIR SYSTEM


SEED ROTATION




RESULT