Fairness
Our game works in the following steps:- A game is created, we generate a server seed and hash it into SHA256, this is publicly displayed on the website
- Someone joins or the bot is called, we fetch a random string from https://random.org
- The server seed and the random.org seed is joined together with a '-' (example: 12345-67890). This is called the mod.
- Using chanceJS, we use the mod and the player values to pick a winner:
const chance = new Chance(mod);
const outcome = chance.weighted(['creator', 'opponent'], [creatorChance, opponentChance])
Verify these details here: RandomORG Verify and the outcome here