C++ Puzzle of Death Game (UNFINISHED)

Hey dudes here is half of my unfinished game: The Puzzle of Death, please update with any questions, or help. I will continue posting as my game becomes better, and not as glitchy.
Thanks for lookin at it.
SO to Nick.


#include <iostream>
#include <string>
using namespace std;

int main()

{
//I am a beast kids - Opening
cout << " " << endl;
cout << " ***********************************" << endl;
cout << " Welcome to the Puzzle of Death..." << endl;
cout << " ***********************************" << endl;
cout << " " << endl;

cout << " Please choose either A - B - C to answer the question:" << endl;
cout << " Good luck, and.. stay alive!" << endl;
cout << " " << endl;
cout << "________________________________________________________________________________" << endl;
cout << " " << endl;
cout << " " << endl;
cout << " " << endl;
cout << " " << endl;
cout << " - Press 'X' to Begin Game - " << endl;
string answer;
cin >> answer;
if (answer == "x")
{


cout << " " << endl;
cout << "It is the year 2110. You are alone in your home, late at night." << endl;
cout << "You are sitting in bed, on your iPhone 23 listening to music with your EarPods" << endl;
cout << "All of a sudden comes a huge BANG! on the door...the noise continues" << endl;
cout << "You look out the little window at the top, praying for it to be your friend, Joe" << endl;
cout << "Thank God, you think, it is Joe. He doesn't look right. He's pale..." << endl;

cout << "What do you do? A - Open Door B - Call for help";
string answer;
cin >> answer;
if (answer == "a")

{
cout << "Joe hits you with a shovel, right over the head.";
cout << "GAME OVER" << endl;

}
else {
cout << "_________________________________________________________________________________" << endl;
cout << "You call for help as you go to the basement and lock all the doors behind you...uh oh" << endl;
cout << "Your mom picks up the phone, you tell her to get to the house immediatley" << endl;
cout << "Meanwhile, more and more banging comes from upstairs..." << endl;
cout << "Do you A - Run out back door or B - Stay put" << endl;
}

answer;
cin >> answer;
if (answer == "b")
{
cout << "Joe enters, looking for you. You scream, black out. Your dead." << endl;
cout << "GAME OVER" << endl;
}
else {
cout << "Yo man! Joe yells at you, he begins running after you!" << endl;
cout << "What do you do?" << endl;
cout << "Do you A - Stop and speak with Joe or B - Run away to your mom who just pulled in";


}

answer;
cin >> answer;
if (answer == "A")
{
cout << "Joe stabs you with a machetti; it's over..." << endl;
cout << "GAME OVER" << endl;
}
else{
cout << "MOM! Whats going on around this place?!" << endl;
cout << "Idk honey, havent been here for a few hours...What happened?" << endl;
cout << "I think someone is haunting, my friend Joe? He is acting super odd" << endl;
cout << "In what way? Joe is a good kid!" << endl;
cout << "Well, mom, he had a knife. He scared me so bad I ran out here..." << endl;
cout << "Alright honey, what do you suppose we do?" << endl;
cout << "A - Leave to find your father B - Investigate C - Call for help" << endl;
}
answer;
cin >> answer;
if (answer == "B")
{
cout << "You get out of the car, and investigate for Joe..." << endl;
cout << "Your mother goes right and you go left" << endl;
cout << "You hear a shreik and run to the east side of the home" << endl;
cout << "There is your mother, a hole in her chest, dead from a gunshot wound" << endl;
cout << "You search for Joe, ready to kill him now!" << endl;
cout << "Then, you see him, you let him know he is about to die" << endl;
cout << "Then, you realize you are the smartest person ever: No Weapon!" << endl;
cout << "Immediatley Joe rushes you, stabs you in the heart." << endl;
cout << "GAME OVER" << endl;
}

answer;
cin >> answer;
if (answer == "A")
{
cout << "You begin driving to find your dad. Where could he be?" << endl;
cout << "You decide to call him, but as you pick up your phone, someone else calls..." << endl;
cout << "It reads 'Joeey. You answer...:" << endl;
cout << "Hey Joe, how ya feelin?" << endl;
cout << "DEATH! DEATH! DEATH!" << endl;
cout << "Immediatley you know now that Joe is a dangerous man.." << endl;
cout << "CRASH! The car window breaks with a smash, you see a weilded knife!";
cout << "Joe stabs your mother, and then you, you bleed out and then, die." << endl;
cout << "GAME OVER" << endl;
}
else{
cout << "You drive off to a nearby WalMart to stay safe" << endl;
cout << "You lookup the local police stations number and call them" << endl;
cout << "You let them know and ask them to investigate the suspucious activity." << endl;
cout << "Now you must decide, do you A - go to the house and wait for police?" << endl;
cout << "or B - Hang tight until help arrives at your home?" << endl;
}
}
}
Last edited on
New version coming soon....
Topic archived. No new replies allowed.