我有一个 Inform 7 故事,其中玩家在容器内开始游戏。当玩家离开容器时,我想说一些文字。当我使用条件:“退出后...”时,出现错误。“进入后......”有效,所以我认为我只是有错误的退出动词。
这是有问题的代码:
The Hibernation Chamber is a room.
The Hibernation Pod is a container in the Hibernation Chamber. The Hibernation Pod is enterable and fixed in place. The description is "It looks just like the twenty or so others in the room, except the lid is open."
The player is in the Hibernation Pod.
After exiting the Hibernation Pod, say "You stand, blinking, and looking at two concentric arcs of identical, shiny white hibernation pods in a strange octagonally shaped room. The only break in the pods is for doors to the north and northeast. A bulky table with a clear top occupies the center of the two arcs of pods."
如果我将“退出后”替换为“进入后”,它将构建并运行得很好。但是,我希望在玩家离开吊舱时触发规则,而不是进入吊舱。
那么在 Inform 7 中“进入”容器的反面是什么?我试过“退出”、“离开”、“离开”,都无济于事。它只是给出以下错误:
问题。您写了 'After exiting the Hibernation Pod' ,这似乎引入了一条规则,>仅当操作是“退出 Hibernation Pod”时才生效。但这作为对 > 动作的描述是没有意义的。我无法将此规则放入任何规则手册。
我已经浏览了手册和示例,但没有任何帮助。我很乐意找到 Inform 7 理解的动词列表。