I changed it to this:
if (said("speak")) {
print("Do you have a sword?");
print("Hint: Say YES or NO");
}
if (said("Yes")) {
erase(o0);
erase(o10);
load.view(48);
set.view(o0,48);
set.loop(o0,3);
load.view(49);
set.view(o10,49);
set.loop(o10,0);
move.obj(o0,100,105,1,f60);
move.obj(o10,105,105,1,f61);
animate.obj(o0);
animate.obj(o10);
end.of.loop(o0,f62);
end.of.loop(o10,f63);
}
if (f62){
start.cycling(o0);
}
if (f63){
erase(o10);
load.view(50);
set.view(o10,50);
load.sound(50);
sound(50,f64);
}
if (f64){
erase(o10);
get(i8);
set.view(o0,0);
}
if (said("no")) {
print("Come see me when you do.");
}
}
return();
But when you say, SPEAK, it says I DO NOT UNDERSTAND YOUR REQUEST.
I know it probabally has to do with the } 's because my problem is ALWAYS with the } 's !!
So... can anyone help me with this?
SMG240