Sign in

Code activation

Enter promo code

Enter Bonus code

Telegram bonus

Get 200 coins by fulfilling 2 conditions:

  • Connect Telegram account
  • Subscribe to telegram channel

Invite code name

Username

MY ID

Copy

JACKPOT Winners

User Bet Jackpot

Change Your Settings

Sign in

Sign in through steam Войти через VK ID
OR

Username or mail

Password

Sign UP

Username

Email

Password

Confirm password

Mute user

UID

reason

Chat Rules

Actions that will result in restricted chat abilities:
  • — Messages not in room language
  • — Spam, including predictions on any of the site's games
  • — Policy discussions
  • — Racism, harmful speech, or attacking any players
  • — Inviting site users to third-party resources
  • — Asking for coins
  • — CAPS LOOK messages
  • — Buying or selling coins, cryptocurrencies, game items
  • — Advertising any external website
  • — Advertising promo codes, including promo codes in username
  • — Sending bonus codes from social networks
  • — Advertising scripts or browser extensions
  • — disclosure of confidential information of players
Moderators can block a user without giving a reason. Please do not contact the site support if you have received a chat block. Support does not review the decisions of chat moderators.

Coinflip Provably Fair

Game id:

Private seed hash:

Private seed:


EOS block number:




Crash Provably Fair

Game id:

Game hash:

Game secret:

Dice Provably Fair

Current client seed: Not created yet

Current server seed (hashed): Not created yet

Change seeds

New client seed:

save

Next server seed (hashed):

Recover account

Login or email

Recover account

Recovery code


New password


Confirm new password

Swap coins/PLG

Enter amount to swap:

COINS

You will receive:

PLG

fee: (0.2$ + 1%)

Dice - Provably Fair

  • Current client seed: (change)
  • Current server seed: Server seed in use. You can see it in your bet history after changing client seed
  • Current hashed server seed (sha256 of server seed):

All rolls on csgopolygon.com are generated using a provably fair system. This means the operators cannot manipulate the outcome of any roll. Players may replicate any past roll using the below code:

  • $game_id = 2820;
  • $client_seed = "gJyxdPdhqv";
  • $server_seed = "5a5e6a3494cf9572b6dc5dd6aee4263b6eec8b8f331e29c426d03f9ab6ade17f";
  • $idClientSeed = $client_seed . "-" . $game_id;
  • $hex = hash_hmac("sha512", $idClientSeed, $server_seed);
  • $index = 0;
  • $lucky = hexdec(substr($hex, $index * 5, ($index * 5) - $index * 5 + 5));
  • while ($lucky >= 1e6) {
  • $index += 1;
  • $lucky = hexdec(substr($hex, $index * 5, ($index * 5) - $index * 5 + 5));
  • if ($index * 5 + 5 > 129) {
  • $lucky = 9999;
  • break;
  • }
  • }
  • $number = ($lucky % 1e4) * 1e-2;
  • echo "Roll: " . $number;

You can execute PHP code straight from your web browser with tools like PHP Tester. Simply copy-paste the code into the window and replace the server_seed, client_seed, and game_id values for your own. Execute the code to verify the roll.

To create a roll number, CSGOPolygon uses a multi-step process to create a roll number 0-99.99. Both client and server seeds and a game id are combined with HMAC_SHA512 which will generate a hex string. First five characters are taken from the hex string to create a roll number that is 0-1,048,575. If the roll number is over 999,999, the process is repeated with the next five characters skipping the previous set. This is done until a number less than 1,000,000 is achieved.