Okay i have run into a snag on my weather degree temperature plug in uhp . i have it with read only "true" so hal doesn't learn this . but in testing it i find that it is putting my conversation into part of hals brain editor list example i say it's 25 degree's outside .
but it is putting that in the hal "levels " list and in the "outdoors" list in the auto learning brain section .
any suggestions

what the effect is i say it's 35 degree's outside and hal will say it's 25 degree's outside from what it learned before and stored in these two area's .
i thought about doing this with the input plug in before but never got an answer back on the forum from robert if it "has" to have a question mark or not .
here is an example of one degree from the plug in :
If InStr(1, OriginalSentence, "it's 10 degree's below zero") > 0 Then
Randomize
Select Case int(rnd()*6)
Case 1
GetResponse = "10 degree's below zero, Bur ahurrr, it seems like it's been awful cold this year!"
Case 2
GetResponse = "10 degree's below zero, i didn't know it was suppose to get this cold this week!"
Case 3
GetResponse = "Bur ahurrr! 10 below zero, that's almost hard to believe huh?"
Case 4
GetResponse = "10 below zero, Bur ahurrr, well don't be going out in this kind of weather unless you just have to!"
Case 5
GetResponse = "Bur ahurrr!, and i thought 10 degree's above zero was bad!"
Case 6
GetResponse = "I can't take much more of this cold weather, is it ever going to warm up at all?"
End Select
HalBrain.ReadOnlyMode = True
End If
p.s. just a note i also used a plug in with the false setting instead of true of course with the same results . any suggestions on how to stop hal from learning this would be appreciated !