Expected '}' before 'else'

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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);
}

else if (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);
}

}
line 11, don't think you want the semicolon after the if ?
Thanks Wildblue didn't see that
Topic archived. No new replies allowed.