GAME ROUND INFORMATION |
Player reference: |
Game Round ID: |
{{ external_identificator }} |
{{ session_string }} |
Game name: |
Game version: |
{{ game_name }} |
{{ game_version }} |
Game round status: |
COMPLETED |
Start time: |
End time: |
{{ timestamp_start }} UTC |
{{ timestamp_end }} UTC |
GAME PLAY SUMMARY |
Balance before: |
Balance after: |
Balance change: |
{{ balance }} {{ currency }} |
{{ balance + win }} {{ currency }} |
{{ win * -1 }} {{ currency }} |
Total bet: |
Total win: |
{{ bet }} {{ currency }} |
{{ win }} {{ currency }} |
GAME PLAY DETAILS |
Expected game action: |
main.spin |
{% set reel_array = reels|split(',') %}
{% for row in reel_array|batch(reel_count) %}
{% if loop.first == false and loop.last == false %}
{% for column in row %}
{{ column }} |
{% endfor %}
{% endif %}
{% endfor %}
|