Entity C-476 - “守密者”
: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 }


幸存者互助联盟
邮箱注册

 秘史发掘会

brcn.minshifajue.gcg

注意事項:联盟法规
便捷路标:联盟导航

你的订阅:点击这里
最新帖子:点击这里

实用工具:使用指南
紧急求助:直达帖子

首页

日历

幸存者互助联盟后室研究区万维网研究专区► 秘史发掘会(版主: STUDENT508)► 询问:qwq5231554135到底发生了什么?

标记未读 打印 不通知电子邮件 页底 ▼ 页1

主题: 询问:qwq5231554135到底发生了什么?

摘要:肯定有什么出岔子了
10a9fc70042.png
STUDENT508
坚韧,团结,奉献
一级专区长 联系我
上次编辑: 1996-08-27, 21:08:38 由 STUDENT508

Re:询问:qwq5231554135到底发生了什么?

66453afr.png
Nuit_Aihen
帖子数: 500
权限等级: 研究员
已离线
上次编辑: 1996-03-02, 14:18:24 由 Nuit_Aihen

多厨已经有差不多将近两个月的时间没有上过线了,发给他的部门任务也没有接过,我记得他应该是申领过三台信息设备的,而且其中一台是手机照理说不可能出现什么异常现象同时把所有电脑全烧了的情况。

虽然说在公职板块问这种事情好像有点不太合适,但是即时通讯那边最近在忙于对抗派对客战争中的大规模数据篡改,我们只能先到这边来进行一下处理。如果之后找到多厨的话,我会把这个帖子删掉的。

现在我先汇总一下我知道的信息:qwq5231554135也就是我们一般叫的多厨,是幸存者互助联盟后室研究区万维网分区的二级权限成员,我最后一次和他联系是在1996-01-01, 00:00:31,他向我发送了新年祝福,在此之前一天我们两个人在即时通讯上进行了1995年的年终汇总和1996年的新年规划,我们俩一致决定先去处理伍区交给我们的,关于机巧子民在1800年代网区内活动的信息汇总,当时多厨提到他要先抽出大概两个星期的时间去处理第九圣痕的考察记录。

我之后就没有再见到qwq5231554135了,因为我之前跟他也不算很熟,所以我不知道他住哪,现在伍区那边又比较催,有人能帮我联系一下他吗?


影墨是哪位前辈?


好的,感谢前辈。
点赞

Re:询问:qwq5231554135到底发生了什么?

br1v64zb9r.png
Dawn Future
帖子数: 120
权限等级: 三级研究先锋
已离线
上次编辑: 1996-03-02, 15:19:50 由 Dawn Future

不行你问问影墨 他不是分管我们专区考勤那一块嘛 你看看他最近的考勤记录什么时候有来打过卡不就知道了


是Hampton by Hilton我帮你去问吧正好我们俩住一个基地管区。


问到了,他说他在应对档案库污染,处理完他回复你。
点赞

Re:询问:qwq5231554135到底发生了什么?

ku51va9.png
Hampton by Hilton
帖子数: 3500
权限等级: 二级专区长
此用户权限等级不适用于您所在的专区
已注销
上次编辑: 1996-03-02, 20:17:11 由 Hampton by Hilton

你们自己也可以查啊我发过共享文档了你们先插着不要管我我还要处理运输路线规划分区的事情
万维网研究专区1996年第1季度考勤表.xls


你为什么不会不是西南农业基地那个前厅的


那你怎么不去军分区
点赞

Re:询问:qwq5231554135到底发生了什么?

br1v64zb9r.png
Dawn Future
帖子数: 120
权限等级: 三级研究先锋
已离线
上次编辑: 1996-03-02, 15:19:50 由 Dawn Future

小N你自己看一下 我有点不太熟 这种东西也不知道怎么用 我好像还没把这个打开,他电脑好像出了点问题。


没有,我是三角经济特区前厅来的,我进来之前就压根没见过这个


我之前是从导火索退下来的说是让跟这边有点什么协同合作这样子虽然我也不感觉有什么协作的


我不会啊


找服务部倒是好办我去处理就行
点赞

Re:询问:qwq5231554135到底发生了什么?

10a9fc70042.png
STUDENT508
帖子数: 15387
权限等级: 一级专区长
已离线
上次编辑: 1996-03-02, 15:19:50 由 STUDENT508

qwq5231554135也没跟我汇报过他的工作动向,我之前向他发过好几个消息,但是他这边都没有给回应,机巧子民的这个任务我先让LvFur和你一起负责跟进一下,qwq5231554135这边直接查出勤记录,如果说这几个月缺勤实在严重的话就直接记成暂时停止执行职务,然后去撤销权限等级影墨你处理完你们分区的事情以后跟进一下这个事情,因为你是专管内勤,我就不分其他人手给你了。

之前多厨跟着LvFur在做的那个第九圣痕军团遗留战场的发掘报告也一直没有给我,LvFur你直接在这个群里说一下情况,第九圣痕军团所留下的大量网络战争遗址目前仍然保留着大量有价值的信息这个我在即时通讯会议里面已经强调过很多遍了,现在区长包括整个后室研究区的区领导班子都相当重视我们专区 如果这一次的事情我们不能按时按量的完成的话,之后不管是你们这个板块还是上到我们整个万维网研究专区在在区领导这边都会很难办的,这件事情我需要你务必去落实,我已经从隔壁破损数据发掘会那边给你摇了两个人来,包括我分给你的多厨你手下应该是总共有三个人的,这一片网区的清理工作拖到现在,问题已经相当大了。

然后老白你去查一下,我记得多厨他是住在L11那边,不行你跟报道区那边的几个分区长联系一下,让他们找新人报道里面多厨的那个档案看他的个人信息。还有老白你你要适应网站这边,这边不是即时通讯,你的信息是一直留着的,你不要用这种就是一小条消息一小条的那种会把东西刷的很长,然后到时候影墨归档是不好归的。你之前发的那些消息,我帮你归档好了。


你看这个
nbt114.mp4
你照着这个上面的做就行了,要是实在不会的话,你去问一下你住的那个基地的服务部的网络分管内勤,我记得你应该是住阿尔法基地那边,那边我不太熟,你自己找一下。

有没有实体活动或者异常现象的记录?
点赞

Re:询问:qwq5231554135到底发生了什么?

br1v64zb9r.png
Dawn Future
帖子数: 120
权限等级: 三级研究先锋
已离线
上次编辑: 1996-03-02, 15:19:50 由 Dawn Future

白队长:您之前让我找的这位联盟成员qwq5231554135的身份信息已经出来了,我现在给您发过来。qwq5231554135,真实姓名***,绰号多厨用户,**岁,男性纯血人类,母前厅为西南工业基地前厅。居住于Level 11***分区外围居民区,所属管辖基地为训练基地“机箱”,1990年3月加入联盟,由于其网络能力较为优秀,调任至网站方面进行任职,曾就任于新闻通告► 伤亡新闻通告专区► 民众士气管理板块任三级研究先锋,后调任至后室研究区► 万维网研究专区► 秘史发掘会。近期无跨层级移动报备,无户口迁移报备,无目击记录。

机箱基地那边的人我倒是认识所以我直接用他们那边的信息就不需要去找网站方面那边再过一道了,我大概问了一下他住的那个地方离基地的主要管控区其实稍微是有一点距离的,大概有个五公里左右,然后我托那边的几个弟兄问了一下,说也差不多有一个月是没见他来这边买过生活用品了,有怀疑说是可能是在什么时候不小心切入切除走掉的情况。


异常现象这一块的话,目前是没有发现有募集到的那种,但是因为他住的有点远,所以社区那边也没怎么留意。

实体的话也没见到有大规模的活动,那种街上误入的尸体基本上是不会上楼的,就我之前在军团的经验来看,如果他在比较高的层,而且平时不怎么出门的话,被实体攻击的概率其实不高的。
点赞

Re:询问:qwq5231554135到底发生了什么?

66453afr.png
Nuit_Aihen
帖子数: 500
权限等级: 研究员
已离线
上次编辑: 1996-03-02, 14:18:24 由 Nuit_Aihen

[害怕][害怕][害怕]怎么听起来多数前辈好像很不妙的样子?但是也没有收到什么他的求救短信之类的东西啊,如果是真的被实体追杀的话,再怎么都应该有时间发一条短信之类的才对吧。
点赞

Re:询问:qwq5231554135到底发生了什么?

lvkug61.png
LvFur
帖子数: 7586
权限等级: 二级研究先锋
已离线
上次编辑: 1996-03-02, 14:18:24 由 LvFur

大哥,你给我的那两个活我确实在做,但是隔壁板块分过来的那两个伙子是一点旧网区挖掘的经验都没有,一上来我们还没开始办公呢,他先过去,结果触发自动防卫系统给他权限踢没了一个,我只能让他去做后勤,负责资料整理结果另一个在探索的时候也是不报备就乱整,拿一个没有经过任何网关处理的文件直接去看二级深网区然后被突破性代码弄成正常差点送命了。

全程基本上就是多厨和我在做,多厨已经连续加班一个月了,每天我上线的时候都能看到他还在编辑他的那一部分共享文档。我也基本上做了两个月以来都没什么休息已经是实在顶不住,至于你说汇报的事情,我觉得可能是因为他那边还没有拿出统合性的材料汇总给我审批,所以他没敢直接跟你对接。

我真得说一句,大哥我知道我们这个项目很重要,我也知道你很重视,当我老婆说给我一点这东西就是个烫手山芋,地球生存在这个时间点和脉冲王庭的网络战争已经陷入颓势,他们在自己的档案库和网页中布置了大量的权限自动降低和锁死的反制代码,以应对脉冲王庭官吏的扫荡和渗透,我们现在已经废掉了两个可用账号,新账号从安全网区进入深网区本身就是一项很危险的事情而且还需要改设备,我们总不能去把这个锅真的担下来吧。
点赞

Re:询问:qwq5231554135到底发生了什么?

br1v64zb9r.png
Dawn Future
帖子数: 120
权限等级: 三级研究先锋
已离线
上次编辑: 1996-03-02, 15:19:50 由 Dawn Future

出事了,看即时通讯。


还是用不了,我在这里发好了
gf12g6s.png
ta41bxy.png
ay16cna.png

qwq5231554135这孩子死的怕是有点惨的,生命线军团那边的兄弟过来倒是跟我大概说了一下,他的死法应该是被某种有巨爪的实体兜胸口一刀砍断了,他当时应该是在电脑前打字,这东西直接兜胸口一刀把他的两只胳膊砍成了6节,胸口以上顺着肋骨过去,全部撞成一团,我去看了一下这种糊成一团的窗口,说明那东西都是纯靠力气大把这个人直接剁开的。

然后他的头看起来应该是被一脚踩碎了,销售很明显的把他的头往各个方向涂抹过,所以图上那一片褐色的地方,就是地上那一片都是他的脑浆和血。

这伙子的警惕性是在线的,他的门上和窗户上都有粘了蓝砂的丝线作为痕迹,如果真有怪物是从这些地方闯进来的话,这么大的动静他肯定知道。这些东西完全没动过,那怪物也不可能拿着能把人剁成两截的肢体来搞这么精细的活。

所以现在的情况是,完全密室没有闯入痕迹,没有开门离开,附近的其他居民没有发现任何异常现象,房间中也没有打斗痕迹,但是人死了而且死的很惨,我不知道怎么回事,生命线已经把尸体带回去了之后他们应该会做检查的。

对了,他电脑没关,上面还显示在共享文档编辑中,他的这一次编辑已经持续了两个月,就现场来看他应该也死了这么长时间了……
点赞

Re:询问:qwq5231554135到底发生了什么?

10a9fc70042.png
STUDENT508
帖子数: 15387
权限等级: 一级专区长
已离线
上次编辑: 1996-03-02, 15:19:50 由 STUDENT508

各位先不要急,这件事情涉及到这种人命关天的话,显然不是我们这种偏向研究的部门可以管的,我已经把情况同步上报给军团和区长,我相信事情他们会去核实好的。

现在我要说的是虽然我对多厨。的不幸牺牲深表遗憾,但是我们仍然有必要继续推进我们的任务,这件事情现在由我直管负责,LvFur你现在继续去整理你负责的这一部分内容,Nuit_Aihen你来接任之前多厨遗留下来的工作,影墨你负责处理一下考勤记录和人员调配的事情,然后帮我们从分区那边要几个新人过来。


我们每个人都对他的牺牲表示遗憾,但是Nuit_Aihen,这不是我们不继续推进工作的理由,联盟需要这些资料来指导接下来的层级探索和基地规划,并且处理和道门与脉冲王庭的交涉事宜。如果我们不能及时把这些信息上报上去,只会有更多的人牺牲。我们可以在私底下在其他合适的场合向他表示哀悼,但是不是现在,让我们先把工作完成好吗。
点赞

Re:询问:qwq5231554135到底发生了什么?

66453afr.png
Nuit_Aihen
帖子数: 500
权限等级: 研究员
已离线
上次编辑: 1996-03-02, 14:18:24 由 Nuit_Aihen

[已编辑]
抱歉,刚刚是我失态了,只是我真的没有想到,明明之前还一起的前辈居然会……


我知道了,我会完成。
点赞

Re:询问:qwq5231554135到底发生了什么?

lvkug61.png
LvFur
帖子数: 7586
权限等级: 二级研究先锋
已离线
上次编辑: 1996-03-02, 14:18:24 由 LvFur
[已编辑]
lii18.png
我不想和你吵,大哥,我一直都认你当大哥的,但我真觉得我们不该这样操之过急的一味推进。

第九圣痕本来就是至今我们都无法溯源其前身的特殊军团,在一个我们任何人都还没有进入后室的时间点,已经进入其中,和脉冲王庭展开了规模庞大的相互战斗,他们的技术实力不容小觑,而既然对抗的是本身就以网络作为信仰,明显是可以使用和网络有关的超自然能力的脉冲王庭,他们还能维持起一个如此庞大,而且相当久远的网络区。

你不可能指望着他们老家里一点看家护院的东西都没有,之前派过去的那两个孩子,有一个也是出了事儿,急性心跳骤停差点没缓回来,就算我们所使用的设备都是经过特制改造的版本,理论上可以防止他们留存的大部分网络武器,但不是全部。


如果大哥你真的要这么搞的话,我肯定也只能配合你。
点赞

Re:询问:qwq5231554135到底发生了什么?

66453afr.png
Nuit_Aihen
帖子数: 500
权限等级: 研究员
已离线
上次编辑: 1996-03-02, 14:18:24 由 Nuit_Aihen

R5
点赞

Re:询问:qwq5231554135到底发生了什么?

ku51va9.png
Hampton by Hilton
帖子数: 3500
权限等级: 二级专区长
此用户权限等级不适用于您所在的专区
已注销
上次编辑: 1996-03-02, 20:17:11 由 Hampton by Hilton

STUDENT508,Nuit_Aihen已经超过两个星期没向我报到了,我觉得你最好去看一看到底发生了什么。
点赞

Re:询问:qwq5231554135到底发生了什么?

br1v64zb9r.png
Dawn Future
帖子数: 120
权限等级: 三级研究先锋
已离线
上次编辑: 1996-03-02, 15:19:50 由 Dawn Future

我去吧


……死了
ta6xnql.png
比多厨更惨,应该是先被什么有庞大力量的东西打断,然后撕开了整只手臂,然后被纵向剖开或者说砸扁,现场一片狼藉,而且手机被刻意损坏过,同样没有任何出入痕迹,这些文件肯定有哪里有问题,这孩子也是在编辑过程中直接死的,甚至我大概看了一眼,虽然不太懂,但是看着字估计两边的内容编得都差不多。
点赞

Re:询问:qwq5231554135到底发生了什么?

lvkug61.png
LvFur
帖子数: 7586
权限等级: 二级研究先锋
已离线
上次编辑: 1996-03-02, 14:18:24 由 LvFur

伍凌风……我们之后再算账。
r5,我推测有可能说的是rar5,因为我们在镜像了整个网络区之后,是把这些文件以压缩分卷的形式存放的,我使用了一些脉冲王庭的代码,让这些文件即使在压缩分卷的情况下,也可以不统一解压直接访问,按照老白说的,两个都差不多的话,唯一一种可能就是这个分卷里的什么东西有问题。

1800第九圣痕活动网区镜像.rar5
点赞

更多…
幸存者互助联盟后室研究区万维网研究专区(专区长: STUDENT508)► 秘史发掘会(版主: STUDENT508)► 询问:qwq5231554135到底发生了什么?

标记未读 打印 不通知电子邮件 页底 ▼ 页1

帮助 | 条款和规则 | 页顶 ▲


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