偶遇速切失败案例,实力强如怪物,拼经全力无法战胜
: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 }
评分: +19+x
201910211956189327.jpg%21w500.jpg

在经历了1个月的找腿后,昨天终于找到了。因为比较着急所以没看速切终端,今天发个贴证明自己还活着。

你说的对但是➖比➕少一笔,所以我选择向下投票

avatar.png

我去,何时来的

不对啊,你的腿和你都在速切你还要找这么久吗🤔

我充实你的梦

201910211956189327.jpg%21w500.jpg

因为失败案例无意识部分的定位不太好,我还是根据那次比赛的录像记录才找到的。

对了,多厨用户,来不来TCG,我在找腿的过程中找到了些新卡,组了套新卡组。

你说的对但是➖比➕少一笔,所以我选择向下投票

avatar.png

可,地点在哪

以及怎么感觉你说话怪怪的

我充实你的梦

201910211956189327.jpg%21w500.jpg

exchimity 加你,旧号丢了,新号 EI964147114 。

你说的对但是➖比➕少一笔,所以我选择向下投票

avatar.png

我充实你的梦







< 多厨用户/多厨
————————————

我们已正式成为好友,快开始聊天吧!



1


人呢


Level AS-530,中央大厦,3F13N 。


ok








多厨放下手机,顺手拾起地上的空易拉罐,走出公寓门,转身便切入天花板上的铁门1,来到Level AS-156的液体容器上空,向下抛出易拉罐,依靠重力切入其中,顺利前往了Level AS-16。


多厨来到一座儿童淘气堡中,环顾四周黑暗,这使他非常容易的发现那成群海洋球中的一丝白光——那兴许是一只笑魇。多厨立刻做出了决定,切入它!因为沟槽的官僚主义,Level AS-530到出入口并没有被MEG记录完全,但经过多厨多次的实验已经可以确定,AS层群中的白光总是通往Level AS-530中的路灯下,虽然笑魇的面孔是否属于白光在学术上确实还有待商榷,但不试试怎么知道呢。他一个健步腾空而起,身体在空中以侧方面向笑魇,愣着的笑魇还没反应过来,多厨便来到了Level AS-530的路灯下。


那条通往Level AS-530的道路他早已熟记于心——这并不是因为Level AS-530本身有多特殊,而是因为这个层级是一条速切路线的必经之路。多厨这样想着,抬头便看到那中央大厦就在眼前。“运气挺好”随即他便进入大厦。


“3F13N就是三楼十三号房……克劳德什么时候用语这么简洁了。”多厨看着那条简短的信息,来到房间前。房间的门是锁住的,理论上讲可以通过切入门来到另一段,但考虑到礼貌,多厨并没有这么做。


“咚、咚、咚。”敲了三下后,门的那边似乎没有任何反应。“不是BYD人呢。”多厨感到一丝疑惑,打开速切终端,论坛的页面还是保持在克劳德宣布回归的页面,无论如何刷新也没有新的帖子,“我靠不对吧,从我离开到这里满打满算也有5分钟了,平时那几个老东西也该来冒个泡了,怎么今天连个人影都没看到。”诡异愈发严重,他退出这个页面,看到其他页面的回复都在1分钟以前左右,几个老东西也都在线,这排除了他们有事没看到的原因。克劳德一个月联系不上突然回归的事算不上小,他们也没理由不冒泡,那么就只剩一个原因了。


一个参与速切论坛开发的速切老登曾跟他透露过,在速切论坛的内测版本中,曾加入过一个功能——创建只有特点用户能看到的帖子,不过后来在公测时删掉了这个功能。兴许是后室无形的大手又在操控时间,后室发生了时间混乱,导致克劳德使用到了该功能,不过,他为什么要这么做呢?


还没等多厨进一步思考,门开了,里面漆黑一片。“不是哥们。”这引起了他乃至人类本能中对未知的警惕,更何况是疑点重重的现在。为了方便速切,他没带照明设备或者什么武器,只带了两副TCG卡组。“第二套是娱乐卡组,也许可以拿来当武器?这东西边缘应该还挺锋利的。”随即他取出一张牌夹在手中,“虽然上次这么搞还是在前厅玩扑克,不过应该还没忘。”


进入房间,黑暗立刻笼罩了周边的空间,空气异常寒冷。“我操谁把门关了”多厨确定了一件事,这个邀请他到此地的人肯定不是克劳德,至少不是他所熟识的克劳德。不过,身为速切领域大神,继续看看问题应该也不大。扶着墙绕着房间走了一圈,他确定这个房间内并没有其他除开入口的门,也没有任何靠墙的家具或是依附在墙上的物品。“不是灯的开关呢?”多厨如此想到,于是打算朝中间靠近,却突然绊倒,是一滩有些软的物体,如果这是尸体的话,应该已经死了一会了,他回头仔细一看,还真是一滩尸体,衣服上貌似有MEG的臂章。“我算是明白这层的出入口怎么统计不全了。”多厨打开尸体的包,翻到一台照明设备,启动后,他立刻就后悔了——数只雌性死亡飞蛾蜷缩在房间的天花板上,在看到他手中的光源后犹如利箭,立刻扑向光源。


多厨顺手拉起尸体的包,创向门,门被锁住了。他现在必须切入什么才能逃离这该死的飞蛾巢穴,来不及思考,他立刻侧身切入门中,顺利切出至门外。被惊动的死亡飞蛾不断的撞向门,试图从阴暗的房间逃出,巨大的响声惊动了整层楼的实体。“他妈的,陷阱。”多厨想到,却看见一只披着伪装的窃皮者从他身旁的门闯出,而那窃皮者有一丝不对劲。窃皮者的上半身沾染着血迹,衣服与皮囊都渗出猩红的血液,两只眼珠似要从眼眶掉出,宛若一只悲尸,但不见类似痛苦液的液体,其下半身却异常干净,裤子间似有细小的裂缝,然不仔细看无法发现。上半身与下半身的突兀就好像用胶水把一块乐高小人上半身与一个绿色塑料玩具兵下半身接在了一起,并在乐高上涂满番茄酱。


那根本就不是窃皮者!管不了那么多了,多厨直接切入它离开了这层。短暂的疼痛与眩晕,他来到了Level AS-201。“我操,步豪!”他立刻意识到这里是哪里,曾经在速切竞赛的一次意外切出导致他在这个层级浪费了30分钟左右,而根据废物MEG的记录,这个层级甚至没有已知出口。“还有什么比这更糟糕的吗!”他如此想着,回头,那猩红的颜色再次出现在他眼前,“不是这他妈还能追过来的?”多厨扔出一张TCG牌,正中心脏处,那实体的上半身就好像被熊熊烈火燃烧似得溶成一坨,可那实体却仍旧健步如飞,他不得不切入身旁的墙壁与其拉锯。


来到另一处楼房旁,他立刻向前奔跑,他确信那东西大概就是给他发讯息的人,因为它那崭新的裤子上绑着一台速切终端,也就是说,它就是克劳德的下半身。“操你妈失败案例不应该去追克劳德吗。”很快那个东西的脚步声再次出现在她身后,多厨切入地面,它也切入地面,多厨切入垃圾堆,它也切入垃圾堆,犹如狗皮膏药难缠。他三番五次的切出切入并不只是为了逃跑,而是为了寻找逃离这吊层级的机会,那在此层中唯一算得上不太稳定的非线性空间。


在体力快要耗尽时,一次转身让他找到了机会——那实体出现在了他的眼前,这说明该地区是一块非线性空间,因为那个别样的东西刚刚在他的后面。多厨立刻跳起,扔出背包并进行物切,离开了这里。


回到了Level 11,周围人群的熙熙攘攘让多厨暂时放松了警惕。到了家,他打开速切论坛,开始分享他的事迹——





avatar.png

再次从LAS201逃出,耗损1张TCG卡牌,遇见了克劳德的下半身,楼下细说。

我充实你的梦

2019103116290128875.jpg%21w500.jpg

不是?遇到什么了?

彩↑虹↓森↑林→

avatar.png

早上看到个名字为「Cloud114」的账号发的帖子,说自己回归了,我回了一楼就邀请我去LAS530打牌,现在寻思为啥去LAS530呢,那个克劳德是假的,到地方就被克劳德的下半身制裁了,那个地点一堆飞蛾,差点废了,然后就一直被克劳德下半身追,那东西甚至会速切,与失败案例的描述根本不符。

我充实你的梦

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

什么帖子,没看见啊

这个人很懒,什么都没有留下~

2019103116290128875.jpg%21w500.jpg

关键难道不是两条腿怎么发帖子吗

彩↑虹↓森↑林→

avatar.png

刚才又看了一下,不是Cloud114,是CloudII4,签名也有差别,被阴了我靠

我充实你的梦

avatar.png

怎么没人啊

我充实你的梦

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

这个人很懒,什么都没有留下~

2019103116290128875.jpg%21w500.jpg

可以看出来今天多厨运气不太好

彩↑虹↓森↑林→

avatar.png

111?

我充实你的梦

avatar.png

淡季论坛?

我充实你的梦

这是?


2019103116290128875.jpg%21w500.jpg

感觉克劳德的下半身疑似把多厨的账号与其他账号屏蔽了,反正后室也没有什么不可能的了

彩↑虹↓森↑林→

avatar.png

我操你们说句话啊,别吓唬我啊

我充实你的梦

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

感觉多厨要出事,我去看看

这个人很懒,什么都没有留下~

avatar.png

我靠真的没人吗?

我充实你的梦

avatar.png

我靠那个下半身速切过来了😱😱😱

19roadsonglinNB.jpg
我充实你的梦

2019103116290128875.jpg%21w500.jpg

谁家绿化带

彩↑虹↓森↑林→

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

坏了,多厨不在家

这个人很懒,什么都没有留下~

😨不能死了吧


avatar.png

尼玛币的阴魂不散,还好我是物切高手。有没有人来L11帮个忙,1697街34号

我充实你的梦

该用户因使用不被速切论坛允许的代码,给予一次严重警告

用户 @5314551325pwp 警告计数+2,目前警告计数为:2

杀杀杀

好快的杀


%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

多厨这是搞啥啊,都快似了还搞花活

话说这个代码不是点一下就能看吗,怎么看不到

这个人很懒,什么都没有留下~

2019103116290128875.jpg%21w500.jpg

那个和这个代码不同,我记得有老登和我说过这个,这个代码是上次论坛更新功能中被弃用的,原因忘了,因为技术原因保留但被禁用,不过管理应该可以查看内容,所以

@AAcer 麻烦看看这个代码下面的字写的啥

彩↑虹↓森↑林→

2019103119454759061.jpg%21w500.jpg

爬了下楼,感觉有点邪门。星辰说的那个功能前几天维护更新时已经删了,如果要复现代码有点长,并且多厨发的帖子我看源代码页面就会崩溃,应该还用了特殊的代码,据我所知多厨就这个时候不会做这种事,因为他不会代码。我私信他一下问问情况。

以及要是多厨1个小时内不回的话这个帖子估计要锁了

操你妈别来查成分

2019103119454759061.jpg%21w500.jpg

我去,多厨给我删了

操你妈别来查成分

2019103116290128875.jpg%21w500.jpg

也给我删了,看来多厨的速切终端多半被克劳德下半身夺舍了

彩↑虹↓森↑林→

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

变牢厨了😭

这个人很懒,什么都没有留下~

2019103116290128875.jpg%21w500.jpg

@Aizen 你好友估计也被删了,但他的速切终端还记录着他删好友前的行动轨迹,牢厨的ip还在Level 11,正好你也在Level11,我认为可以通过这个来寻找多厨

彩↑虹↓森↑林→

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

可以一试

这个人很懒,什么都没有留下~

avatar.png

草草草草草草要是我死了我会诅咒你们也被克劳德追啊啊啊啊啊啊,几把一个小时了一个人也没回我我操尼玛啊啊啊啊啊。

我充实你的梦

该用户因使用不被速切论坛允许的代码,给予一次严重警告

用户 @5314551325pwp 警告计数+2,目前警告计数为:4

杀杀杀

%E6%9A%B4%E8%B5%B0P%E5%9B%BE-2025-0123-171131.jpg

多厨再发个帖子就要被封了😨

这个人很懒,什么都没有留下~

2019103116290128875.jpg%21w500.jpg

情况紧迫,@Aizen 我刚刚在L11吧上发了个寻人帖,多厨刚刚应该在1724街,你可以在那边附近的街区找到他

彩↑虹↓森↑林→

速切论坛不方便实时寻找,私信|













<Aizen




1月17日 11时21分31秒




看到了!在朝1944街切行!




我找到他的终端定位了,发给你的终端了。那片区域已知的出口都是通向九大层的,我在楼梯,如果他切出了就麻烦你帮忙盯着定位,我去追。




定位看到了,他现在跑到L2了,在BNTG的轨道系统,AS010线,大概在5min后到达LAS10




已经到达LAS10的轨道,我需要确定多厨现在附近是否存在实体




只有另一个终端定位,应该是他说的克劳德的下半身




好,我现在有一把步枪,麻烦再报一下位置




距离两层交接处还有600m,注意有几只猎犬跟过去了,没有攻击另一终端




应该到了




看见了,多厨没出事,现在和我通过诺贴切到安定点了,麻烦看看另一个定位现在在哪




回L2了




那应该没事了




最哈人的一集










这就是你下半身最后的发现记录。





不是这就没了?你的意思是从17号到现在整整1个月我的下半身都没有一点消息?





后室这么大,几千层上哪给你找去。





星辰和A哥不是有定位吗?





自己去问,我又不知道。





好好好。




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