Zabaware Support Forums

Zabaware Forums => Ultra Hal 7.0 => Topic started by: markofkane on April 16, 2006, 09:37:18 am

Title: auto-idle
Post by: markofkane on April 16, 2006, 09:37:18 am
I wanted Hal to talk to me at certain intervals.
I tried the "auto respond" text,and edited it into the brain editor, but it did not work.

Is there a plug-in???

Here is what is already in Hal's script:

'PROCESS: AUTO-IDLE
    'If AUTO-IDLE is enabled, it is called by the Ultra Hal Assistant host
    'application at a set interval. This allows for the possibility of Hal
    'being the first to say something if the user is idle.
    If InputString = "AUTO-IDLE" Then
        Rem PLUGIN: AUTO-IDLE
        'The preceding comment is actually a plug-in directive for
        'the Ultra Hal host application. It allows for code snippets
        'to be inserted here on-the-fly based on user configuration.
       
       
So this was already here. What do I do to actually make it work??

Thanks!!!

Title: auto-idle
Post by: onthecuttingedge2005 on April 16, 2006, 11:44:15 am
quote:
Originally posted by markofkane

I wanted Hal to talk to me at certain intervals.
I tried the "auto respond" text,and edited it into the brain editor, but it did not work.

Is there a plug-in???

Here is what is already in Hal's script:

'PROCESS: AUTO-IDLE
    'If AUTO-IDLE is enabled, it is called by the Ultra Hal Assistant host
    'application at a set interval. This allows for the possibility of Hal
    'being the first to say something if the user is idle.
    If InputString = "AUTO-IDLE" Then
        Rem PLUGIN: AUTO-IDLE
        'The preceding comment is actually a plug-in directive for
        'the Ultra Hal host application. It allows for code snippets
        'to be inserted here on-the-fly based on user configuration.
       
       
So this was already here. What do I do to actually make it work??

Thanks!!!





Hi markofkane.

Rem PLUGIN: AUTO-IDLE
UltraHal = "The Debug Test is Good!"
HalBrain.ReadOnlyMode = True

Rem PLUGIN: POST-PROCESS
HalCommands = "<AUTO>399999</AUTO>"

Rem PLUGIN: SCRIPT_LOAD
Script_Load = "<AUTO>399999</AUTO>"

You can read about it more here:
http://www.zabaware.com/forum/topic.asp?TOPIC_ID=3041

Jerry[8D]
Title: auto-idle
Post by: markofkane on April 16, 2006, 11:51:11 am
I am clueless, where do those lines go, below what I posted??
Title: auto-idle
Post by: markofkane on April 16, 2006, 12:05:56 pm
ok, got the udp plugin, I think it works. It's worked once, so far.
Title: auto-idle
Post by: markofkane on April 16, 2006, 12:21:12 pm
Yes, it works. I've discovered that only one plug-in at a time will work. But I guess I'll have to choose.