Hi everybody,
Sorry that I've been asking a lot of questions, me and my brother are new to Inform 7. I think I got it, like, 5 days ago or something.
Anyways, my brother is making a text adventure, and he's run into this problem:
Code:
The corridor section is a room. [if we have not examined the corridor section]"After knocking out the thug you unlock the door and arrive in a corridor. The problem is, there is a conspicous layer of rust in your way, there are also some weird mossy unstable looking pillars.".
The description is [otherwise]"The room is covered in moss and the pillars to the side look like they are ready to break.".
The problem is that he wants to make it so that when you enter the room you would get:
Code:
After knocking out the thug you unlock the door and arrive in a corridor. The problem is, there is a conspicous layer of rust in your way, there are also some weird mossy unstable looking pillars.
And that when you examine the room, you would get:
Code:
The room is covered in moss and the pillars to the side look like they are ready to break.
However, when he runs the code, he gets this:
Code:
This is the report produced by Inform 7 (build 6G60) on its most recent run through:
Problem. You wrote '"after knocking out the thug you un [...] ird mossy unstable looking pillars"' , but in another sentence 'The description is "the room is covered in moss and th [...] look like they are ready to break"' : but this looks like a contradiction, because the same property seems to be being set in each of these sentences, but with a different outcome.
Fix please?