import IndividualCondition1_IndividualCondition2 as pages from . import * c = cu class PlayerBot(Bot): def play_round(self): yield pages.Welcome yield pages.Overview yield pages.Task1 yield pages.Task1Instructions if self.player.id_in_group == 1: yield pages.Send1, dict(sent_amount1=C.ENDOWMENT) if self.player.id_in_group == 2: yield pages.SendBack1, dict(send_back_amount1=0) if self.player.id_in_group == 1: yield pages.Guess1, dict(Guess1=0) yield pages.Task2 yield pages.FillerTask yield pages.Task3 yield pages.Task3Instructions if self.player.id_in_group == 1: yield pages.Send2, dict(sent_amount2=C.ENDOWMENT) if self.player.id_in_group == 2: yield pages.SendBack2, dict(send_back_amount2=0) if self.player.id_in_group == 1: yield pages.Guess2, dict(Guess2=0) yield pages.DemographicInfo yield pages.Results