无人后室 中心页

:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }
kJQzxheypuqHPji.jpg

这个设定的发起人是 EltracEltrac

评分: +88+x

设定主题


「无人后室」将后室整体上变得更加未知和危险,物资和食物更加匮乏,使孤立效应广泛存在,人与人之间的相遇和交流更加困难,以此讲述在一个环境更加恶劣的后室中,类似末日旅行和荒野求生的故事。基于这一概念可以有多种演绎,你可以在这个设定的文章里表现孤立无援之感、众叛亲离之痛、源自未知之恐惧、灾难下的人性、独自漫游时的思考、希望的涌现和破灭、无法被解明的异常、没有目的地的旅行,以及任何你能想到的流浪者独自面对后室时,可能会发生的故事。

同时「无人后室」在改变世界观的同时,也能算做是一次「旧设复兴」。这个设定试图还原我们初次接触后室时感受到的迷茫、恐惧和无声的震撼。此外,这个设定也鼓励创作者和读者重新思考现有的世界观,大家习以为常的设定在这个背景下可能会变得截然不同。


基础世界观


孤立效应和马尼拉房间

在这个设定里, Level 0 的孤立效应存在于整个后室,流浪者在野外探索时无法相遇,他们必须孤身一人面对这危机四伏的后室。这也就导致了 M.E.G. 等大型组织从未存在,小团体的拉帮结派也不总是能够长久。

马尼拉房间不只存在于 Level 0,后室的各个层级都有可能发现马尼拉房间。马尼拉房间只是一个所有人都可以通过相同方式找到,并且能在其中相遇的地点,它没有外形上和其他性质上的限制。它可以是一片湖泊、一个房子、一棵树、一辆车;它也不一定安全,它甚至可以是整片层级里最危险的区域;它不一定有形状,它可以是一片虚空,人们在陷入无止境的坠落时遇见了另一个和自己命运相同的流浪者……

资料库

作为最容易到达的会面地点,有人提出在 Level 0 的马尼拉房间建立资料库,用纸张记录他们掌握的知识,存放在此供其他人参考。这也是我们能在上叙看到他们故事的原因。这个资料库在存活下来的流浪者之中人尽皆知,使用它的人鱼龙混杂。偷窃、损毁、篡改等行为也时有发生,在资料库里相遇的人们也不免会发生矛盾,抢劫、明争暗斗、众叛亲离也是这个设定内值得演绎的题材。

更加疯狂的后室

“凡是可知自身为何物者,皆注定不得与同类相见。”

—— NPCenterNPCenter

在无人后室,包括人类在内的任何拥有自我意识的实体都会受到孤立效应的影响,而只有那些神智早已远去的人或兽或物能够在马尼拉房间之外找到这些落单的可怜虫。

类似于「San 值」(Sanity Value)的概念,清醒的人和疯狂的人所见的现实是不同的。后室会把所有清醒的智慧生命分隔开来,只有失去理智的东西才能相见。也就是说,越疯狂的人越容易遇到实体。除此之外,疯狂的人可能会看到甚至进入清醒的人无法看见和到达的地方。总而言之,失去理智时,身边包括自己在内的一切都可能会改变。

除开人,其他的实体和组织在无人后室也可以拥有更「疯狂」的版本。想象一下,没了信众的杰瑞会变成什么样子?找不到食材的后室厨师联盟会不会把失去理智的人类做成佳肴?

其他可以作为参考的设定

待补充。


写作方向


在一个名叫「无人后室」的地方,孤寂显然是不可避免的。你可以在你的作品里着重描写这一概念,也可以像家常便饭一样在一般的作品里将它作为一种写作手法。

想象一下流浪者孤身一人时会做什么?他们在后室无尽的走廊里行走,尽管看不到头,却不能停止行走;在他们的探索路上,他们或许会期盼着有人陪伴,这种期待长时间得不到回应,或许会变成妄想。与社会的长期隔离必然会造成性情的改变,后室里的人类还会像身处社会中的我们一样思考吗?

对某些人来说,孤独或许也算不上难熬。或许他们在一个人的旅行中发现了以往从未注意过的风景。或许没有其他活物打扰的日子里他们学会了与自己做朋友,或许大把的空闲时间给了他们机会思考先前从未思考过的问题。


作品列表


欢迎来到丛林欢迎来到丛林
by EltracEltrac层级

留言条留言条
by NPCenterNPCenter物品

文档记录:河岸文档记录:河岸
by kalizikalizi层级

危险区域档案——地下避难隧道地下避难隧道
by fljlusfljlus层级

只是一段无面的梦境只是一段无面的梦境
by EltracEltrac故事

溺于崇高溺于崇高
by NPCenterNPCenter故事

文档记录:停车楼文档记录:停车楼
by Ni Feng_EXNi Feng_EX层级

永久落日永久落日
by NPCenterNPCenter故事

熬夜睡觉熬夜睡觉
by Pinus sylvestirisPinus sylvestiris故事

零散档案:病院海报零散档案:病院海报
by fljlusfljlus层级

传说:狂笑蜘蛛传说:狂笑蜘蛛
by di_gedi_ge故事

等待戈多等待戈多
by Doctor CogitoDoctor Cogito故事


写作指导


摒弃严肃的档案体

避免任何形式的规范,不要使用所谓的临床腔。诸如「马尼拉房间」「Level 0」「实体」等统一的名称都不应该存在,类似 IETS、生存难度系统的标识系统也不应该存在,任何试图让文档看起来统一规范整洁的形式在这个设定里都是不可取的,原因有以下几点:

  • 从下层叙事角度看:
    1. 最初建立档案库的那群人或许有时间聚在一起商谈如何制定规范,但之后加入的编写者未必了解,而且学习这些规范所要付出的时间成本,在这个活着就很费力的世界是很难负担得起的;
    2. 就算编写这些文档的人有办法建立一套规范,但读者未必能能够理解,没有人会在档案库里抄笔记的时候翻找什么文档规范说明或者是相关术语对照表;
    3. 主动帮忙写文档的人大多数热心肠,但不代表他们有足够的语言能力,他们字都不一定写得清楚,更别说让他们像社畜或者学生一样研究一套套规范了。
  • 从上层叙事角度看:
    1. 不整洁的文字更有代入感,不清晰的描述更有朦胧感;
    2. 更口语化或者更具个性的文字能够反映出记录者本人的特点;是的,他们必然会留下一些个人色彩,长时间的孤立也会让他们按捺不住的表达欲跃然纸上,这何尝不是一个值得开发的创作方向?

你可以借助纸条、打印纸、笔记本、日记本、录像带、音频记录里的自言自语、墙壁上的涂鸦等形式,用更随意但又不缺乏设计感的文字讲述他们的故事。但也不要刻意地追求简陋,请保证基本的观感。

至于如何称呼某些概念,这里有一些可供参考的名称:Level 0 的马尼拉房间可以叫做「档案库」,其他层级的马尼拉房间可以视情况称为「驻点」「安全屋」「会面地」或者「特殊地带」;实体可以叫做「怪物」或者「生物」等;至于「层级」,我想他们不会有这个概念,层级对他们来说可能只是同一个地方的不同区域而已,可以用「地方」这样随意的名称称呼;对于某个特定的层级,可以直呼其名,Level 0 可以叫做「黄色房间」「黄色迷宫」等等。

吝啬流浪者的每一次相遇和交流

你应该知道这个设定的名字叫做「无人后室」,那就请不要再想着怎么建立一个组织或是这里的人怎么生小孩了。的确,他们能够在马尼拉房间相遇,但谁能确保这里为数不多的活人会在同一时段到达同一地点呢?没有人能一直停留在马尼拉房间,因为没有人会在自身难保的情况下供着一个窝在房间里一动不动的废人,就算有,马尼拉房间不仅是你最容易遇到人的地方,还是你最容易被人陷害的地方,你永远不知道下一个走进来的会不会是一个饥肠辘辘的劫匪。

你可能觉得我说的「在马尼拉房间被抢劫」也是一个值得开发的创作方向。的确,这和设定的主题之一「人性」十分契合,所以,除非你想要着重刻画人性,就不要随随便便地让两个角色相遇。

不要受限于已有的作品

已有的作品是值得参考的对象,但这不代表他们是某种写作的规范。这个设定的任何类型的写作都没有形式上的规范,并且相同的形式非常容易让人感到审美疲劳。所以,除非必要,不要再用一堆便签纸写文章了,你明明还有很多更好的选择。

其他注意事项

  1. 若有需要,「无人后室」的英文名是「The Unmanned Backrooms」。
  2. 与「后室阴谋论」相反,请在这个设定里完全隔绝前厅与后室的联系,前厅只会出现在他们的回忆里,他们不会去找回家的路,他们只想要活下来。
  3. 不必「惜字如金」,我知道你可能认为零散、简短、断断续续、让人看不懂的文字在世界观下更合理,但请别再如此拘泥于下叙了,你写出来的东西是给上叙的人看的,那样做只会毁了作品的观感
  4. 这个设定的评价标准和其他人和普通文章的评价标准没什么两样,别人不会因为你写的是「无人后室」设定就改变对文章的评价方式。我真的没想到我需要强调这一点,但我已经见过好几篇打着「无人后室」名号的神风文了,具体参考上一条建议。写完你的「无人后室」作品之后,自己读一读吧,如果不把他当作一篇「无人后室」设定的文章看,它也是合格的,那时候你才应该发出来。
  5. 你的「无人后室」文章可以占用常规的编号,但标题和文章内不应该出现这个编号,例如无人后室下的 Object C-1 就只能叫做「罐装龙肉」;如果你觉得一个完全不提及编号的东西占用一个常规的编号很不合理,你可以打上隐秘系列标签。

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License