Examples
Room: narrowHole {
// If player height is less than or equal to 6, the player goes to the room
// Otherwise player is moved back to darkRoom
Event: Enter_Room {
if (player.height <= 6)
screenMessage("You have managed to enter the hole.")
else
player.moveTo(darkRoom)
}
}