Sign in

Code activation

Enter promo code

Enter Bonus code

Telegram бонус

Получите 200 монет, выполнив 2 условия:

  • Подключить Telegram аккаунт
  • Подписаться на канал

Invite code name

Username

MY ID

Copy

JACKPOT Winners

User Bet Jackpot

Изменить настройки

Sign in

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

Username or mail

Password

Sign UP

Username

Email

Password

Confirm password

Mute user

UID

reason

Major coins list

  • Copenhagen 2024 Coin
  • Rio 2022 Coin
  • Paris 2023 Coin
  • Antwerp 2022 Coin
  • Stockholm 2021 Coin
  • Berlin 2019 Coin
  • Katowice 2019 Coin

Правила чата

Запрещено:
  • — Нарушать язык комнаты чата
  • — Спамить, в том числе предлагать свои предсказания на любом из режимов сайта
  • — Оскорблять пользователей сайта
  • — Распространять ссылки на сторонние ресурсы
  • — Зазывать или приглашать пользователей сайта на сторонние ресурсы
  • — Выпрашивать монеты
  • — Злоупотреблять caps lock
  • — Провоцировать игроков:
    • Вопросы расовой принадлежности
    • Политические вопросы
  • — Продавать, покупать, менять:
    • Валюту или криптовалюту сайта
    • Криптовалюту или реальные деньги
    • Игровые предметы
  • — Распространять:
    • Скрипты и расширения
    • Промокоды, в том числе промокоды в имени пользователя
    • Бонус коды из соц.сетей
    • Конфиденциальную информацию игроков
Модерация имеет право заблокировать пользователя без объяснения причин. Просьба не обращаться в поддержку сайта, если вы получили блокировку в чате. Поддержка не пересматривает решения чат-модераторов.

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):

Восстановить аккаунт

Login or email

Восстановить аккаунт

Код восстановления


Новый пароль


Подтверждение нового пароля

Обменять монеты/PLG

Введите сумму обмена:

COINS

Вы получите:

PLG

Комиссия: (0.2$ + 1%)

Дайс - Контроль Честности

  • 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.