Hey Inquisitmen,
I noticed some behavior in my logfile where a trial was not branching properly to an Incorrect Feedback trial upon timeout. Is there a more elegant way to do this? and does the trial.elapsedtime element not always work 100% accurately (if I have many branch/ontrialend/etc. elements in the trial)?
Here is my sample code that doesn't always return feedback
<trial patchtrial>
/timeout 5000
/branch = [if (trial.patchtrial.elapsedtime > 4999) trial.wrongfeedback]
... (lots of other branch conditions a long ontrialend)
</trial>