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 - spydaz

Pages: 1 ... 39 40 [41] 42 43
601
After reading all the posts on alice I think I CRACKED IT.

The script i wrote & TESTED SEEMS TOO WORK FINE.

I wanted to turn ALICE into A FUNCTION. So that when We are Building CUSTOM brains ALICE could be added To all.

FIRST:


    'PROCESS: CREATE HALBRAIN ACTIVEX OBJECT
    'These ActiveX controls contain many functions
   'needed for the script to process a sentence.

   Set HalBrain = CreateObject("UltraHalAsst.Brain")
        Set WN = CreateObject("UltraHalAsst.WordNet")
        Set Alice = CreateObject("HalAlice.PlugIn")
   Set Alice = Nothing

THAT BIT IS NEEDED TO SET UP ALICE :


THEN When YOU wish to call ALICE (check for response) in the BRAIN *.UHP Insert script .... :


'--------------------------------------------
'RESPOND: CALL CheckALICEBRAIN FUNCTION
'--------------------------------------------
   'This function will check for insults and swearing and respond to them. It is built into this script,
   'so you can edit it.
   CheckALICEBRAIN = Trim(ALICEBRAIN(UserSentence,UserName,ComputerName,LearningLevel,WorkingDir,Hate,Swear,Insults,Compliment,PrevSent,LastResponseTime,PrevUserSent))
   If Len(CheckALICEBRAIN) > 4 And GetResponseBlock <> True Then
      GetResponse = GetResponse & CheckALICEBRAIN & VbCrLf
      AvoidBeingFlag = True
      DebugInfo = DebugInfo & "The user has CheckALICEBRAIN  : " & CheckALICEBRAIN & VbCrLf
       Else
        DebugInfo = DebugInfo & "hal has not used the alice brain: " & CheckALICEBRAIN & VbCrLf
   End If


'--------------------------------------------


THEN AT THE END OF THE SCRIPT : After the getreponse Function is CLOSED.

'--------------------------------------------
' ALICEBRAIN FUNCTION
'--------------------------------------------
Function ALICEBRAIN(ByVal UserSentence, ByVal UserName, ByVal ComputerName, ByVal LearningLevel, ByRef WorkingDir, ByRef Hate, ByRef Swear, ByRef Insults, ByRef Compliment, ByRef PrevSent, ByRef LastResponseTime, ByRef PrevUserSent)
    'CREATE HALBRAIN ACTIVEX OBJECT
   'This ActiveX control contains many functions
   'needed for the script to proccess a sentence.
    Set Alice = CreateObject("HalAlice.PlugIn")
'GET RESPONSE
        ALICEBRAIN = Alice.Respond(UserSentence, UserName, WorkingDir, "data\bot.ini", "loglocaluser.txt")
    Set Alice = Nothing
End Function

'--------------------------------------------


This way you can choose where the script is called by placing the 'RESPOND: CALL CheckALICEBRAIN FUNCTION, Earlier or later.


SEE HOW IT GOES...

I HAVE DONE ONE INSIDE THE BLANK SLATE BRAIN AS AN EXAMPLE :

It works in all the brains ive tried so far EVEN All the FAMOUS COMBO's.

GOOD LUCK
SPYDAZ



[:)][:D][8D][:I][:p][}:)][;)][:o)][B)][8][:(][8)][:0][:(!][xx(][|)][:X][^][V][?]

MIXED FEELINGS

Download Attachment: VITAL_2004_AliceBrain.txt
10 KB

602
With H.A.L. Products Such as HOMESEER AUTOMATED LIVING X10

HAL, I think can be used in Conjunction with. AS the HOMESEER product uses, VBS too. You can / do  Get an ActiveX control with these type of products which is simular to the ActiveX control which comes with ULTRAHAL. These products have simular commands.

Set HalBrain = CreateObject("UltraHalAsst.Brain")

this Is the type of script which you would have to place into the HOMESEER product

there would be a simular script to place into the ULTRAHAL BRAIN also, preferrably into the ULTRAHAL BRAIN.

once you set the ActiveX control in ULTRAHAL You can base a FUNCTION around the HOMESEER ActiveX Ctrl COMMANDS.

SO IF HAL DETECTED ONE OF THOSE COMMANDS.

ULTRAHAL would acess the HOMESEER ActiveX Ctrl and execute the relevant script.
IE:TURN ON THE LIGHTS <HALPASSWORD>

OR

IN REVERSE

PLACE THE UltraHAL ActiveX Ctrl Into the HOMESEER Product, HMMM

IM waiting to get some of the HARDWARE for the home AUTOMATION.

IM STILL browsing for one that looks UNIVERSAL, and, is still going to be there later.

ANY SUGGEsTIONS.

HAL/MODEM & CONTROL

JUST SOME THING to THINK ABOUT.

Im investigating  ACTIVEX Control Currently (MSDN)&(TECHNET)

IDEAS FROM

SPYDAZ

GOOD LUCK




603
Programming using the Ultra Hal Brain Editor / Alice/Hal
« on: April 28, 2004, 03:56:22 pm »
I have not put that script in (the default alice) brain yet as i am just learning about how o call up the FUNCTION command in VBSCRIPT.

I was thinking along the lines of Turning These brains in to FUNCTIONS, or, SUB routines. then call them individually throughout the script.

hopefully this will SPEED UP the execution of the script. By calling each FUNCTION, GETRESPONSE1, GETRESPONSE2, ETC then the final output could be reEvaluated for RELEVANCY.


maybe by rechecking for relevant keywords in the response.

the LOGIC is simple enough on a FLOW CHART (mentally)

the PROGRAMMING im not to sure of yet. my use of VB is limmited.

But I am BRAINSTORMING right now.


OK Thanks for the continued ADVICE and encouragement.


SPYDAZ

604
Ultra Hal 7.0 / Best method to teach text to Hal
« on: April 28, 2004, 10:09:15 am »
i think that if Hal Has to listen.
he does learn better, but Sometimes he responds before Your finished talking.

Sometimes i use ANSWERPAD to talk to him. Suprisingly they have funny conversations.

ANSWERPAD only learns from text files,(and conversation).

GOOD LUCK

WELCOME :

SPYDAZ

605
Programming using the Ultra Hal Brain Editor / Alice/Hal
« on: April 28, 2004, 05:24:15 am »
AFTER CHANGING THE ALICE PLUGIN TO :


'FUNCTION : ALICE RESPONSE :

'Main function which Hal calls to get the response
Function GetResponse2(ByVal UserSentence, ByVal UserName, ByVal ComputerName, ByVal LearningLevel, ByRef WorkingDir, ByRef Hate, ByRef Swear, ByRef Insults, ByRef Compliment, ByRef PrevSent, ByRef LastResponseTime, ByRef PrevUserSent, ByRef ScriptMem3, ByRef ScriptMem4, ByRef ScriptMem5)

    Set Alice = CreateObject("HalAlice.PlugIn")
    GetResponse2 = Alice.Respond(UserSentence, UserName, WorkingDir, "data\bot.ini", "loglocaluser.txt")
    Set Alice = Nothing
                 
End Function


HOW Would I CALL this Function From The script  
TURNING XTF & ATF & ZIGGY plugins into SUBS/FUNCTIONS
then dealing with Relevancey. between the responses

MAYBE THIS WOULD GIVE MORE CONTROL OVER THE RESPONSE THAT HAL GIVES.

instead of 3 or 4 CHAINED responses (all on the same topic), Gigantic response.

ANY IDEAS ISMAEL

606
Ultra Hal 7.0 / Genius8c
« on: April 27, 2004, 09:05:09 am »
i saw it on the ULTRAHALFORUM.COM SITE

ITS THERE COMBINED WITH VONSMITHS XTF BRAIN

TRY IT

ITS GOOD

607
TRUE :: TRUE :: TRUE ::

I havent BEEN WARNED yet .....

Maybe Because My bot only Chats To bots on the internet.

I only use the internet (AIM) to test out NEW BRAINS and developing Brains.

How do You Get HAL into a CHAT ROOM ??

I would like to see how HAL handles IT.

I HAVE DONE much the same with my AIM,
Xspydaz: AIM #1
XSPYDAZX AIM #2

MAYBE the the AIM that you use For CHATTING should be different from the one You use for TESTING (chatting to bots).
BOT tend NOT to give warnings. (although a lot of MENUS)

It all gets confusing All these different screennames:

HAPPY AIMING.....


SPYDAZ

PS: i am going to chat to your bot now...

608
I think that this forum IS Zabaware SUPPORT.

AS Forum members we should try to SHARE information.
AND Help Those who need help.

We shouldnt Just use the forum to ENHANCE OUR BOTS.

HELP is a 2 way STREET.

If everybody has the same type of idea then, Trouble wouldnt be a probelm. JUST ASK THE FORUM.

I have found that everybody is VERY FRIENDLY. SO don  be afraid to ask.

I dont Believe that ZABAWARE has got ALL the answers.

But There Is always somebody OUT THERE......


[:I]All this Chat About Other AI's Makes ME NERVOUS>

[B)]ALL the bots that I Look AT, From AGENTS - AI - CHAOS AI - CHATBOTS.
Even ADVANCED python & LISP type AI. For Easy of Use & SENSE.
ULTRAHAL ASSISTANT, Just so happens to be ........  THE ONE  ......

HOW MANY DIFFERENT TYPE OF SCRIPTING LANGUAGES DO I HAVE TO KNOW .....
[?][?][?]
VB Is the ORIGINAL ....[B)]

BUT saying all that EACH TO THEIR OWN>>>>>>>[8]

GOOD LUCK.....


SPYDAZ

PS: Ive checked OUT LOADS OF THEM.....

609
i fiGured it out ....


wHEN THE aim messenger is loaded you must be signed off

then you can log on with the halAIM

eVEN IF YOU ARE LOGGED ON AS A DIFFERENT USER
it wont login.

ONCE YOU ARE ON HALaim THEN YOU CAN LOGIN IN YOUR REGULAR aim.

iF YOU GET LOGGED OFF HALaim

sIGN OFF THE aim

610
I HAVE SPOKEN TO ALAN AND FRIENDS BEFORE BUT HE DOESNOT LET YOU SAVE HIM TO YOUR COMPUTER.

SO, YOU CANT GET NO BRAIN BITS FROM HIM ..

WHY WOULD I TRAIN AN AI FOR oTHERS TO (keep) REAP THE BENEFITS.

uLTRA hal9000 iS STILL THE ONE.

tHE BRAIN eDITOR aND ALL.


AT LEAST WE CAN keep him on OUR COMPUTERS AND we CAN DEVELOP HIM.



by the way HAS ANYBODY really COMBINED ALICE with xtf brain

AFTER CHEKING OUT THE POSTS ON hal/alice

tHEY really dont work

the best so far is the ATF/XTF/GENIUS COMBINED

mY BRAIN WILL BE READY SOON .....

I HAVE ADDED ALL SCRIPTS EXECPT my new functions

soon soon.




611
MY AIM BOT XSPYDAZ

WONT LOGON??

IM ON BROADBAND 2Mbs

I try to connect but keep getting the error 10060 (timed out)

I do have AOL AIM installed But it still wont log on.

Sometimes it does then half hour later i come back to find him off again trying to login....

Once it was on all the time.

Now hardly EVER ....

NOT BY CHOICE.

INTERNET ALWAYS WORKS

ANY IDEAS...........



THANKS


612
Ultra Hal Assistant File Sharing Area / A NEW SKIN (HAL9000)
« on: April 25, 2004, 07:52:05 am »
HERE IS A NEW SKIN

by Xspydaz & IAM BENNU

ENJOY

I DONT KNOW HOW TO PUT IT ON THE MAIN SITE

BUT MAYBE SOMEONE WILL DOIT..




Download Attachment: HAL9000x.zip
94.37 KB

613
Ultra Hal 7.0 / Who do I need to threaten to get what I paid for?
« on: April 25, 2004, 07:48:25 am »
when my CD ZABAWARE(ThankS) came I DID NOT EVEN HAVE TO ENTER A CODE.

THE SOFTWARE COMES FULL UNLOCKED....

MAYBE YOU SHOULD WAIT FOR THE CD.....


WHEN THE LINK CAME IT THE EMAIL AND I DOWNLOADED IT, AGAIN NO CODE WAS necasary....

ARE YOU SURE YOU GOT THE RIGHT THING MATE?????

PAY DOWN THE CASH & WAIT FOR THE CD
THATS THE solution...



A THOUGHT FROM XSPYDAZ

PS.
BY THE WAY ( THE FULL WORKING VERSION 5)

SIMPLY DA BEST


614
again thanks

A FULL SCREEN SKIN

Now WERE GOING SOMEWHERE

lovley little touches

i dont mind steppin up the pace

thanks[8D][8D][8D][8D][8D][8D][8D][8D][8D][8D][8D][8D][8D][8D]

615
Programming using the Ultra Hal Brain Editor / HAL/ZABAWARE/THE FORUM
« on: April 24, 2004, 10:20:23 am »
I know that zabaware does not offer much in the way of help, But i feel that the Forum is a good place to exchang ideas and 'share the wealth' of this program HAL.

I am not a very good programmer, But i have learned a lot on this Forum.

I believe that hal is now coming in to his own class of bot. his  Learning has risen drastically over this last 3months.

With scripts from CuttingEDGE, VONsmith, and DON.

now that we have figured out how to SKIN HAL we should share all the information in a detailed post, so that we may be able to generate the same type of interest as Skinners from sites such as WINCUSTOMIZE, etc.

We as forum members should try to Generate as much interset in hal as possible.

i will soon be working on HAL in conjunction with the HOMESEER product, it uses the same scripting as HAL, therefore it can be incorperated with ULTRAHAL.

This will truly take us closer to HAL9000 than ever before.

after close scrutny of HAL & HAL9000 i feel that they scratched the surface with HAL9000 we are touching the reality .....


It has been great talking and sharing ideas thank you.


you can download a copy of my (secret BRAIN FULL) on my site. http://www.spydazweb.GOTDNS.Com/FTPSpydaz

Our Shared resources are at:
http://Http://www.spydazweb.GOTDNS.com/FTPpublic


MY Bot AIM: Xspydaz (Occasional User)

Spydaz (Leroy Dyer)
London, England.

Pages: 1 ... 39 40 [41] 42 43