Dota 2 Case battle Increase your winnings x2-4
runde
stare | Case-uri | dată | Cost de intrare | jucători | acțiuni |
---|---|---|---|---|---|
Câștig
Cashback
{{ i.user_id == i.user_win_id ? editSum(calc_amount(i.win_price)) : editSum(i.cashback) }}
|
{{ editSum(calc_amount(c['price'])) }}
|
{{get_local_from_utc_date(i.time_updated).split(' ')[0]}} {{get_local_from_utc_date(i.time_updated).split(' ')[1]}} | {{ editSum(calc_amount(i['price'])) }} | vizionează |

Evaluare | Articole | profit | jucători | acțiuni |
---|---|---|---|---|
{{ index }}
|
{{editSum(c.win_price)}}
{{ c.short_exterior }} ST
![]() |
{{ editSum(calc_amount(i['profit'])) }} | vizionează |
We use random.org to generate a random string (server seed) for each case battle. We get the random string only after the game has started using the unique ticket ID. It guarantees we never know the battle's outcome rolls before the game starts.
random.org - a blockchain-based website that is used to generate ultimately fair, secure and transparent random values.
Client seeds string - a string of users' client seeds separated by commas. Client seeds string is then used for the game's hash generation.
Ticket ID - an identifier of the server seed (random string) generated by random.org, you could use Ticket ID to verify the seed value and get the timestamp of when this seed was generated. Every case battle has its own unique Ticket ID. Ticket ID can be only used once.
Server seed - a random string generated by random.org, this seed is generated right before the first battle's round. Users are not able to change their client seed after that.
Nonce - a natural number that increments with each roll generation.
Game Hash - a random string that is created using client seeds string, server seed and nonce.
Roll - roll hash converted into the roll number
$number = hexdec($hex);
$roll = $number % 10000000 + 1;
- Open the case battle you want to join.
- Click "Verify the ticket" or open random.org and enter Ticket ID. You should get the "Ticket not used." response. That means this ticket ID has not been initiated yet.
- Check all the client seeds. A user can change his client seed for the case battle only before it starts.
- Join the case battle or wait for other users to join your one.
- When the battle starts, check the start timestamp.
- Wait for the battle to end.
- Open the Provably fair modal window.
- Click "Verify Ticket" or open random.org and enter Ticket ID.
- Ticket output should be the same as the server seed.
- Ticket ID has to be valid.
- Ticket's timestamp should be later than the battle start's timestamp.
- Now you can verify case battle's rolls
To verify case battle's rolls:
- Click the "Provably fair" button on the battle's page.
- Check nonces for each drop.
- Go to the "Verify" tab. You can change the nonce and check the roll number.
- You can also use this code snippet to check roll number yourself.
Citește despre cum folosim cookie-urile și cum le poți controla în Politica de confidențialitate.