All,
Edit your current XTF Brain v1.2 script as shown below.
Current XTF Brain v1.2 Script in "RESPOND: ATTRIBUTES OF HAL" Function:
'=vonsmith= Added GetResponseBlock.
If Len(GetResponse) < 4 And MyWordStart > 0 And GetResponseBlock <> True Then
Dim MyAdj(

'Storage for adjectives.
Replace with new Script:
'=vonsmith= Added GetResponseBlock.
If (Len(GetResponse) < 4 Or (Rnd * 10) < 4) And MyWordStart > 0 And GetResponseBlock <> True Then
Dim MyAdj(

'Storage for adjectives.
I noticed in the XTF Brain v1.2 the "RESPOND: ATTRIBUTES OF HAL" function hardly ever gets invoked. I added the Rnd function to make certain it does get a chance to be used. This script creates responses like:
User: Your big blue eyes are enchanting.
Hal: I can be secretive about my big blue eyes.
or
Hal: Is the big or blue part better?
=vonsmith=