Group: Administrators
Posts: 13K,
Visits: 103K
|
There is a mistake in the <parameters> element in the posted script. The trialduration parameter is mistakenly set *way* too short, i.e., the trial will basically stop listening for responses before you ever get the chance to submit one.
<parameters> / resetpracticessd = false / leftkey = 32 / rightkey = 37 / minssd = 10 / maxssd = 300 / adjustment = 10 / ssd_start = 50 / pretrialpause = 0 / posttrialpause = 0 / trialduration = 500 / waitbetweenblocks = 0 / p = 0.5 </parameters>
In addition, the /pretrialpause parameter is also not at the default value it should be set to. If you change those two to
<parameters> / resetpracticessd = false / leftkey = 32 / rightkey = 37 / minssd = 10 / maxssd = 300 / adjustment = 10 / ssd_start = 50 / pretrialpause = 500 / posttrialpause = 0 / trialduration = 2000 / waitbetweenblocks = 0 / p = 0.5 </parameters>
the script should work as intended.
Hope this helps.
|