agen judi bola , sportbook, casino, togel, number game, singapore, tangkas, basket, slot, poker, dominoqq,
agen bola. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 50.000 ,- bonus cashback hingga 10% , diskon togel hingga 66% bisa bermain di android dan IOS kapanpun dan dimana pun. poker , bandarq , aduq, domino qq ,
dominobet. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 10.000 ,- bonus turnover 0.5% dan bonus referral 20%. Bonus - bonus yang dihadirkan bisa terbilang cukup tinggi dan memuaskan, anda hanya perlu memasang pada situs yang memberikan bursa pasaran terbaik yaitu
http://45.77.173.118/ Bola168. Situs penyedia segala jenis permainan poker online kini semakin banyak ditemukan di Internet, salah satunya TahunQQ merupakan situs Agen Judi Domino66 Dan
BandarQ Terpercaya yang mampu memberikan banyak provit bagi bettornya. Permainan Yang Di Sediakan Dewi365 Juga sangat banyak Dan menarik dan Peluang untuk memenangkan Taruhan Judi online ini juga sangat mudah . Mainkan Segera Taruhan Sportbook anda bersama
Agen Judi Bola Bersama Dewi365 Kemenangan Anda Berapa pun akan Terbayarkan. Tersedia 9 macam permainan seru yang bisa kamu mainkan hanya di dalam 1 ID saja. Permainan seru yang tersedia seperti Poker, Domino QQ Dan juga
BandarQ Online. Semuanya tersedia lengkap hanya di ABGQQ. Situs ABGQQ sangat mudah dimenangkan, kamu juga akan mendapatkan mega bonus dan setiap pemain berhak mendapatkan cashback mingguan. ABGQQ juga telah diakui sebagai
Bandar Domino Online yang menjamin sistem FAIR PLAY disetiap permainan yang bisa dimainkan dengan deposit minimal hanya Rp.25.000. DEWI365 adalah
Bandar Judi Bola Terpercaya & resmi dan terpercaya di indonesia. Situs judi bola ini menyediakan fasilitas bagi anda untuk dapat bermain memainkan permainan judi bola. Didalam situs ini memiliki berbagai permainan taruhan bola terlengkap seperti Sbobet, yang membuat DEWI365 menjadi situs judi bola terbaik dan terpercaya di Indonesia. Tentunya sebagai situs yang bertugas sebagai
Bandar Poker Online pastinya akan berusaha untuk menjaga semua informasi dan keamanan yang terdapat di POKERQQ13. Kotakqq adalah situs
Judi Poker Online Terpercayayang menyediakan 9 jenis permainan sakong online, dominoqq, domino99, bandarq, bandar ceme, aduq, poker online, bandar poker, balak66, perang baccarat, dan capsa susun. Dengan minimal deposit withdraw 15.000 Anda sudah bisa memainkan semua permaina pkv games di situs kami. Jackpot besar,Win rate tinggi, Fair play, PKV Games
Comments
Hi @Tryfonas_Bikos ,
The
correct
variable indeed refers to the last response, which I assume is what you're running into. However, each response item also maintains acorrect_[item name]
variable that only relates to that item. If I understand correctly, this should give you the information you need.— Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Hi @Tryfonas_Bikos,
The response variables related to a input (e.g., keyboard event; see https://osdoc.cogsci.nl/4.0/manual/variables/) will always refer to the latest input event. hence if you use two consecutive keyboard events, they will relate to the second and not the first.
This is easily dealt with by using the reaponse variables specific to each keyboard event instead of using the generic ones. You can easily find these variables in the variables inspector if you're not sure what they are. But the rule is simple: add "_" and the name of the object as a siffix to the generic variable. For example, if your keyboard object is called "digit_response", the response variable for it will be:
response_digit_response
.When using conde, instead of
var.response
, you would usevar.response_digit_response
.If you measure response times, these will be measured from the onset of the corresponding keyboard object. So, if you have a sequence of K1 and K2 keyboard objects, the RT for K1 will be measured relative to the onset of K2, and the RT for K2 will be measured relative to the onset of K2.
You can display feedback and assess correct responses automatically by simply using the variables as I described above. For example, at least for the first of two keyboard events*, you would want to specify a variable in the loop that contains the correct response for that event and then specify it explicitly as the correct response when you set up your keyboard event.
* As say "at least" because for the second, since it it the last one in this case, you could siply use the generic variables. However, for clarity and as good practice, I'd recommend using precise variable names.
(screen captures are with version 4 for Open Sesame; if using a previous version, you'd use "[ ]" instead of "{ }". I strongly recommend you always use the latest version, though).
I attach an example I put together just now so that you can see how it works exactly (in Open Sesame v4).
I believe that should solve your problem.
Hope this helps.
Fabrice.