{% extends "global/Page.html" %} {% load otree static %} {% block title %} Practice Game 2 - Page 3 of 3 {% endblock %} {% block content %}
{% if player.id_in_group == 1 %}
For the practice game, you are RED player
{% else %}
For the practice game, you are BLUE player
{% endif %}

Since the game has arrived at its last turn, the game has ended.

When this happens, the Large Pile is doubled and automatically assigned to the RED player.
Likewise, the Small Pile is doubled and automatically assigned to the BLUE player.


This means that:

Below you can see both players' screen.

Since no player has decided to take, both players are notified that "Both your opponent and you decided to pass in all rounds". Then, both yours and your opponent's payoff are reported on your screen.


The RED player will see the following screen:


RED player's screen

Results

Both your opponent and you decided to pass in all rounds

Your payoff is: {{ large_pile_practice_pass }}

Your opponent's payoff is: {{ small_pile_practice_pass }}


The BLUE player will see the following screen:


BLUE player's screen

Results

Both your opponent and you decided to pass in all rounds

Your payoff is: {{ small_pile_practice_pass }}

Your opponent's payoff is: {{ large_pile_practice_pass }}


This completes the practice session.

{% if C.INCENTIVE_COMPATIBLE %}

You are not being paid for the practice session, but if this were the real game, then the payoff displayed in results page would be money you have earned from the game, and you would be paid this amount at the end of the experiment.

If multiple games are played, then one of the {{ C.NUM_ROUNDS }} real games you play will be selected at random, and your final payoff will be the payoff you earned in that game.

{% endif %}

We will now proceed to with the real games. Once you push the button START REAL GAME below, you will be paired with an opponent and start playing the game. {% if C.LAB %} If you have any questions, please raise your hand and ask them now, as you are not allowed to do so during the real experiment. {% endif %}

{% endblock %}