I tested it out today again and on my very first roll the server seed didn't match the server seed hash.
I did a 2x coin flip for my entire 1mbtc deposit. Before the round it said serverseed_hash = e09d311bd7d007bce4141ea30b7ea726cad88b592af8993d3c45b4a6d15e2138
After the round, it said serverseed = 5f14e5353a6b5d4ab3039a232cf9f72924d77cbbac1cb750ff7f1b5ea0c85809TeUBURTRQY, which doesn't hash to what they said it would hash to.
This is the smoking gun of cheating. They are changing the server seed to alter the outcome of the game.
Here's a screenshot:
https://i.ibb.co/xSTMLVc/wixi-cheats.pngTheir bonuses seemed too good to be true and now I know why.
Admins, can we please get red warning thing at the top of the wixiplay thread?
BTW here's my php source code for checking the PF:
$client_seed = "vnu3x7sp";
$server_seed = "5f14e5353a6b5d4ab3039a232cf9f72924d77cbbac1cb750ff7f1b5ea0c85809TeUBURTRQY";
$server_seed_hash = "e09d311bd7d007bce4141ea30b7ea726cad88b592af8993d3c45b4a6d15e2138";
$result_seed = hash_hmac('sha512', $server_seed, $client_seed);
$result_number = hexdec(substr($result_seed,0,10));
$lucky_number = $result_number % 10001;
echo $lucky_number;
if($server_seed_hash==hash('sha256',$server_seed)){ echo "\ntrue"; }
else { echo hash('sha256',$server_seed); }