Zerro
Dreamer
- 377
- Posts
- 19
- Years
- Age 34
- Fort lauderdale Fl.
- Seen Apr 2, 2013
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.
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.