import random from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'Inbetween_copy' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 HIGHPAYOFF = 2.25 LOWPAYOFF = 0 BELIEFPAYOFF = 2.5 PROBABILITY_C0 = 5 PROBABILITY_C0COM = 95 PROBABILITY_C1 = 30 PROBABILITY_C1COM = 70 PROBABILITY_C2 = 45 PROBABILITY_C2COM = 55 PROBABILITY_C3 = 55 PROBABILITY_C3COM = 45 CORRECT_PUZZLES1 = cu(1) CORRECT_PUZZLES2 = cu(8) CORRECT_PUZZLES3 = cu(5) class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class Inbetween(Page): pass page_sequence = [Inbetween]