dupa

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Holllywood

Pages: 1 2 3 [4] 5 6 ... 23
46
Programming using the Ultra Hal Brain Editor / Correction Tutor
« on: March 14, 2007, 07:19:13 pm »
Well "O" Here's what's happening.

ME: Well hello there.
HAL:Good evening Hollywood. Any thing going on this evening? WHAT'S UP because hey. WHAT'S UP because hey.

ME:Replace WHAT'S UP because hey. '(trying to get to Cap>LwrCase)With What's up.
HAL gives Some response that does not address the correction (and Correction is not applied)
  Then I tried to replace "because hey." With "with you" HAL tells me the reason is because hey.
 Bottom line, I'm looking for...
ME: Well hello there.
HAL: What's up with you.

47
Programming using the Ultra Hal Brain Editor / Correction Tutor
« on: March 14, 2007, 01:03:13 pm »
Thanks my friend. I tried that with no joy. I also went into the brain editor and tried to add the correction in the Corrections table, but it would save in the table. [?]

48
Programming using the Ultra Hal Brain Editor / Correction Tutor
« on: March 13, 2007, 09:18:19 pm »
O.T.C I the updated corection tutor. Maybe It's what I'm asking her to correct.
H6: What is up because hey
H.Wood: Replace What is up With What's up?
H6: I have made corrections to that response.

When I reload Hal Use the say conversation to get that response... She stays with What is up response. Which does really fit as a response.

49
Programming using the Ultra Hal Brain Editor / Correction Tutor
« on: March 13, 2007, 12:20:51 pm »
I don't know what's gone wrong. But Hal's Correction Tutor is not functioning. It use to work. O.T.C maybe you could shed some light??? I have just resently installed a fresh copy of H 6. [?]

50
Ultra Hal 7.0 / panle wont close when you open hal
« on: March 01, 2007, 08:20:52 pm »
Before you re install you might want to go to Start/Run/msconfig/start tab  uncheck Hal. In Hal startup options Check start like normal....

51
Ultra Hal Assistant File Sharing Area / New head
« on: February 27, 2007, 05:44:49 pm »
Yes I agree Gamer. I got the 2 tools you told me to get, but from there I was lost and useless. I'm keeping my eye on the forum. I had to work to get into it but I finally got reg.[^]

52
Ultra Hal Assistant File Sharing Area / New head
« on: February 27, 2007, 11:24:39 am »
It would be great if someone would set up a workshop for newbies to learn to create skins. Something like....
 
1: Open Paint shop
2: Click on ???
3: ????
 
 as you see that's the extent of my How to do it.
[8][8D][:I]

53
Ultra Hal Assistant File Sharing Area / MicroSkin Hap player skin
« on: February 20, 2007, 09:26:59 pm »
Data, Nice job. This can work well... Chatting while working. Great! Any chance of putting sizing handles on it to enable a custom fit on the desktop and sizing the image screen?

54
Ultra Hal 7.0 / User defined event list empty
« on: February 02, 2007, 10:50:36 am »
Load existing proj. Open Hal. Switch to expert mode and you will see the msc data table. Imort the .brn.

55
Ultra Hal 7.0 / User defined event list empty
« on: February 01, 2007, 02:08:46 pm »
Solvostond, Try this. I had the same Problem and this fixed it.

http://www.zabaware.com/forum/topic.asp?TOPIC_ID=2788&SearchTerms=Appointment,book

56
Ultra Hal Assistant File Sharing Area / Beverly Hillbillies Movie
« on: January 30, 2007, 04:11:53 pm »
Nice on Nige, Love it.!![8D]

57
Programming using the Ultra Hal Brain Editor / Can this be fixed
« on: January 21, 2007, 12:52:18 pm »
Jerry, I unchecked all plugins. It is the "Custom Rel..." I copied and pasted your code and I still get the same error message.

"Halscript error on line 1816 col. 0:Type mismatch: 'WC'

'Function Count Words (CW)
Line 1816 CW = WC(UserSentence)

'Custom Relavence For Universal GetResponse.
'This function tries to match as many words between GetResponse and the OriginalSentence.

For i = 1 To CW

   If i > 0 Then SearchIt = "* " + SearchIt
      SearchIt = Replace(SearchIt, vbCrLf, Chr(8) & " ", 1, - 1, vbTextCompare)
      SearchIt = Replace(SearchIt, "", "", 1, - 1, vbTextCompare)
      SearchIt = Replace(SearchIt, "  ", " ", 1, - 1, vbTextCompare)
   Next

   TemUserSent = OriginalSentence

   For i = 1 To CW

      If i > 0 Then PatternRel = HalBrain.SearchPattern(TemUserSent, SearchIt, i)

          PatternRel = Trim(Ucase(PatternRel))
         PatternRel2 = HalBrain.ExtractKeywords(PatternRel)
         PatternRel3 = HalBrain.AlphaNumericalOnly(PatternRel2)

         HalsResponse = Trim(Ucase(GetResponse))
         KeyHalWord = HalBrain.ExtractKeywords(HalsResponse)
         KeyHalWord2 = HalBrain.AlphaNumericalOnly(KeyHalWord)

         If InStr(1, KeyHalWord2, PatternRel3, vbTextCompare) > 0 Then PattBrainRel = 1 + PattBrainRel Else PattBrainRel = 0
         'Here we use the custom relavence for any Universal GetResponse.
            PatternRelavance = FormatPercent(PattBrainRel/CW)
            'PatternRel uses a Percentage scale to match the GetResponse to a OriginalSentence.
            'The more matches found the higher the PatternRelavance in percentage will be, 100 would
            'be a 100% match, we try to avoid 100% matches because it could be a repeat of the User for the response.
            'We try to maintain a PatternRelavance between 20% and 80% for percentage matches.
            'PatternRelavance finds these percentages by adding the number of matched keywords divided by the number of words
            'in the user's sentence.
         If (PatternRelavance >= "20" And PatternRelavance <= "80") And HalBrain.CheckRepetition(GetResponse, PrevSent) = False Then GetResponse = HalsResponse Else GetResponse = GetResponse & ShortPhrase
   Next

58
Programming using the Ultra Hal Brain Editor / Can this be fixed
« on: January 20, 2007, 02:19:46 pm »
Can this error be fixed?

  "Halscript error on line 5857 col. 0:Type mismatch: 'WC'


   HalDebug Scipt:

'Function Count Words (CW)
CW = WC(UserSentence)

'Custom Relavence For Universal GetResponse.
'This function tries to match as many words between GetResponse and the OriginalSentence.

For i = 1 To CW

   If i > 0 Then SearchIt = "* " + SearchIt
      SearchIt = Replace(SearchIt, vbCrLf, Chr(8) & " ", 1, - 1, vbTextCompare)
      SearchIt = Replace(SearchIt, "", "", 1, - 1, vbTextCompare)
      SearchIt = Replace(SearchIt, "  ", " ", 1, - 1, vbTextCompare)
   Next

   TemUserSent = OriginalSentence

   For i = 1 To CW

      If i > 0 Then PatternRel = HalBrain.SearchPattern(TemUserSent, SearchIt, i)

          PatternRel = Trim(Ucase(PatternRel))
         PatternRel2 = HalBrain.ExtractKeywords(PatternRel)
         PatternRel3 = HalBrain.AlphaNumericalOnly(PatternRel2)

         HalsResponse = Trim(Ucase(GetResponse))
         KeyHalWord = HalBrain.ExtractKeywords(HalsResponse)
         KeyHalWord2 = HalBrain.AlphaNumericalOnly(KeyHalWord)

         If InStr(1, KeyHalWord2, PatternRel3, vbTextCompare) > 0 Then PattBrainRel = 1 + PattBrainRel Else PattBrainRel = 0
         'Here we use the custom relavence for any Universal GetResponse.
            PatternRelavance = FormatPercent(PattBrainRel/CW)
            'PatternRel uses a Percentage scale to match the GetResponse to a OriginalSentence.
            'The more matches found the higher the PatternRelavance in percentage will be, 100 would
            'be a 100% match, we try to avoid 100% matches because it could be a repeat of the User for the response.
            'We try to maintain a PatternRelavance between 20% and 80% for percentage matches.
            'PatternRelavance finds these percentages by adding the number of matched keywords divided by the number of words
            'in the user's sentence.
         If (PatternRelavance >= "20" And PatternRelavance <= "80") And HalBrain.CheckRepetition(GetResponse, PrevSent) = False Then GetResponse = HalsResponse Else GetResponse = GetResponse & ShortPhrase
   Next


59
Well O.T.C, I hope that if any kind hearted person that has a "halbrain.Db" with the "msc date" and the "User event" table they could mail a copy to me. I don't know why it is not in the Db. I just recently installed a fresh copy of Hal6.

60
Yes Lynn, that's what I am referring to. I select the Gender Age Plugin. I put in the birthdate and Gender Apply the change and it switches back to some date in 1995 to tell me it is 12 years old. I've even made the change, exited Hal and restarted Hal and it still has switched back to the 1995 date. I've never had this before.

Pages: 1 2 3 [4] 5 6 ... 23