Inform 7 is the seventh release of Inform, a language and IDE designed for creating Interactive Fiction.

learn more… | top users | synonyms

3
votes
1answer
66 views

Inform 7: Pick up thing based on if specific thing is in inventory

I'm making an adventure with Inform 7. In the adventure, you can pick up a chip. I want to be able to pick up a thing called a pocket computer if you have the chip in your inventory. To put it in a ...
0
votes
1answer
41 views

Inform7: How can I create a random chance event in a specific circumstance in inform7?

I would like to make a functionality in my Inform7 game: When the player decides to go through the crosswalk by going north, in the first time the narrator will indicate to the player that there is a ...
3
votes
1answer
86 views

How do I make both “inside” and “south” go through a door in Inform 7?

Suppose we have: The storm door is a closed door. It is south of the Garden and north of the Shed. The following commands all work fine to go through the door from the Garden: south s go ...
5
votes
1answer
122 views

How can I read a line of input in Inform 7?

I just want to prompt the user for a line of text in the middle of an action. The effect should be like this: > north The robot steps in front of you as you approach the gate. "PAASSWAAAAWRD!!" ...
6
votes
2answers
330 views

Need help Creating new objects in inform7

Very new to Inform7 and it's style. I have looked through the provided docs and some internet browsing has yielded nothing for me... this is a simplistic version of what i'm looking for. I want to ...
3
votes
1answer
134 views

It's possible i18n with Inform 7

If i want my story to be playable in diverse languages, is there any way of "extracting" the text from the story in order to translate it to languages other than english ? What i am thinking of ...
8
votes
1answer
302 views

Modeling discussion topics in Inform 7

I'm trying to make it so that a player can ASK [PERSON] ABOUT [TOPIC], TELL [PERSON] ABOUT [TOPIC], or THINK ABOUT [TOPIC] in Inform 7. I started like this for modeling THINK ABOUT [TOPIC]: A ...
5
votes
1answer
286 views

How can I handle arbitrary text as “nouns” in Inform 7?

In Inform, I'd like to be able to create a new action, and have it be able to work on aribitrary text. I can easily create a new action that will work on existing things. Finding is an action with ...
4
votes
1answer
298 views

In Inform 7, is it possible to use a second noun construct with “pull”?

I'll eat my hat if I get a good answer to this...I suspect that although I'm a rank beginner in Inform 7, and I'm guessing this isn't that hard, there are probably not many people here who are ...