Inform 7 simple question.

How could I make someone go into a room, be knocked out in my story and then wake up in a different room? Thanks for any help!

I’m assuming you want to do this only once? You could try for the first time:

[code]The Gym is a room. It is south of the boxing ring. “Exercise devices. A boxing ring is to the north.”.

The boxing ring is a room. “Ropes. Sweat drenched Floor.”.

The hospital is a room. “White walls. Various medical devices.”.

The boxer is in the boxing ring.

After going to the boxing ring for the first time:
try looking;
say “Ouch. A jab here, a left hook there. You are down and out.”;
now the player is in the Hospital.[/code]

Gives:

[code]Gym
Exercise devices. A boxing ring is to the north.

n
boxing ring
Ropes. Sweat drenched Floor.

You can see a boxer here.

Ouch. A jab here, a left hook there. You are down and out.

hospital
White walls. Various medical devices.

[/code]

Hope that’s useful.

Ade.

generally just use the
now the player is in (the room)

“Now the player” moves the player

Thanks!

:smiley: