In r4despair, you have this (text truncated):
msg ("Thank you. ...")
play sound ("hb.mp3", false, true)
SetTimeout (20) {
play sound ("cry.mp3", false, false)
SetTimeout (95) {
MoveObject (player, r5donecrying)
}
}
get input {
msg ("No! Don't touch me!")
}
This sets up the timeouts but then enters a "get input" which will cause it to pause until the player presses a key. I suspect you did that to try to capture any input from the player? But it forces them to hit a key.
If you just want them to not be able to type, you can use "request" to hide and show the command line. I believe it's:
request(Hide, "Command")
to hide the command line and
request(Show, "Command")
to show it again. (Notice there are no quotes aroound Hide and Show.)