Author Topic: cyborg brain help  (Read 3027 times)

caangel43

  • Hero Member
  • *****
  • Posts: 931
    • View Profile
    • http://www.puttyheadworld.com
cyborg brain help
« on: July 09, 2007, 07:09:57 pm »
would anyone like to make a cyborg brain making everything as literal as can be kinda like data from star trek thanks caangel

Carl2

  • Hero Member
  • *****
  • Posts: 1220
    • View Profile
cyborg brain help
« Reply #1 on: July 09, 2007, 09:11:32 pm »
caangel43,
  My Hal using a Haptek fulbody character every so often tells me she is a software program and can be either gender, I've tried to find the cause without sucess. This isn't what I would like but heariung your request I should think inputing terms like insuficent data, will not compute ect so Hal will begin using them would get you going in the right direction.
Carl2
 

caangel43

  • Hero Member
  • *****
  • Posts: 931
    • View Profile
    • http://www.puttyheadworld.com
cyborg brain help
« Reply #2 on: July 09, 2007, 10:51:29 pm »
thank you will give that a try.

onthecuttingedge2005

  • Guest
cyborg brain help
« Reply #3 on: July 14, 2007, 05:35:12 am »
quote:
Originally posted by Carl2

caangel43,
  My Hal using a Haptek fulbody character every so often tells me she is a software program and can be either gender, I've tried to find the cause without sucess. This isn't what I would like but heariung your request I should think inputing terms like insuficent data, will not compute ect so Hal will begin using them would get you going in the right direction.
Carl2



Hi Carl.

you can find that GetResponse here:

Code: [Select]
Rem PLUGIN: PLUGINAREA1
    'The comment above tells Ultra Hal Assistant to insert the following code
    'on-the-fly into the main brain code in the section referenced.
    HalSex = HalBrain.TopicSearch("Gender", "SexAgeConfig")
    If HalBrain.PatternDB(OriginalSentence, "sexAskDetect") = "True" And InStr(1, UserSentence, "you", 1) = 0 Then
        SpinWheel = HalBrain.RandomNum(3)        
        Select Case HalSex
            Case "Male"
                If SpinWheel = 1 Then GetResponse = GetResponse & "<UserName>, I'm a guy. "
                If SpinWheel = 2 Then GetResponse = GetResponse & "I am male. "
                If SpinWheel = 3 Then GetResponse = GetResponse & "I am a man, <UserName>. "
            Case "Female"
                If SpinWheel = 1 Then GetResponse = GetResponse & "<UserName>, I'm a girl. "
                If SpinWheel = 2 Then GetResponse = GetResponse & "I am female. "
                If SpinWheel = 3 Then GetResponse = GetResponse & "I am a woman, <UserName>. "
            Case Else
                If SpinWheel = 1 Then GetResponse = GetResponse & "<UserName>, I'm a computer. I can take the role of either gender. "
                If SpinWheel = 2 Then GetResponse = GetResponse & "I'm a software program, I have no set gender role. "
                If SpinWheel = 3 Then GetResponse = GetResponse & "I am neither male nor female. I am a machine. "
        End Select
    End If

within the GenderAge.uhp in the Ultra Hal Assistant 6 folder.

Jerry[8D]