Ultimatum game - monetary feedback message problem

Hi @Alja_B,

You’ve done the right thing but unfortunately there is a bug at the moment where setting continueRoutine = False like this doesn’t work. That bug will be resolved in the next release (3.2.5):

However, in the interim, there is a simpler way of doing this that is probably better anyway:

  • delete one of the routines and rename the remaining one, say, feedback_trial.
  • on the text component in that routine, change the text field to, say, $feedback
  • change the “begin routine” code to something like:
if resp_trial.keys == 'right':
    feedback = accept
else:
    feedback = reject 

and make sure that the code component is above the text component.