Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
I'm not really sure if this is the right place for this, but oh well.

First off I would like to let everyone know that this is not a game, it is a program with seemingly AI intellegence. I'm devolping it with the C++ script language from scratch. This will be a great chance for people that want to learn C++ to learn it. I will be showing The step by step process, and throw in a few pointers here and there for those that want to make a MaxBot on there computer.


#include <iostream>

using namespace std;

int main()
{
char name;

cout<<"Hi I'm MaxBot, what's your name? ";
cin>> name;
cin.ignore();
cout<<"Wow that one weird name to process. I mean come on, "<<name
<<"\n";
cin.get();
}


Whan this is compiled and ran, it makes the very basic essince of MaxBot and looks a little like this.
Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
MaxBot will eventualy be ran in a Visual Viewer instead of the comand prompt. You will be able to have full lenght conversations with it, and even download differnt verions of it, and of course there will be games within it, its just the program itself isn't technicly a game.
Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
ROFL, thats just one of the things you do. MaxBot will be able to help you out with everyday tasks on the computer, he is also very smart mouthed and sarcastic so nothing is ever really boring with him. Along with the games you can play with him, + lots more features. And if you follow this thread you might just learn C++.
Age 34
Munich, Germany
Seen June 13th, 2017
Posted April 5th, 2008
836 posts
18.2 Years
u have fun doing it, belive me. go here: http://www.pandorabots.com/pandora/talk?botid=f5d922d97e345aa1

and have fun chatting with ALICE, the best ever made artificial intelligence bot :)
Friends: ~*ashley*~, DarkDoom3000, Flareon_Lover_92, Diamond~Star, KAKAROT SSJ4, MasaXGPMat, Kaneda Morspeed, Draginis, Chazzy, Shaneypoo17, Budgie_Boy, GymLeaderLance99 (if you wanna be my friend PM me :P)





Seen April 8th, 2015
Posted July 8th, 2012
2,005 posts
18.7 Years
I'm not really sure if this is the right place for this, but oh well.

First off I would like to let everyone know that this is not a game, it is a program with seemingly AI intellegence. I'm devolping it with the C++ script language from scratch. This will be a great chance for people that want to learn C++ to learn it. I will be showing The step by step process, and throw in a few pointers here and there for those that want to make a MaxBot on there computer.


#include <iostream>

using namespace std;

int main()
{
char name;

cout<<"Hi I'm MaxBot, what's your name? ";
cin>> name;
cin.ignore();
cout<<"Wow that one weird name to process. I mean come on, "<<name
<<"\n";
cin.get();
}


Whan this is compiled and ran, it makes the very basic essince of MaxBot and looks a little like this.

Oh, another one of those? Interesting... Just make sure it doesn't develop aspirations to take over the world and make humanity obsolete.

Let us know when it's completed, so we can check it out.
If you spend too much time thinking about a thing, you will never get it done.

- Bruce Lee

The worst thing you can do in a business is blame the customer.

- Willie 'Jack' Degel
Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
Rofl. That ALICE is one cool bot, but it's not AI at all. It's a bunch of Variables, which is what I thought MaxBot was gonna be. But today I started to look into preceptrons, which basicly emulates a neron system therefore making it be able to learn. As you see in ALICE, she dosn't have much of a personality. In MaxBot however, you will be able to edit his personality as you see fit. As for now, I've added more to the script making it a bit more advanced, and if you notice the varibable CHAR, has been changed to STRING, this allows MaxBot to except a string of information. I've also added a new varible called INT, this var. allows MaxBot to except a non-decimal number.

#include <iostream>

using namespace std;

int main()
{

string name;

cout<<"Hi I'm MaxBot, what's your name? ";
cin>> name;
cin.ignore();
cout<<"Wow, I thought I had a bad name. I mean come on, "<< name <<"\n";
cin.get();

{
int age;

cout<<"How old are you,"<< name <<"?";
cin>> age;
cin.ignore();
if ( age <= 14 ) {
cout<<"Wow your so young,"<< name <<".I bet you still wet the bed.\n";
}
else if ( age >= 15 < 70 ) {
cout<<"Wow, your in the prime of your life.Everything just feels like it was

yesterday right? That means your geting old stupid.\n";
}
else if ( age >= 71 ) {
cout<<"Wow you are old!Old people scare me, get away from me you"<< age <<"

freak!\n";
}
cin.get();
}

}


Again, I compiled the information and this is what you get.
Age 34
Munich, Germany
Seen June 13th, 2017
Posted April 5th, 2008
836 posts
18.2 Years
ye, I'd thought of that. like a tree of arrays, for example, you have the beginning array and in one of the slots it says: "I" then that slot takes you to another array with all possible words after I and you write "like" then that takes you to another possible array of words after like and you choose "apples" then the program bases it's opinion on the arrays that it went through and answers with "I like apples too" or smth like that.

So you would write "I like apples"
and the program would go to the beginning array "I" and then t the array of possible words after I and get "like" then do the same and get "apples" and it would print "I like apples too" XD
Friends: ~*ashley*~, DarkDoom3000, Flareon_Lover_92, Diamond~Star, KAKAROT SSJ4, MasaXGPMat, Kaneda Morspeed, Draginis, Chazzy, Shaneypoo17, Budgie_Boy, GymLeaderLance99 (if you wanna be my friend PM me :P)





Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
Absol - No just Floats

[_DarkDragon_] - Sorta like that yea, but I asure you, with preceptron technology MaxBot will be able to make it's own sentences, and respond to others, and depending on the personality setting you have on MaxBot, He will change his answer/statement accordingly.

ex. I will be able to engage ALICE and MaxBot into a conversation :D
19 lancaster street, Lawrence.
Seen November 2nd, 2007
Posted November 2nd, 2007
173 posts
18 Years
Well, sounds like a funny game(oops, program.), but is it really going to be a.i? like, do things for itself without having the words to say programmed into it?
http://kinzu-kiwi.deviantart.com

Andrew: I just saw an old man being created out of a ball of flame. that's not normal.
Age 34
Munich, Germany
Seen June 13th, 2017
Posted April 5th, 2008
836 posts
18.2 Years
that would be hard, some genetic programming would help with the comprehension and auto-learning :\
Anyways, I think the problem with people who try to create AI is that they go too complicated, they should try to make the program able to learn and associate stuff, like a baby and then with time it would get really good and all they would have to do is meke a bunch of robots and ctrl+c and ctrl+v XD
Friends: ~*ashley*~, DarkDoom3000, Flareon_Lover_92, Diamond~Star, KAKAROT SSJ4, MasaXGPMat, Kaneda Morspeed, Draginis, Chazzy, Shaneypoo17, Budgie_Boy, GymLeaderLance99 (if you wanna be my friend PM me :P)





sketch

3D animator/movie director

Age 30
LA
Seen April 14th, 2014
Posted June 23rd, 2007
536 posts
18.4 Years
Wow,I'd never know how to do this.It seems pretty complex.So basically,you'll be able to like teach it stuff and it will remember?Hmm,interesting.
Like home-made movies? Go to my movie productioan site at www.sketchyproductions.5u.com to watch me and my crew make a bunch of goofy stuff! PM me any questions!

D-jo4000

Gamemaster. Pokeruler

Age 29
Seen April 12th, 2009
Posted March 12th, 2008
162 posts
18.1 Years
maxbot really works and is annoying me right now. Only his talking feature is working though. atteched is a conversation between me, zerro, and maxbot
http://www.mp2d.co.uk
http://www.mp2d.co.uk
thanks spartan and vaati

I need a family. If you'd like, come join.
Mother:
Father:
Brother:
Sister:
Paired With:
Best Friend: Zerro
Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
At first I had no clue what the hell was going on cause I was still working on the preceptrons. But I think it found its way into AIM. At this point its a true AI. The funny thing was that I could'nt see what MaxBot was writing, so I had no clue. When sadfurret called me a homo it caught my eye and I was like WTF. *sigh* now to teach this bot some manors.
Age 32
Fort lauderdale Fl.
Seen April 2nd, 2013
Posted April 2nd, 2013
377 posts
18 Years
Ok the first version of MaxBot is ready for release. Keep in Mind I spent quite alot of Time on making the perceptron system for this release, and also keep in mind that this isnt the core MaxBot, rather an extenion of it.

First of She needs a name, and personality cause at the moment she's rather plain. She is quite smart and can do certain things in open files on my comp. (This is a result of a curiosity perceptron particle that dosn't work just right.) She will grow smarter as she talks to more people and can be IMed anytime. So please give me all suguestions you got on what her name should be, and how she should act.

IM her at - [email protected]

D-jo4000

Gamemaster. Pokeruler

Age 29
Seen April 12th, 2009
Posted March 12th, 2008
162 posts
18.1 Years
She's okay. I just finished talking to me. She just needs some adjustments.
Zerro why did you triple post.
http://www.mp2d.co.uk
http://www.mp2d.co.uk
thanks spartan and vaati

I need a family. If you'd like, come join.
Mother:
Father:
Brother:
Sister:
Paired With:
Best Friend: Zerro