﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 5  » Fault in Probabilistic Reversal Learning Task?</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 02 Jul 2026 09:00:52 GMT</lastBuildDate><ttl>20</ttl><item><title>Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27612.aspx</link><description>Dear all,&lt;br/&gt;&lt;br/&gt;i have a question regarding the PRL:&lt;br/&gt;We noticed that in some cases, the "point counter" of the task stays on the same amount of points collected, when a participant chose the incorrect pattern after a reversal has taken place. Even though this counts as an incorrect choice, the points do not go down (see the data attachment, starting at trial number 833, point counter is on 88). This problem seems to happen only if someone consistently gives an incorrect answer after a reversal took place, so the response category is always RE (reversal error).&lt;br/&gt;Do i maybe understand the task not correctly? I thought that whenever you get the feedback "correct" (even if its actually not correct) you get a point, and vise-versa, you get the feedback "incorrect", you lose points.&amp;nbsp;&lt;br/&gt;I am attaching the script aswell.&lt;br/&gt;&lt;br/&gt;Thank you so much in advance!&lt;br/&gt;&lt;br/&gt;Sabrina</description><pubDate>Thu, 29 Aug 2019 13:52:04 GMT</pubDate><dc:creator>SabRV</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27701.aspx</link><description>&lt;div data-id="27621" class="if-quote-wrapper" unselectable="on" data-guid="1567111549408"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27621" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27621" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27621" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;SabRV - 8/19/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27621"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;br/&gt;Thank you so much for your answer Dave! Let me know when you guys have adapted the script, we&amp;nbsp;would like to&amp;nbsp;start with the data collection soon&amp;nbsp;:)&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27621"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;The updated script is available in the library now (&amp;nbsp;&lt;a href="https://www.millisecond.com/download/library/reversallearning/probabilisticreversallearningtask/)."&gt;&lt;a href="https://www.millisecond.com/download/library/reversallearning/probabilisticreversallearningtask/"&gt;https://www.millisecond.com/download/library/reversallearning/probabilisticreversallearningtask/&lt;/a&gt;&lt;/a&gt; ). The relevant change regarding the treatment of response category RE (reversal error) is below, in &amp;lt;trial choice&amp;gt;:&lt;br/&gt;&lt;br/&gt;&lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;Previous (faulty) version:&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;&lt;blockquote&gt;&amp;lt;trial choice&amp;gt;&lt;br/&gt;/ ontrialbegin = [&lt;br/&gt;&lt;br/&gt;if (values.countConsecutiveCorrect == values.maxCorrectChoices){&lt;br/&gt;list.ICFeedback.appenditem(values.countICFeedback);&lt;br/&gt;values.reversal = 1;&lt;br/&gt;values.countConsecutiveCorrect = 0;&lt;br/&gt;values.helper = values.index_correctChoice;&lt;br/&gt;values.index_correctChoice = values.index_incorrectChoice;&lt;br/&gt;values.index_incorrectChoice = values.helper;&lt;br/&gt;values.maxCorrectChoices = list.reversals.nextvalue;&lt;br/&gt;if (monkey.monkeymode){&lt;br/&gt;values.maxCorrectChoices = 4;&lt;br/&gt;};&lt;br/&gt;values.countReversals += 1;&lt;br/&gt;values.relearned = 0;&lt;br/&gt;values.countICFeedback = 0;&lt;br/&gt;} else {&lt;br/&gt;values.reversal = 0;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.counttrials += 1;&lt;br/&gt;picture.correctStim.hposition = list.hpositions.nextvalue;&lt;br/&gt;if (picture.correctStim.hposition == "25pct"){&lt;br/&gt;values.correctChoicePosition = 1;&lt;br/&gt;values.correctKey = parameters.leftKey;&lt;br/&gt;values.incorrectKey = parameters.rightKey;&lt;br/&gt;} else {&lt;br/&gt;values.correctChoicePosition = 2;&lt;br/&gt;values.correctKey = parameters.rightKey;&lt;br/&gt;values.incorrectKey = parameters.leftKey;&lt;br/&gt;};&lt;br/&gt;picture.incorrectStim.hposition = list.hpositions.nextvalue;&lt;br/&gt;&lt;br/&gt;picture.correctStim_practice.hposition = picture.correctStim.hposition;&lt;br/&gt;picture.incorrectStim_practice.hposition = picture.incorrectStim.hposition;&lt;br/&gt;&lt;br/&gt;]&lt;br/&gt;/ stimulustimes = [0 = correctStim, correctStim_practice, incorrectStim, incorrectStim_practice, total]&lt;br/&gt;/ timeout = parameters.maxStimDuration&lt;br/&gt;/ validresponse = (parameters.leftKey, parameters.rightKey)&lt;br/&gt;/ correctresponse = (values.correctKey)&lt;br/&gt;/ ontrialend = [&lt;br/&gt;if (trial.choice.correct){&lt;br/&gt;values.feedback = list.correctChoiceFeedback.nextvalue;&lt;br/&gt;&lt;br/&gt;if (values.reversal == 1){&lt;br/&gt;values.respCategory = "lucky guess";&lt;br/&gt;values.countLG += 1;&lt;br/&gt;} else if (values.relearned == 0){&lt;br/&gt;values.relearned = 1;&lt;br/&gt;values.respCategory = "C-RE";&lt;br/&gt;values.countC += 1;&lt;br/&gt;} else {&lt;br/&gt;values.respCategory = "C";&lt;br/&gt;values.countC += 1;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;if (values.feedback == 1){&lt;br/&gt;values.countICFeedback += 1;&lt;br/&gt;if (values.respCategory == "lucky guess"){&lt;br/&gt;values.respCategory = "lucky guess (PE)";&lt;br/&gt;} else if (values.respCategory == "C-RE"){&lt;br/&gt;values.respCategory = "C-RE (PE)";&lt;br/&gt;} else {&lt;br/&gt;values.respCategory = "PE";&lt;br/&gt;};&lt;br/&gt;values.totalPoints -= 1;&lt;br/&gt;} else {&lt;br/&gt;values.totalPoints += 1;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.countConsecutiveCorrect += 1;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;} else if (trial.choice.response == values.incorrectKey){&lt;br/&gt;values.feedback = list.incorrectChoiceFeedback.nextvalue;&lt;br/&gt;&lt;br/&gt;if (values.relearned == 0){&lt;br/&gt;&lt;strong&gt;values.respCategory = "RE";&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;values.countRE += 1;&lt;/strong&gt;&lt;br/&gt;} else {&lt;br/&gt;values.countE += 1;&lt;br/&gt;if (values.feedback == 2){&lt;br/&gt;values.respCategory = "E-PE";&lt;br/&gt;values.totalPoints += 1;&lt;br/&gt;} else {&lt;br/&gt;values.respCategory = "E";&lt;br/&gt;values.totalPoints -= 1;&lt;br/&gt;};&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.countConsecutiveCorrect = 0;&lt;br/&gt;} else {&lt;br/&gt;values.feedback = 1;&lt;br/&gt;values.respCategory = "NR";&lt;br/&gt;values.countConsecutiveCorrect = 0;&lt;br/&gt;values.countNR += 1;&lt;br/&gt;values.totalPoints -= 1;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.iti = parameters.SOA - trial.choice.latency - parameters.feedbackDuration;&lt;br/&gt;&lt;br/&gt;if (values.countConsecutiveCorrect == values.maxCorrectChoices){&lt;br/&gt;if (values.countReversals == values.numberReversals){&lt;br/&gt;values.stop = 1;&lt;br/&gt;};&lt;br/&gt;};&lt;br/&gt;]&lt;br/&gt;/ branch = [&lt;br/&gt;trial.feedback;&lt;br/&gt;]&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;/blockquote&gt;&lt;br/&gt;&lt;strong&gt;&lt;span style="text-decoration: underline;"&gt;Current (updated) version:&lt;/span&gt;&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;&lt;blockquote&gt;&amp;lt;trial choice&amp;gt;&lt;br/&gt;/ ontrialbegin = [&lt;br/&gt;&lt;br/&gt;if (values.countConsecutiveCorrect == values.maxCorrectChoices){&lt;br/&gt;list.ICFeedback.appenditem(values.countICFeedback);&lt;br/&gt;values.reversal = 1;&lt;br/&gt;values.countConsecutiveCorrect = 0;&lt;br/&gt;values.helper = values.index_correctChoice;&lt;br/&gt;values.index_correctChoice = values.index_incorrectChoice;&lt;br/&gt;values.index_incorrectChoice = values.helper;&lt;br/&gt;values.maxCorrectChoices = list.reversals.nextvalue;&lt;br/&gt;if (monkey.monkeymode){&lt;br/&gt;values.maxCorrectChoices = 4;&lt;br/&gt;};&lt;br/&gt;values.countReversals += 1;&lt;br/&gt;values.relearned = 0;&lt;br/&gt;values.countICFeedback = 0;&lt;br/&gt;} else {&lt;br/&gt;values.reversal = 0;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.counttrials += 1;&lt;br/&gt;picture.correctStim.hposition = list.hpositions.nextvalue;&lt;br/&gt;if (picture.correctStim.hposition == "25pct"){&lt;br/&gt;values.correctChoicePosition = 1;&lt;br/&gt;values.correctKey = parameters.leftKey;&lt;br/&gt;values.incorrectKey = parameters.rightKey;&lt;br/&gt;} else {&lt;br/&gt;values.correctChoicePosition = 2;&lt;br/&gt;values.correctKey = parameters.rightKey;&lt;br/&gt;values.incorrectKey = parameters.leftKey;&lt;br/&gt;};&lt;br/&gt;picture.incorrectStim.hposition = list.hpositions.nextvalue;&lt;br/&gt;&lt;br/&gt;picture.correctStim_practice.hposition = picture.correctStim.hposition;&lt;br/&gt;picture.incorrectStim_practice.hposition = picture.incorrectStim.hposition;&lt;br/&gt;&lt;br/&gt;]&lt;br/&gt;/ stimulustimes = [0 = correctStim, correctStim_practice, incorrectStim, incorrectStim_practice, total]&lt;br/&gt;/ timeout = parameters.maxStimDuration&lt;br/&gt;/ validresponse = (parameters.leftKey, parameters.rightKey)&lt;br/&gt;/ correctresponse = (values.correctKey)&lt;br/&gt;/ ontrialend = [&lt;br/&gt;if (trial.choice.correct){&lt;br/&gt;values.feedback = list.correctChoiceFeedback.nextvalue;&lt;br/&gt;&lt;br/&gt;if (values.reversal == 1){&lt;br/&gt;values.respCategory = "lucky guess";&lt;br/&gt;values.countLG += 1;&lt;br/&gt;} else if (values.relearned == 0){&lt;br/&gt;values.relearned = 1;&lt;br/&gt;values.respCategory = "C-RE";&lt;br/&gt;values.countC += 1;&lt;br/&gt;} else {&lt;br/&gt;values.respCategory = "C";&lt;br/&gt;values.countC += 1;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;if (values.feedback == 1){&lt;br/&gt;values.countICFeedback += 1;&lt;br/&gt;if (values.respCategory == "lucky guess"){&lt;br/&gt;values.respCategory = "lucky guess (PE)";&lt;br/&gt;} else if (values.respCategory == "C-RE"){&lt;br/&gt;values.respCategory = "C-RE (PE)";&lt;br/&gt;} else {&lt;br/&gt;values.respCategory = "PE";&lt;br/&gt;};&lt;br/&gt;values.totalPoints -= 1;&lt;br/&gt;} else {&lt;br/&gt;values.totalPoints += 1;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.countConsecutiveCorrect += 1;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;} else if (trial.choice.response == values.incorrectKey){&lt;br/&gt;values.feedback = list.incorrectChoiceFeedback.nextvalue;&lt;br/&gt;&lt;br/&gt;if (values.relearned == 0){&lt;br/&gt;&lt;strong&gt;values.respCategory = "RE";&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;values.countRE += 1;&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;if (values.feedback == 2){&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;values.totalPoints += 1;&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;} else {&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;values.totalPoints -= 1;&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;};&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;} else {&lt;br/&gt;values.countE += 1;&lt;br/&gt;if (values.feedback == 2){&lt;br/&gt;values.respCategory = "E-PE";&lt;br/&gt;values.totalPoints += 1;&lt;br/&gt;} else {&lt;br/&gt;values.respCategory = "E";&lt;br/&gt;values.totalPoints -= 1;&lt;br/&gt;};&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.countConsecutiveCorrect = 0;&lt;br/&gt;} else {&lt;br/&gt;values.feedback = 1;&lt;br/&gt;values.respCategory = "NR";&lt;br/&gt;values.countConsecutiveCorrect = 0;&lt;br/&gt;values.countNR += 1;&lt;br/&gt;values.totalPoints -= 1;&lt;br/&gt;};&lt;br/&gt;&lt;br/&gt;values.iti = parameters.SOA - trial.choice.latency - parameters.feedbackDuration;&lt;br/&gt;&lt;br/&gt;if (values.countConsecutiveCorrect == values.maxCorrectChoices){&lt;br/&gt;if (values.countReversals == values.numberReversals){&lt;br/&gt;values.stop = 1;&lt;br/&gt;};&lt;br/&gt;};&lt;br/&gt;]&lt;br/&gt;/ branch = [&lt;br/&gt;trial.feedback;&lt;br/&gt;]&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;/blockquote&gt;</description><pubDate>Thu, 29 Aug 2019 13:52:04 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27621.aspx</link><description>&lt;div class="if-quote-wrapper" data-guid="1566217676544" unselectable="on" data-id="27620"&gt;&lt;a title="Move Cursor Below" class="quote-para" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27620"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a title="Delete Quote" class="quote-delete" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27620"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span class="quote-markup" unselectable="on"&gt;[quote]&lt;/span&gt;&lt;div class="if-quote-header" contenteditable="false" unselectable="on"&gt;&lt;div class="if-quote-toggle-wrapper" unselectable="on"&gt;&lt;a title=" " class="if-quote-toggle quote-link" href="#" data-id="27620"&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="quote-markup" unselectable="on"&gt;[b]&lt;/span&gt;Dave - 8/19/2019&lt;span class="quote-markup" unselectable="on"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27620"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div class="if-quote-wrapper" data-guid="1566217676544" unselectable="on" data-id="27618"&gt;&lt;a title="Move Cursor Below" class="quote-para" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27618"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a title="Delete Quote" class="quote-delete" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27618"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span class="quote-markup" unselectable="on"&gt;[quote]&lt;/span&gt;&lt;div class="if-quote-header" contenteditable="false" unselectable="on"&gt;&lt;div class="if-quote-toggle-wrapper" unselectable="on"&gt;&lt;a title=" " class="if-quote-toggle quote-link" href="#" data-id="27618"&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="quote-markup" unselectable="on"&gt;[b]&lt;/span&gt;SabRV - 8/17/2019&lt;span class="quote-markup" unselectable="on"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27618"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div class="if-quote-wrapper" data-guid="1566217676544" unselectable="on" data-id="27614"&gt;&lt;a title="Move Cursor Below" class="quote-para" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27614"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a title="Delete Quote" class="quote-delete" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27614"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span class="quote-markup" unselectable="on"&gt;[quote]&lt;/span&gt;&lt;div class="if-quote-header" contenteditable="false" unselectable="on"&gt;&lt;div class="if-quote-toggle-wrapper" unselectable="on"&gt;&lt;a title=" " class="if-quote-toggle quote-link" href="#" data-id="27614"&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="quote-markup" unselectable="on"&gt;[b]&lt;/span&gt;Dave - 8/16/2019&lt;span class="quote-markup" unselectable="on"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27614"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div class="if-quote-wrapper" data-guid="1566217676544" unselectable="on" data-id="27612"&gt;&lt;a title="Move Cursor Below" class="quote-para" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27612"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a title="Delete Quote" class="quote-delete" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27612"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span class="quote-markup" unselectable="on"&gt;[quote]&lt;/span&gt;&lt;div class="if-quote-header" contenteditable="false" unselectable="on"&gt;&lt;div class="if-quote-toggle-wrapper" unselectable="on"&gt;&lt;a title=" " class="if-quote-toggle quote-link" href="#" data-id="27612"&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="quote-markup" unselectable="on"&gt;[b]&lt;/span&gt;SabRV - 8/16/2019&lt;span class="quote-markup" unselectable="on"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27612"&gt;&lt;div class="if-quote-message-margin"&gt;Dear all,&lt;br/&gt;&lt;br/&gt;i have a question regarding the PRL:&lt;br/&gt;We noticed that in some cases, the "point counter" of the task stays on the same amount of points collected, when a participant chose the incorrect pattern after a reversal has taken place. Even though this counts as an incorrect choice, the points do not go down (see the data attachment, starting at trial number 833, point counter is on 88). This problem seems to happen only if someone consistently gives an incorrect answer after a reversal took place, so the response category is always RE (reversal error).&lt;br/&gt;Do i maybe understand the task not correctly? I thought that whenever you get the feedback "correct" (even if its actually not correct) you get a point, and vise-versa, you get the feedback "incorrect", you lose points.&amp;nbsp;&lt;br/&gt;I am attaching the script aswell.&lt;br/&gt;&lt;br/&gt;Thank you so much in advance!&lt;br/&gt;&lt;br/&gt;Sabrina&lt;a class="if-quote-goto quote-link" href="#" data-id="27612"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;As far as I know, this is a deliberate task feature, but I will double-check.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27614"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Thanks Dave, I'll await your answer then :)&lt;a class="if-quote-goto quote-link" href="#" data-id="27618"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Katja, who wrote the PRL implementation, went back through her development notes and now tends to believe that the lack of point deduction after incorrect responses on reversal ("reversal error", "RE") was in fact a mistake. We'll be updating the library script shortly after some additional checks, and then I will gladly assist with transfering the changes to your own, translated script.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27620"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Thank you so much for your answer Dave! Let me know when you guys have adapted the script, we&amp;nbsp;would like to&amp;nbsp;start with the data collection soon&amp;nbsp;:)&lt;br/&gt;</description><pubDate>Mon, 19 Aug 2019 05:50:24 GMT</pubDate><dc:creator>SabRV</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27620.aspx</link><description>&lt;div data-id="27618" class="if-quote-wrapper" unselectable="on" data-guid="1566216469804"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27618" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27618" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27618" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;SabRV - 8/17/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27618"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div data-id="27614" class="if-quote-wrapper" unselectable="on" data-guid="1566216469804"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27614" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27614" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27614" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Dave - 8/16/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27614"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div data-id="27612" class="if-quote-wrapper" unselectable="on" data-guid="1566216469804"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27612" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27612" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27612" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;SabRV - 8/16/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27612"&gt;&lt;div class="if-quote-message-margin"&gt;Dear all,&lt;br/&gt;&lt;br/&gt;i have a question regarding the PRL:&lt;br/&gt;We noticed that in some cases, the "point counter" of the task stays on the same amount of points collected, when a participant chose the incorrect pattern after a reversal has taken place. Even though this counts as an incorrect choice, the points do not go down (see the data attachment, starting at trial number 833, point counter is on 88). This problem seems to happen only if someone consistently gives an incorrect answer after a reversal took place, so the response category is always RE (reversal error).&lt;br/&gt;Do i maybe understand the task not correctly? I thought that whenever you get the feedback "correct" (even if its actually not correct) you get a point, and vise-versa, you get the feedback "incorrect", you lose points.&amp;nbsp;&lt;br/&gt;I am attaching the script aswell.&lt;br/&gt;&lt;br/&gt;Thank you so much in advance!&lt;br/&gt;&lt;br/&gt;Sabrina&lt;a class="if-quote-goto quote-link" href="#" data-id="27612"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;As far as I know, this is a deliberate task feature, but I will double-check.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27614"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Thanks Dave, I'll await your answer then :)&lt;a class="if-quote-goto quote-link" href="#" data-id="27618"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Katja, who wrote the PRL implementation, went back through her development notes and now tends to believe that the lack of point deduction after incorrect responses on reversal ("reversal error", "RE") was in fact a mistake. We'll be updating the library script shortly after some additional checks, and then I will gladly assist with transfering the changes to your own, translated script.&lt;br/&gt;</description><pubDate>Mon, 19 Aug 2019 05:12:20 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27618.aspx</link><description>&lt;div data-id="27614" class="if-quote-wrapper" unselectable="on" data-guid="1566031828013"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27614" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27614" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27614" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Dave - 8/16/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27614"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div data-id="27612" class="if-quote-wrapper" unselectable="on" data-guid="1566031828013"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27612" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27612" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27612" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;SabRV - 8/16/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27612"&gt;&lt;div class="if-quote-message-margin"&gt;Dear all,&lt;br/&gt;&lt;br/&gt;i have a question regarding the PRL:&lt;br/&gt;We noticed that in some cases, the "point counter" of the task stays on the same amount of points collected, when a participant chose the incorrect pattern after a reversal has taken place. Even though this counts as an incorrect choice, the points do not go down (see the data attachment, starting at trial number 833, point counter is on 88). This problem seems to happen only if someone consistently gives an incorrect answer after a reversal took place, so the response category is always RE (reversal error).&lt;br/&gt;Do i maybe understand the task not correctly? I thought that whenever you get the feedback "correct" (even if its actually not correct) you get a point, and vise-versa, you get the feedback "incorrect", you lose points.&amp;nbsp;&lt;br/&gt;I am attaching the script aswell.&lt;br/&gt;&lt;br/&gt;Thank you so much in advance!&lt;br/&gt;&lt;br/&gt;Sabrina&lt;a class="if-quote-goto quote-link" href="#" data-id="27612"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;As far as I know, this is a deliberate task feature, but I will double-check.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27614"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Thanks Dave, I'll await your answer then :)</description><pubDate>Sat, 17 Aug 2019 01:51:18 GMT</pubDate><dc:creator>SabRV</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27617.aspx</link><description>&lt;div class="if-quote-wrapper" unselectable="on" data-id="27616" data-guid="1565970889446"&gt;&lt;a title="Move Cursor Below" class="quote-para" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27616"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a title="Delete Quote" class="quote-delete" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27616"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span class="quote-markup" unselectable="on"&gt;[quote]&lt;/span&gt;&lt;div class="if-quote-header" contenteditable="false" unselectable="on"&gt;&lt;div class="if-quote-toggle-wrapper" unselectable="on"&gt;&lt;a title=" " class="if-quote-toggle quote-link" href="#" data-id="27616"&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="quote-markup" unselectable="on"&gt;[b]&lt;/span&gt;Dave - 8/16/2019&lt;span class="quote-markup" unselectable="on"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27616"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div class="if-quote-wrapper" unselectable="on" data-id="27615" data-guid="1565970889446"&gt;&lt;a title="Move Cursor Below" class="quote-para" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27615"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a title="Delete Quote" class="quote-delete" style="display: none;" contenteditable="false" href="#" unselectable="on" data-id="27615"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span class="quote-markup" unselectable="on"&gt;[quote]&lt;/span&gt;&lt;div class="if-quote-header" contenteditable="false" unselectable="on"&gt;&lt;div class="if-quote-toggle-wrapper" unselectable="on"&gt;&lt;a title=" " class="if-quote-toggle quote-link" href="#" data-id="27615"&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="quote-markup" unselectable="on"&gt;[b]&lt;/span&gt;DickyBoy - 8/16/2019&lt;span class="quote-markup" unselectable="on"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27615"&gt;&lt;div class="if-quote-message-margin"&gt;Thank you for pointing this out.&amp;nbsp; I will need to learn the diagnosis of this potential PRL issue.&amp;nbsp; I need to bring up another issue I have&amp;nbsp;regarding the PRL.&amp;nbsp; We present the PRL as the first&amp;nbsp;in a batch file&amp;nbsp;with a total of&amp;nbsp;eight tasks.&amp;nbsp; Our batch file randomly aborts after the PRL only.&amp;nbsp; If I had to estimate, I would say this occurs one in fifteen runs of the batch file.&amp;nbsp; There appears to be no consistency.&amp;nbsp; The only viable explanation I could come up with is a cache overload.&amp;nbsp; We purposefully close and re-open Inquisit 5&amp;nbsp;prior to running this batch script to&amp;nbsp;clear the cache.&amp;nbsp; Any thoughts would be appreciated.&amp;nbsp; Thanks, Rich&lt;a class="if-quote-goto quote-link" href="#" data-id="27615"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;It's not overload; there is a script.abort() condition in the PRL (by design), and that will by default terminate the entire batch of scripts.&lt;br/&gt;&lt;br/&gt;&amp;lt;block abortTask&amp;gt;&lt;br/&gt;/ trials = [1 = finish]&lt;br/&gt;/ onblockend = [&lt;br/&gt;values.abort = 1;&lt;br/&gt;&lt;strong&gt;script.abort();&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;If you DON'T want to terminate the entire batch, change the above to &lt;br/&gt;&lt;br/&gt;&amp;lt;block abortTask&amp;gt;&lt;br/&gt;/ trials = [1 = finish]&lt;br/&gt;/ onblockend = [&lt;br/&gt;values.abort = 1;&lt;br/&gt;&lt;strong&gt;script.abort(false);&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;(Also see &lt;a href="https://www.millisecond.com/forums/Topic26941.aspx"&gt;&lt;a href="https://www.millisecond.com/forums/Topic26941.aspx"&gt;https://www.millisecond.com/forums/Topic26941.aspx&lt;/a&gt;&lt;/a&gt; )&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27616"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Thank you so much Dave!&lt;br/&gt;</description><pubDate>Fri, 16 Aug 2019 08:56:15 GMT</pubDate><dc:creator>Throughput</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27616.aspx</link><description>&lt;div data-id="27615" class="if-quote-wrapper" unselectable="on" data-guid="1565970280221"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27615" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27615" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27615" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;DickyBoy - 8/16/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27615"&gt;&lt;div class="if-quote-message-margin"&gt;Thank you for pointing this out.&amp;nbsp; I will need to learn the diagnosis of this potential PRL issue.&amp;nbsp; I need to bring up another issue I have&amp;nbsp;regarding the PRL.&amp;nbsp; We present the PRL as the first&amp;nbsp;in a batch file&amp;nbsp;with a total of&amp;nbsp;eight tasks.&amp;nbsp; Our batch file randomly aborts after the PRL only.&amp;nbsp; If I had to estimate, I would say this occurs one in fifteen runs of the batch file.&amp;nbsp; There appears to be no consistency.&amp;nbsp; The only viable explanation I could come up with is a cache overload.&amp;nbsp; We purposefully close and re-open Inquisit 5&amp;nbsp;prior to running this batch script to&amp;nbsp;clear the cache.&amp;nbsp; Any thoughts would be appreciated.&amp;nbsp; Thanks, Rich&lt;a class="if-quote-goto quote-link" href="#" data-id="27615"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;It's not overload; there is a script.abort() condition in the PRL (by design), and that will by default terminate the entire batch of scripts.&lt;br/&gt;&lt;br/&gt;&amp;lt;block abortTask&amp;gt;&lt;br/&gt;/ trials = [1 = finish]&lt;br/&gt;/ onblockend = [&lt;br/&gt;values.abort = 1;&lt;br/&gt;&lt;strong&gt;script.abort();&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;If you DON'T want to terminate the entire batch, change the above to &lt;br/&gt;&lt;br/&gt;&amp;lt;block abortTask&amp;gt;&lt;br/&gt;/ trials = [1 = finish]&lt;br/&gt;/ onblockend = [&lt;br/&gt;values.abort = 1;&lt;br/&gt;&lt;strong&gt;script.abort(false);&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;(Also see &lt;a href="https://www.millisecond.com/forums/Topic26941.aspx"&gt;https://www.millisecond.com/forums/Topic26941.aspx&lt;/a&gt; )&lt;br/&gt;</description><pubDate>Fri, 16 Aug 2019 08:47:41 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27615.aspx</link><description>Thank you for pointing this out.&amp;nbsp; I will need to learn the diagnosis of this potential PRL issue.&amp;nbsp; I need to bring up another issue I have&amp;nbsp;regarding the PRL.&amp;nbsp; We present the PRL as the first&amp;nbsp;in a batch file&amp;nbsp;with a total of&amp;nbsp;eight tasks.&amp;nbsp; Our batch file randomly aborts after the PRL only.&amp;nbsp; If I had to estimate, I would say this occurs one in fifteen runs of the batch file.&amp;nbsp; There appears to be no consistency.&amp;nbsp; The only viable explanation I could come up with is a cache overload.&amp;nbsp; We purposefully close and re-open Inquisit 5&amp;nbsp;prior to running this batch script to&amp;nbsp;clear the cache.&amp;nbsp; Any thoughts would be appreciated.&amp;nbsp; Thanks, Rich</description><pubDate>Fri, 16 Aug 2019 08:20:32 GMT</pubDate><dc:creator>Throughput</dc:creator></item><item><title>RE: Fault in Probabilistic Reversal Learning Task?</title><link>https://forums.millisecond.com/Topic27614.aspx</link><description>&lt;div data-id="27612" class="if-quote-wrapper" unselectable="on" data-guid="1565957115439"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27612" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27612" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27612" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;SabRV - 8/16/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27612"&gt;&lt;div class="if-quote-message-margin"&gt;Dear all,&lt;br/&gt;&lt;br/&gt;i have a question regarding the PRL:&lt;br/&gt;We noticed that in some cases, the "point counter" of the task stays on the same amount of points collected, when a participant chose the incorrect pattern after a reversal has taken place. Even though this counts as an incorrect choice, the points do not go down (see the data attachment, starting at trial number 833, point counter is on 88). This problem seems to happen only if someone consistently gives an incorrect answer after a reversal took place, so the response category is always RE (reversal error).&lt;br/&gt;Do i maybe understand the task not correctly? I thought that whenever you get the feedback "correct" (even if its actually not correct) you get a point, and vise-versa, you get the feedback "incorrect", you lose points.&amp;nbsp;&lt;br/&gt;I am attaching the script aswell.&lt;br/&gt;&lt;br/&gt;Thank you so much in advance!&lt;br/&gt;&lt;br/&gt;Sabrina&lt;a class="if-quote-goto quote-link" href="#" data-id="27612"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;As far as I know, this is a deliberate task feature, but I will double-check.&lt;br/&gt;</description><pubDate>Fri, 16 Aug 2019 05:08:32 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>