{% load otree_tags staticfiles %}

Game 2 Instructions

This game has two players: Sender and Receiver. You are the {{ player.role }}.

You are given {{ Constants.TG_endowment|c }}, and you will decide how much of this {{ Constants.TG_endowment|c }} you would like to send to the Receiver. The amount sent will be tripled, and then the Receiver will decide how much to return to you.

Your earnings from this game is the amount you did not send, plus the amount returned to you.

Or, {{ Constants.TG_endowment|c }} - (amount you sent) + (amount the Receiver returned)
The Receiver's earnings from this game is the amount received, minus the amount returned to you.
Or, (amount you sent) ✕ {{ Constants.multiplication_factor }} - (amount the Receiver returned)

For example, if you send {{ 1|c }}, the Receiver will receive {{ 3|c }}.

Because, {{ 1|c }} ✕ {{ Constants.multiplication_factor }} = {{ 3|c }}
The Receiver then has the chance to decide how much of the {{ 3|c }} to return to you. If the Receiver decides to return {{ 2|c }}, you will earn {{ 31|c }} from playing this game.
Because, {{ Constants.TG_endowment|c }} - {{ 1|c }} + {{ 2|c }} = {{ 31|c }}
The Receiver earns {{ 1|c }} from playing this game.
Because, {{ 3|c }} - {{ 2|c }} = {{ 1|c }}

Note that depending on how much the Receiver sends back to you, you might earn or lose money.