: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 }
Level C-URL
生存难度:生存難度:
等级等級 4
- {$one}
- 异常网络层级
- 间接性实体冲击
翻译者须知:
从 2026 年 5 月 20 日起,后室英文维基开始使用层级等级(后室英文维基),全面替代此组件。最终的结果是,此组件从 component:level-class 变成了 component:old-level-class;而 component:level-class 则被替换成了上述的新组件。
这导致后室英文维基所有使用了生存难度分级组件的页面,都自动更新成另一版本。中文维基不会跟进这一改动,亦不会重命名此组件。译者可以自由选择在翻译过程中应用新版组件,使之与原文相同;也可以继续使用此组件,即不改动 [[include]] 代码。
除了外形有所变化,新组件还新增了 1E-5E 的环境危害分级,并稍微扩展了自定义维度;因此部分页面可能有必要更换为新组件,才能正常显示。请译者自行甄别。
如何使用:
[[include :backrooms-wiki-cn:component:level-class
|class=等级
]]
class 处的可用参数包括以下内容,支持简繁体及英文输入。
| English | 简体中文 | 繁體中文 | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1 | 2 | 3 | 4 | 5 | 0 | 1 | 2 | 3 | 4 | 5 | 0 | 1 | 2 | 3 | 4 | 5 |
| unknown | 未知 | 未知 | |||||||||||||||
| habitable | 宜居 | 宜居 | |||||||||||||||
| deadzone | 死区 | 死區 | |||||||||||||||
| pending | 等待分级 | 等待分級 | |||||||||||||||
| n/a | 不适用 | 不適用 | |||||||||||||||
| amended | 修正 | 修正 | |||||||||||||||
| omega | 终结 | 終結 | |||||||||||||||
该组件支持简繁切换,如下方代码所示:
[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级
]]
在 lang 处选择语言,cn 表示简体中文,tr 表示繁体中文,不填默认选择简体中文。
自定义等级
[[include :backrooms-wiki-cn:component:level-class
|lang=cn/tr
|class=等级名字
|color=#000000(带有井号的十六进制色号代码。)
|image=链接(至图片的链接。)
|one=在这
|two=随便
|three=放文字
]]
使用 CSS 进行自定义:
你可以使用 CSS 进行额外的自定义,将代码放入到 [[module css]] 中或者是放入到页面的版式内都可以。在这一组件中,不要把 [[module css]] 放在 [[include]] 里面,把它放在那个的下面或者是页面的顶部或底部。
将这些代码放入到你的页面/版式中以编辑所有的颜色,因为组件的 |color= 部分仅能控制背景:
[[module css]]
.sd-container {
/* 字体 */
--sd-font: Poppins, Noto Sans SC, Noto Serif SC;
/* 边框 */
--sd-border: var(--gray-monochrome); /* 大多数等级 */
--sd-border-secondary: 0, 0, 0; /* 不适用 */
--sd-border-deadzone: 20, 0, 0; /* 死区 */
/* 标志 */
--sd-symbol: var(--sd-border) !important; /* 大多数标志 */
--sd-symbol-secondary: 255, 255, 255; /* 4 级以上的是白色 */
/* 文本 */
--sd-bullets: var(--sd-border) !important; /* 点句符文本颜色 */
--sd-text: var(--swatch-text-secondary-color); /* 顶部框文本颜色 */
/* 等级颜色 */
--class-0: 247, 227, 117;
--class-1: 255, 201, 14;
--class-2: 245, 156, 0;
--class-3: 249, 90, 0;
--class-4: 254, 23, 1;
--class-5: 175, 6, 6;
--class-unknown: 38, 38, 38;
--class-habitable: 26, 128, 111;
--class-deadzone: 44, 13, 12;
--class-pending: 182, 182, 182;
--class-n-a: 38, 38, 38;
--class-amended: 185, 135, 212;
--class-omega: 25, 46, 255;
}
[[/module]]
旧版颜色:
如果你不喜欢新版的样式,想要用回旧版的红色边框色,只需要在你的页面中与组件一同引入下方的代码:
[[module css]]
.sd-container {
--sd-border: 90, 29, 27;
--sd-image: 90, 29, 27;
--sd-symbol: 90, 29, 27;
}
[[/module]]
Level C-URL 由网络用户u/Trdbtety yhjser HB在“大型崩坏现象”发生之前,利用E.P.B.网络层级漏洞,对Level C-699的一个违规备份。目前,M.E.G.网络安全局已将此备份封存,备份者正处于禁闭状态。
因为特殊原因,现已封锁了任何通往该层级的入口。
u/Trdbtety yhjser HB 在该层级拍摄的一张图片。
一名流浪者在”第0层”拍摄的图片。
/ 描述 /
Level C-URL 内部温度保持在 23~35 摄氏度之间,存在昼夜循环,白天为12小时,夜晚则为35小时,大约每47小时一个循环。但如果发生”特殊夜“现象,白天缩减至1小时,夜晚延长至51小时。如果出现了”长夜“现象,白天缩减至0小时,夜晚延长至109小时,此期间月亮与太阳将会消失,温度降至冰点以下。
该层级的初始区域展现出类似于现实中的中型居民楼。
层级中的居民楼因异常性质向上无限延伸1,建筑内部的每一间房间都有着相同的布局与结构,目前已证实房间的布局结构照搬自Trdbtety yhjser HB他本人在现实中所居住的居民楼。M.E.G.在改变房间结构或布局后,房间都会在4小时后刷新。
居民楼内的楼层都有着不同的 二进制编码2 。进入者可通过联通每一层楼的电梯,输入这些楼层的 编码 ,也可以使用电梯中的“导航设备”输入对应楼层的“层数”,电梯就会在短时间内抵达对应楼层。目前,电梯能前往的稳定楼层在 正负G64 之间。
在无数的房间中,有概率会刷 一件/多件 “特殊道具”。
“道具“的形状与外观都互不相同,往往这些道具在某些隐蔽的角落中。当使用者抓取这些“道具”时,道具就会赋予使用者 一种/多种 特殊能力。使用这些道具一般存在使用时长,在使用时长结束后特殊能力就会失效,并进入冷却期,每一件存在使用时长的道具都村在5分钟的冷却期。目前已被证实的特殊能力有:
- 低空飞行(一次仅可持续30分钟);
- 漂浮(一次仅可持续7分钟);
- 短暂修改任意房间(5分钟后失效);
- 抓取任意一个本层级天空中的天体;
- 操控一自身半径10米内的重力或引力;
- 创造/摧毁 物体或实体(仅能在本层级使用);
- ……
M.E.G.目前发现3件”道具“,E.P.B.在本层级发现了4件”道具“。目前所发现”道具“,都存在不可控性,故将”道具“均被封存在Alepn基地中。
居民楼内存在着特有实体”NPC“。 ”NPC“没有固定的外观,在流浪者接近后就可进行”交互“, "NPC"会与流浪者对话,或是与流浪者交易物品。到了晚上,层级中的"NPC"均会躲入房间之中,此时房间的大门将会被锁上,只能从内部才能打开,等到了白天就会恢复正常。具u/Trdbtety yhjser HB称: ”NPC“是这栋居民楼的原生实体,如果”NPC“死亡,流浪者将直接获得被杀死”NPC“的房间,并拥有其控制权。
”NPC“与交互者都会使用相同的”台词“与流浪者交流,并使用与流浪者相同的语言,这个过程中,交互者随意切换语种”NPC“都会随时切换与之相同的语言。 在与”NPC“交互的过程中攻击”NPC“, ”NPC“也将做出反击,但不会对交互者造成任何伤害,在”NPC“反击过后就会继续回到交流中,就像是忘记先前所发生的事情。
如果跟”NPC“提出交易, “NPC”将显示出兴奋、激动等表现,此时交互者就可以拿出身上的物品(道具)与”NPC“进行交易,在接收到交互者的物品(道具)后,”NPC“会说出“这件物品(道具)能在对方换取哪种物品”,在选择一件物品后,”NPC“会将物品塞入口袋中,手中将凭空出现指定物品(道具),并递给交互者。
以下是能在“NPC”兑换到的物品:
- 一把锋利的小刀;
- 一把二战时期的步枪;
- 随机“特殊道具”;
- 赫尔默兹装置3;
- 瓶装闪电;
- 罐装龙肉;
- 液态痛苦;
- 驱笑剂;
- 杏仁水;
- 腰果水;
- 虚空石;
- 火盐;
一名流浪者在该层级傍晚时分拍摄的图片。
居民楼外,则是无边无际的草原。草原与前厅中的草原类似。
草原中时而分布着一种特殊的树,树不可被摧毁也不可被靠近,除此之外与正常的树无异。
到了晚上,树的周围会“刷新”各种敌对实体,实体会不断的朝着居民楼进攻,实体会有意识的攻击层级中的“NPC”或来访者,层级中的实体头顶上会显示一种红色长条,实体在遭受攻击后长条就会变短,在长条消失就代表着实体已被访问者杀死。
访问者者在死亡后,后在居民楼内“复活”,身上的道具(物品)也会一并回归,访问者在于“NPC”坚持到白天之后,实体将会全部消失。于上文所述不断循环。
如果层级内发生上文所述的“特殊夜”现象,层级中将出现更多树,刷新的实体全方面将增强 3.5~4.1 倍。在现象中居民楼在被破坏后,层级中所有实体与访问者将会死亡,层级内部将被“重置”,但访问者依旧会“复活”。
如果发生的是上文所述的”长夜“现象,实体数量将是“特殊夜”中实体的2倍,实体将在“特殊夜”的基础上增强 1.3 倍,层级内部的光源将会消失,夜视仪与拥有夜视功能的“道具”也会一并失效,但实体也会遭受此影响。在房屋被破坏后,实体将全部死亡,访问者将切入任意与“长夜”相关联的层级。
BUG
如果访问者所处楼层接近临界点,那么访问者所处楼层将出现更多的“错误”,例如:“模型丢失”、“碰撞体丢失”、”渲染失败“、”距离现象“。越接近零界点,这种”错误“就越明显。
向着零界点位置 往上/往下 ,访问者只能看见空旷、寂静的空房间。楼层的地板、墙壁与天花板贴图均以失效,“碰撞体”出现异常,以及无数在楼层中平移的“错误模型”。
“错误模型”同样也不存在贴图,手表向两边伸直,无法交”交互“也无法”碰撞“, "错误模型"相撞时就会错误的“交叉”,此后便无法移动,并插入 地板/墙壁/天花板 中。
访问者自身在进入此楼层后也将”丢失贴图“。 ”特殊道具“则变成了一块长方形,原有”机制“丢失,无法抓取。并且在此种楼层滞留时间越久,访问者极易掉入 未加载区域 中。
同样,在草原区域也会出现上述现象。“地形生成”将变得愈加混乱,因为“精度”的丢失导致区域地形开始突然变动。访问者在探索到距离原点12550820的区域时,就会因为“噪点溢出”生成一堵向上无限延伸的“墙”,再往后流浪者将掉入虚空中。
/ 线路列表 /
Level C-1叠加层
Level C-101
长夜相关
铁路之尽头
Level C-941
Level C-1623
Level C-699.reserved
更多线路待载入。
# 附录
音频记录:
采访人:u/Trdbtety yhjser HB(TYHB)
采访者:埃德尔·伯克
埃博尔:你就是那个网络上的“Trdbtety yhjser HB”对吧?
TYHB:嗯,你找我做什么?
埃博尔:请问你“备份”Level C-699的目的是什么?
TYHB:我就是刷视频看到那些在VR世界里游玩游戏的视频,感觉很感兴趣。
TYHB:于是我想“备份”一个Level C-699,自己“搭建”一个“游戏”。
埃博尔:你是怎么做到将你的“网络层级”内部延伸至无限大?
TYHB:我制作的时候输错了一条C++代码出现了一个BUG,导致网络层级所占用的内存无限小,但层级大小无限大。
TYHB:不过你也别想着学我卡那个BUG,你们的新“备份系统”已经自动将该BUG修复了。
埃博尔:我根据M.E.G.那边提供的消息,你所“备份”的网络层级异常危险,现已将层级入口封闭了。
TYHB:那不关我事,你们非要再我编辑的时候把我抓走并强行保存那份“备份层级”的。
埃博尔:但话说回来,你做的那个“居民楼保卫战”游戏我还挺感兴趣的,M.E.G.已经允许你在禁闭结束后让你继续去编辑你的“备份层级”。
TYHB:什么“保卫战”游戏,我做的是逃生游戏好不?
埃博尔:嗯?那为何——
TYHB:哎,我做这个游戏的主要内容是:在白天的时候收集物资,然后再不断向上逃生,晚上的时候就躲在房间里面。估计是你们那边有谁用AI自动填充“代码”了。
埃博尔:那电梯的作用是?
TYHB:房间内存在了特殊道具,拥有道具的流浪者可以乘坐电梯前往其他楼层,限制范围为“40”,但每10到30层只有一个这样的特殊道具。
埃博尔:那么这个特殊道具是不是可以让持有者拥有特殊能力?
TYHB:我单独设置了一个“武器分类”,特殊能力附加在武器上了。
埃博尔:按你这么说,可能也是AI导致的。
TYHB:不然呢。
埃博尔:那这个游戏是不是存在终点?M.E.G.那边提供信息说:楼层达到一定高度就不“渲染”了。
TYHB:我都没有把C++代码“完善”,要是完善好了不可能存在这种情况。
埃博尔:可你为何要把层级出口设置得太危险了?
TYHB:跟前面我说的话一样:肯定是AI干得,不怪我。
埃博尔:你为什么这么确定是AI填充?
TYHB:只有M.E.G.内部都“备份系统”自带的AI,才有“设置危险出口”的功能。
埃博尔:你是怎么知道的?
TYHB:额……我从U.E.C.那边交易到了M.E.G.内部的“备份系统”。
埃博尔:嗯是这样啊。
埃博尔:那你被禁闭的时长将会更长了。
TYHB:唉不是,你别——
埃博尔:嗯,那今天采访就到这里,我先走了。
TYHB:哎你等等,我还有话没
[录音结束]
请按如下方式引用此页:
“Level C-URL”,作者 Trdbtety yhjser HA,来自后室中文维基。原文链接:http://backrooms-wiki-cn.wikidot.com/level-c-url。遵循 CC BY-SA 3.0 协议。
图像名:男人、月亮、行星图片
图像作者:funkyfocus-3900817
授权协议:CC BY-SA 3.0
来源链接: https://pixabay.com/zh/photos/man-moon-planet-celestial-body-2134881/
备注:无
图像名:内部的、房间、长椅图片
图像作者:atanaspaskalev-8225711
授权协议:CC BY-SA 3.0
来源链接: https://pixabay.com/zh/photos/interior-room-couch-window-4226020/
备注:无
图像名:树、云、原野图片
图像作者:bessi-909086
授权协议:CC BY-SA 3.0
来源链接: https://pixabay.com/zh/photos/tree-clouds-field-grass-meadow-736887/
备注:经修改
更多授权相关信息,请查阅授权指导。
