Okay, since the last I posted here, I have started a new project, A text based adventure. A simple one. Anyways look at the code and see whats wrong. c2 is already identified.
if (c2 == 2)
{
cout<<"Nothing happens as expected.\n";
Sleep(500);
int c3;
cout<<"What do you do you do?\n";
cout<<"1- Try to investigate what had dropped before (logical)\n";
Sleep(500);
cout<<"2- Sit down\n";
cin>>c3;
if (c3 == 1);
{
cout<<"You reach down and grab what was on the floor.\n";
Sleep(500);
cout<<"IT'S YOUR LIGHTER!\n";
Sleep(500);
cout<<"You strike up the lighter and it lights up your surroundings\n";
Sleep(500);
cout<<"The room your'e in is extremely creepy\n";
Sleep(500);
}
elseif (c3 == 2)
{
cout<<"You sit down to evaluate what to do\n";
Sleep(500);
cout<<"Then you feel something rectangular pressing against against your buttcheek\n";
Sleep(500);
cout<<"You pick it up, IT'S YOUR LIGHTER!\n";
Sleep(500);
cout<<"You strike up the lighter and it lights up your surroundings\n";
Sleep(500);
cout<<"The room your'e in is extremely creepy\n";
Sleep(500);
}
else
{
cout<<"One question; IS THAT AN OPTION. OFF WITH YOUR HEAD!\n";
return(0);
}
}