{% extends "global/Page.html" %} {% load otree %} {% block styles %} {% endblock styles %} {% block content %}

Your ID: {{ player.id_in_group }}     Sequence: {{ player.sequence }}     Period: {{ player.period }}

This is a new sequence, sequence {{ player.sequence }}.


The sequence has an unknown number of periods.


The length of the sequence is determined as follows.

At the end of each period, a random integer number between 1 and {{ C.DICE_MAX }} will be drawn with equal likelihood to determine whether the sequence will continue.

The sequence will continue to the next period if the random draw is less than or equal to 9, and stop if the random draw is {{ C.DICE_MAX }}.


The random draws for the first {{ block_length }} periods (called the block) will only be revealed at the end of the block.

If the sequence ends within the block, then decisions and activities after the final period are ignored.

If the sequence does not end within the block, then it will continue to period {{ block_length_plus_one }}.

From period {{ block_length_plus_one }} on, the random draw will be shown at the end of each period.

{% endblock %}