#include #include #include #include #include using namespace std; int main() { string fName; string lName; string IPAddress; bool created; cout << "First Name: " << endl; cin >> fName; cout << "Last Name: " << endl; cin >> lName; system("cmd.exe /C \"c:\\Program Files\\Forterra\\OLIVE SDK 2.0.1\\util\\legacy\\src\\Tool\\AddAvatar.pl\" --name=Bacon N Eggs --host=127.0.0.1:9911"); // created = true; if (created == true) { cout << "Your Avatar's name is: " << fName << " " << lName << endl; ofstream aviFile("aviList.txt", ios::app); aviFile << fName << " " << lName << endl; aviFile.close(); } else { cout <<"Your avatar was not able to be created or already exists. Contact your system administrator"<< endl; } system("pause"); return 0; }