all
PrimeDrop

Verify your games

Provably fair

Provable Fairness — Upgrader

El modo Upgrader utiliza un sistema Provably Fair, permitiendo verificar que los resultados no hayan sido manipulados.

El resultado se genera de forma determinista usando Client Seed, Server Seed y los rangos seleccionados.

Server Seed

  • Generado automáticamente por el sistema.

  • Antes del upgrade, el jugador solo ve el Server Seed hasheado.

  • Garantiza que no pueda modificarse ni predecirse.

Client Seed

  • Controlado por el usuario, puede cambiarse manualmente.

  • Cambiarlo crea una nueva secuencia de resultados.

El resultado depende siempre de: Client Seed + Server Seed

Rangos

  • Determinan qué valores de ticket resultan ganadores.

  • min < max → victoria si el ticket cae dentro.

  • min > max → victoria si cae en el rango envuelto.

Definiciones

  • Client Seed — semilla del jugador.

  • Server Seed — semilla generada por el sistema.

  • Ticket — número generado.

Rolling (Generación del resultado)

El resultado del upgrade se calcula de la siguiente manera:

  • Se combinan Client Seed y Server Seed:

    $seed = $client_seed . $server_seed;
  • El valor combinado inicializa el generador aleatorio:

    mt_srand(crc32($seed));
  • Se genera el ticket:

    $ticket = mt_rand(1, 1000000) / 10000;

    Valor inicial: 1 a 1.000.000

    Valor final: 0.0001 a 100.0000

  • Finalmente, el ticket se compara con el rango ganador.

    $seed = $client_seed . $server_seed;
    mt_srand(crc32($seed));
    $ticket = mt_rand(1, 1000000) / 10000;

Código PHP

1
2
3
4
5
6
7
8
9
10
11
<?php
// Provably Fair Upgrade verification
$client_seed = 'client seed';
$server_seed = 'server seed';
 
$seed = $client_seed . $server_seed;
mt_srand(crc32($seed));
 
$ticket = mt_rand(1, 1000000) / 10000;
var_dump($ticket);
?>

Dónde ejecutar el código

Local:

  • Instalar PHP

  • Crear archivo upgrader_check.php

  • Ejecutar:

    php upgrader_check.php

Online:

all
PrimeDrop
icon

This website is protected by SSL encryption, ensuring your data remains secure. Certified for safety and compliance with international web standards.

Features

AffiliateRewards
imgimgimgimg

Send us an email

[email protected]

© 2026PrimeDrop. All rights reserved.
PRIMEDROP is owned and operated by Celsius Holdings N.V., registration number: 157856, registered address: Zuikertuintjeweg Z/N (Zuikertuin Tower), Willemstad, Curaçao. Contact: [email protected]

Active currency
information

Language