I’m blocking on the use of temporary and system variables. I would like to activate a rule that depends on another.
Example :
# Do you drink alcohol
u: (vous bvez de l’alcool)
$apero = 1
oui
# at what frequency
u: (à quelle fréquence vous buvez)
if ($apero==1){
une fois par mois
}else{
je ne bois pas
}
The problem that as soon as it finds the variable apero equal to the value 1 it gives the right answer only that even after relaunching the system the variable apero remains fixed to 1 and the answer of the second rule is not the good one.
Thanks to help me