function TableExamination() {
tableresponse = Random(4);
if (tableresponse==0){
cDom.Say("A table is a form of furniture composed of a surface supported by a base, usually four legs. ";
cDom.Say("It is often used to hold objects or food at a convenient or comfortable height when sitting.");
cDom.Say("Generic tables are typically meant for combined use with chairs. Unlike many earlier table designs, today's tables usually do not have drawers.");
cDom.Say("A table specifically intended for working is a desk.");
cDom.Say("Some tables have hinged extensions of the table top called drop leaves, while others can be extended with removable sections called leaves.");
cDom.Say("I'm so glad I looked that up.");
} if (tableresponse==1){
cDom.Say("Table, Table, Table. I made you out of...");
cDom.Say("...Wood.");
} if (tableresponse==2){
cDom.Say("I see this table uses Orwellian design principles.");
cDom.Say("Four legs good. Two legs fucking stupid.");
} if (tableresponse==3){
cDom.Say("I encounter tables periodically."); //line 69
} if (tableresponse==4){
cDom.Say("It's a table, must be a truth table.");
cDom.Say("Because...tables don't lie...because...");
cDom.Say("Okay... William Miracle's not allowed to write any more dialouge for this game.");
}
}
What's wrong with this script? It's driving me crazy...I've been through it over and over and I just can't see it.
The error is:
GlobalScript.asc(69): Error (line 69): buffer exceeded: you probably have a missing closing bracket on a previous line
tableresponse = Random(4);
if (tableresponse==0){
cDom.Say("A table is a form of furniture composed of a surface supported by a base, usually four legs. ";
cDom.Say("It is often used to hold objects or food at a convenient or comfortable height when sitting.");
cDom.Say("Generic tables are typically meant for combined use with chairs. Unlike many earlier table designs, today's tables usually do not have drawers.");
cDom.Say("A table specifically intended for working is a desk.");
cDom.Say("Some tables have hinged extensions of the table top called drop leaves, while others can be extended with removable sections called leaves.");
cDom.Say("I'm so glad I looked that up.");
} if (tableresponse==1){
cDom.Say("Table, Table, Table. I made you out of...");
cDom.Say("...Wood.");
} if (tableresponse==2){
cDom.Say("I see this table uses Orwellian design principles.");
cDom.Say("Four legs good. Two legs fucking stupid.");
} if (tableresponse==3){
cDom.Say("I encounter tables periodically."); //line 69
} if (tableresponse==4){
cDom.Say("It's a table, must be a truth table.");
cDom.Say("Because...tables don't lie...because...");
cDom.Say("Okay... William Miracle's not allowed to write any more dialouge for this game.");
}
}
What's wrong with this script? It's driving me crazy...I've been through it over and over and I just can't see it.
The error is:
GlobalScript.asc(69): Error (line 69): buffer exceeded: you probably have a missing closing bracket on a previous line