I need some dedicated person to finish up my program because I got so much other work to do tonight like an English essay, 65 pages of AP government stuff, and review some for the PSAT's tomorrow. If nobody does this program then I'll probably be up until 1 in the morning trying to finish it. Thanks. Basically it's a story program where the user has to make decisions. The program is all about if, if else, and else statements and it can be any story. I already have some of my story but if you want to make it fun do your story as long as it's school appropriate. Even working on it a little bit is fine, just copy and paste the part you did in this thread or as a private message. Sorry for the spacing issues, copy and paste is being gay.

#include
<iostream>
#include
<conio.h>
using
namespace std;
int
main()
{
char selection;
cout<<
"You wake up with only 3 hours of sleep and its another school day."<<endl;
cout<<
"You dont feel like going to school at all today."<<endl;
cout<<
"But because youre always a good kid, you attend school anyway."<<endl;
cout<<
"You go inside the school to find that it has been invaded by zombies."<<endl;
cout<<
"You can either..."<<endl;
cout<<
"A)Go further inside the school to find survivors"<<endl;
cout<<
"B)Run out of the school and hope you can get past all the zombies now guarding the entrance ever since they saw you come in"<<endl;
cout<<
"C)Get infected on purpose and become a zombie yourself"<<endl;
cout<<
"Please enter your choice:";
cin>>selection;
if(selection=='A')
{
cout<<
"As you walk through the school, you stop by the tech room at the bottom level to pick up a chain saw to protect yourself, than you realize the cafeteria is right there and you stop by to get some food but its heavily guarded by zombies. You can..."<<endl;
}
if(selection=='B')
{
cout<<
"Congrats, you made it out of the school to find that the U.S. Army got here and is trying to get rid of all the zombies inside the school. Only problem is that one of the soldiers just got infected and your next move will have to be a fast one. You can..."<<endl;
}
if(selection=='C')
{
cout<<
"After getting infected, you find that you're a super zombie that can run faster than other zombies and you can jump long distances. Becoming a zombie has opened up a wide range of options for what you can do. You can..."<<endl;
}
if(selection=='A')
char thing;
cout<<
"A)Keep searching for survivors"<<endl;
cout<<
"B)Grab the m4 assault rifle thats conveniently located under the water fountain next to the tech room then go inside and attempt to get into the kitchen"<<endl;
cout<<
"Please enter your choice:"<<endl;
cin>>thing;
if(thing=='A')
{
cout<<
"You go upstairs to hear something in one of the janitors closets. It could be a survivor. What do you want to do?";
}
if(thing=='B')
{
cout<<
"You grab the m4 and cut up all the zombies but then find out they only die with headshots so you have to reload because you just wasted a whole clip of ammo killing only 1 zombie. As you start shooting through the zombies again, you find your ex girlfriend hiding in a corner of the cafeteria not infected but surrounded by zombies (she smacked you across the face 2 days ago). You";
}
_getch();
return(0);
}