Jump to content

Recommended Posts

Posted

Well the other day I was thinking of making a cool program the thing is I've never learned to code in anything else besides autoit. The program I was thinking about was an automated speaking bot or an AI bot. For example, if I were to ask it a question it can somehow reply back through keywords. A great example is SmarterChild on Aol Instant Messenger if you're familiar with it. So my final question is would it be possible doing this via autoit or would my best bet be with another language (C, C++, Java, etc). Thank you in advance

Posted

Func Speak($Text)
    Local $o_speech
    $o_speech = ObjCreate("SAPI.SpVoice")
    $o_speech.Rate=2
    $o_speech.Volume=50
    $o_speech.Speak ($Text)
    $o_speech = ""
EndFunc

Speak("What you want to ask me?")

Posted

thanks for the fast reply unfortunately I worded my question wrong by speak I meant text so having a conversation with the bot via text not speech.

Posted

thanks for the fast reply unfortunately I worded my question wrong by speak I meant text so having a conversation with the bot via text not speech.

Sorry, I missunderstand.

In this case you must programming your own intelligent bot to verify what you ask and based on some patterns to give you an answer.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...