The game is very good, nice pictures. But:
if you have a piece of code like this:
if (said("do","blabla")) {
if(has("object")) {
//do stuff
}
}
you should include an else-block:
if (said("do","blabla")) {
if(has("object")) {
//do stuff
} else {
//do other stuff
}
}
//do other stuff => I mean something like: "you need object to do that." or simply "You can't do that now".
Because you haven't got the else-blocks the player types something and nothing happens... That's quite weird.
I read the thing on the wall, I did what it told me to do, but nothing happened, just because I didn't have a certain object...