Ahhhhh, lol thanks thats got it working,
else if(value == 1)
{
system("title AnimeDD Zenii Calculator");
system("color 8E");
cout <<"Alright time to calculate your Zenii, get your storyline ratings ready!" << endl;
int lines, creat, x, y, z;
cout<<"What is your characters name?"<< endl;
cin>> name; (name,100);
cout<<"Hello, " << name << "."<< endl;
cout<<"Put in your creativity rating for the storyline post"<< endl;
cin>> creat;
cout<<"Thank you, Now put in your line count for the storyline post"<< endl;
cin>> lines;
x = creat*creat*creat;
y = lines*20;
z = x+y;
cout<<"Your zenii for this post is " << z << ".\a" << endl;
cout<< ""<< endl;
cout<<"Q - Quit"<< endl;
cout<<"R - Repeat"<< endl;
cout<<"Please type in the corresponding letter for your choice then press enter."<< endl;
cin>> quit;
cout<<"Goodbye, " << name << "."<< endl;
system("PAUSE");
system("cls");
}