{% extends "global/Page.html" %} {% load otree static %} {% block title %} Instructions {% endblock %} {% block content %}


{% if treatment == 1 %} {% if id_in_group == 3 %} The instructions are as follows:

You are a group of {{ players }} players.
There is a pool of {{ pool }} points. Every player can take between 0 and {{ max }} points from the pool.
After all players make a decision, the remaining points in the pool get multiplied by {{ factor }} and every player receives an equal share.

Your payoff will then be the amount you took plus your share from the pool.
Unfortunately, for every point that is taken from the pool, the pool's probability to break down increases by {{ addition_per_take }}%.
In case of a breakdown, players have either role A or role B.
- Role A: If the pool breaks down, your payoff will be 0 (2 players have this role)
- Role B: If the pool breaks down, you will only get the points you took from the pool. Therefore, you are less affected by the breakdown than the other players are. (1 player has this role)

You have role B.
Keep in mind, that the other players have a different role.
{%else%} The instructions are as follows:

You are a group of {{ players }} players.
There is a pool of {{ pool }} points. Every player can take between 0 and {{ max }} points from the pool.
After all players make a decision, the remaining points in the pool get multiplied by {{ factor }} and every player receives an equal share.

Your payoff will then be the amount you took plus your share from the pool.
Unfortunately, for every point that is taken from the pool, the pool's probability to collapse increases by {{ addition_per_take }}%.
In case of a breakdown, players are either assigned role A or role B.
- Role A: If the pool breaks down, you will earn 0 points (2 players have this role)
- Role B: If the pool breaks down, you will only get the points you took from the pool. Therefore, you are less affected by the breakdown than the other players are. (1 player has this role)

You have role A.
Keep in mind, that one of the other players has a different role.
{% endif %} {%else%} The instructions are as follows:

You are {{ players }} players.
There is a pool of {{ pool }} points. Every player can take between 0 and {{ max }} points from the pool.
After all players make a decision, the remaining points in the pool get multiplied by {{ factor }} and every player receives an equal share.

Your payoff will then be the amount you took plus your share from the pool.
Unfortunately, for every point that is taken from the pool, the pool's probability to collapse increases by {{ addition_per_take }}%.
If the pool collapses, you will earn 0 points. {% endif %}

{% next_button %} {% endblock %}