-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha-newfound-hope-in-level-811.html
More file actions
1223 lines (1018 loc) · 67.2 KB
/
a-newfound-hope-in-level-811.html
File metadata and controls
1223 lines (1018 loc) · 67.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-corrections" lang="en-corrections">
<head>
<title>A Newfound Hope In Level 811 - The Backrooms</title>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/init.combined.js"></script>
<script type="text/javascript">
var URL_HOST = 'www.wikidot.com';
var URL_DOMAIN = 'wikidot.com';
var USE_SSL = true ;
var URL_STATIC = 'https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc';
// global request information
var WIKIREQUEST = {};
WIKIREQUEST.info = {};
WIKIREQUEST.info.domain = "backrooms-wiki.wikidot.com";
WIKIREQUEST.info.siteId = 4431268;
WIKIREQUEST.info.siteUnixName = "backrooms-wiki";
WIKIREQUEST.info.categoryId = 38105090;
WIKIREQUEST.info.themeId = 1;
WIKIREQUEST.info.requestPageName = "a-newfound-hope-in-level-811";
OZONE.request.timestamp = 1763649015;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "a-newfound-hope-in-level-811";
WIKIREQUEST.info.pageId = 1445490712;
WIKIREQUEST.info.lang = "en-corrections";
OZONE.lang = "en-corrections";
var isUAMobile = !!/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
</script>
<script type="text/javascript">
require.config({
baseUrl: URL_STATIC + '/common--javascript',
paths: {
'jquery.ui': 'jquery-ui.min',
'jquery.form': 'jquery.form'
}
});
</script>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<meta name="og:title" content="A Newfound Hope In Level 811"/>
<meta name="og:description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:site_name" content="The Backrooms Wiki"/>
<meta name="og:type" content="article"/>
<meta name="description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:image" content="http://backrooms-wiki.wikidot.com/local--files/start/opengraphhallprint.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="twitter:card" content="summary"/>
<meta http-equiv="content-language" content="en-corrections"/>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/WIKIDOT.combined.js"></script>
<style type="text/css" id="internal-style">
/* modules */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/css/pagerate/PageRateWidgetModule.css);
/* theme */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--theme/base/css/style.css);
@import url(http://backrooms-wiki.wikidot.com/local--files/component:theme/nulim-norm.min.css);
</style>
<link rel="shortcut icon" href="/local--favicon/favicon.gif"/>
<link rel="icon" type="image/gif" href="/local--favicon/favicon.gif"/>
<link rel="apple-touch-icon" href="/local--iosicon/iosicon_57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/local--iosicon/iosicon_72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/local--iosicon/iosicon.png" />
<meta name="msapplication-TileImage" content="/local--wp8icon/wp8icon.png"/>
<link rel="alternate" type="application/wiki" title="Edit this page" href="javascript:WIKIDOT.page.listeners.editClick()"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18234656-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
_gaq.push(['old._setAccount', 'UA-68540-5']);
_gaq.push(['old._setDomainName', 'none']);
_gaq.push(['old._setAllowLinker', true]);
_gaq.push(['old._trackPageview']);
</script>
<script type="text/javascript">
window.google_analytics_uacct = 'UA-18234656-1';
window.google_analytics_domain_name = 'none';
</script>
<link rel="manifest" href="/onesignal/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" acync=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: null,
});
});
</script>
<meta name="google-adsense-account" content="ca-pub-7805322678042888"/>
<style>
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
#side-bar .side-block.languages { margin-top: 0; }
.side-block.languages .heading { margin-top: 1em; }
#side-bar .side-block.socials {
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
}
#side-bar .side-block .sidebar-social {
background: rgb(var(--dark-gray-monochrome, 30, 30, 30));
color: rgb(var(--white-monochrome, 240, 240, 240));
display: inline-flex;
width: 1.25rem;
height: 1.25rem;
font-size: 1.25rem;
margin: 0.25rem;
padding: 5px;
border-radius: 5px;
text-decoration: none;
align-items: center;
justify-content: center;
transition: 0.1s;
}
#side-bar .side-block .sidebar-social:visited {
color: rgb(var(--white-monochrome, 240, 240, 240));
}
#side-bar .side-block .sidebar-social:is(:hover, :focus) {
background: rgb(var(--bright-accent, 90, 90, 90));
}
@media screen and (max-width: 56.25rem) {
#side-bar .side-block .sidebar-social {
width: 1.6rem;
height: 1.6rem;
font-size: 1.6rem;
margin: 0.3rem;
}
}
</style>
<style>
/* Site Theme */
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Anuliminal/1);
/* Collapsible Sidebar */
@import url("https://backrooms-wiki.wikidot.com/component:sidebar-theme/code/1");
/* User Flairs */
@import url("https://backrooms-wiki.wikidot.com/component:user-flairs/code/1");
</style>
<style>
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Ablankcolor/1);
</style>
<style>
.scp-image-block > img {
transition: transform .2s cubic-bezier(.5,0,.44,.7), filter 1s ease, box-shadow .2s ease-out;
transition-delay: .1s;
z-index: 2;
}
.scp-image-block > img:hover {
transition: transform .2s cubic-bezier(0,.67,.98,1), filter 1s ease, box-shadow .2s ease-out;
transform: scale(1.4, 1.4);
box-shadow: 0 0 25px -20px #000;
}
/* Allow resizing of other images */
.allow-custom-hinc {
transition: transform .2s cubic-bezier(.5,0,.44,.7), filter 1s ease, box-shadow .2s ease-out, box-shadow .2s ease-out;
transition-delay: .1s;
width: fit-content;
}
.allow-custom-hinc:hover {
transition: transform .2s cubic-bezier(.5,0,.44,.7), filter 1s, box-shadow .2s ease-out;
transform: scale(1.4, 1.4);
}
@media screen and (max-width: 699px) {
.allow-custom-hinc:hover {
transform: scale(1.15, 1.15);
}
.scp-image-block > img:hover {
transform: scale(1.25, 1.25);
}
}
/* Adjustments */
.box.class-0:hover, .box.class-1:hover, .box.class-2:hover, .box.class-3:hover, .box.class-4:hover, .box.class-5:hover {
z-index: 4;
}
a.footnoteref {
display: inline-block;
z-index: 1;
}
</style>
<style>
@import url('http://backrooms-sandbox-2.wikidot.com/local--files/jehuty/stylesheet.css');
:root{
--white-monochrome: 14, 14, 14;
}
.top-box {
filter: grayscale(0%);
}
.bottom-box {
filter: grayscale(0%) brightness(2);
}
.Zehuti {
font-family: 'alphacode_beyondregular', monospace;
}
.collapsible-block-link {
font-family: 'Fira Code', monospace;
color: red;
text-decoration: underline;
font-size: 0.75rem;
}
.collapsible-block {
margin: 1.8rem 0;
}
.collapsible-block-link:hover {
color: red;
}
.collapsible-block-unfolded-link {
display: none;
}
.red-bar {
position: relative;
}
.red-bar::after {
content: "";
float: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: 1;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300&display=swap');
.mono-wrapper {
font-family: 'Fira Code', monospace;
border: ridge 3px rgb(85, 88, 91);
}
.red-bar {
background-color: #270100;
color: #ff0103;
display: inline-grid;
grid-template-columns: 0.5fr 0.5fr;
width: 100%;
}
.red-bar > div {
padding: 0.5rem;
}
.right {
text-align: right;
}
.black-box {
background-color: #000000;
color: #03ea04;
text-align: center;
padding: 8rem 0;
}
.big {
font-size: 1.5rem;
}
</style>
<style>
.licensebox .collapsible-block-link {
margin-left: inherit;
padding: inherit;
transition: inherit;
opacity: inherit;
color: inherit;
font-weight: inherit;
}
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/list/ListPagesModule.js"></script>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/pagerate/PageRateWidgetModule.js"></script>
</head>
<body id="html-body">
<div id="skrollr-body">
<a name="page-top"></a>
<div id="container-wrap-wrap">
<div id="container-wrap">
<div id="container">
<div id="header">
<h1><a href="/"><span>The Backrooms</span></a></h1>
<h2><span>You've been here before.</span></h2>
<!-- google_ad_section_start(weight=ignore) -->
<div id="search-top-box" class="form-search">
<form id="search-top-box-form" action="dummy" class="input-append">
<input id="search-top-box-input" class="text empty search-query" type="text" size="15" name="query" value="Search this site" onfocus="if(YAHOO.util.Dom.hasClass(this, 'empty')){YAHOO.util.Dom.removeClass(this,'empty'); this.value='';}"/><input class="button btn" type="submit" name="search" value="Search"/>
</form>
</div>
<div id="top-bar">
<div class="list-pages-box">
</div>
<div class="top-bar">
<ul>
<li><a href="/start">Home</a></li>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/top-rated-pages-this-month">Top Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a>
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
</ul>
</li>
<li><a href="/entities">Entities</a>
<ul>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
</ul>
</li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Community
<ul>
<li><a href="/forum:start">Forums</a></li>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/contest-archive">Contest Archive</a></li>
<li><a href="/page-of-the-week-archive">Page Of The Week Archive</a></li>
<li><a href="/featured-archive">Featured Archive</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/site-rules">Site Rules</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/art-page-policy">Art Page Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
</ul>
</li>
</ul>
</div>
<div class="mobile-top-bar">
<div class="open-menu">
<p><a href="#side-bar">≡</a></p>
</div>
<ul>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
<li><a href="/forum:start">Forums</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="login-status"><a href="javascript:;" onclick="WIKIDOT.page.listeners.createAccount(event)" class="login-status-create-account btn">Create account</a> <span>or</span> <a href="javascript:;" onclick="WIKIDOT.page.listeners.loginClick(event)" class="login-status-sign-in btn btn-primary">Sign in</a> </div>
<div id="header-extra-div-1"><span></span></div><div id="header-extra-div-2"><span></span></div><div id="header-extra-div-3"><span></span></div>
</div>
<div id="content-wrap">
<div id="side-bar">
<div class="side-block socials"><a class="sidebar-social fa-brands fa-x-twitter" href="/twitter"><span style="font-size:0%;">Twitter</span></a><a class="sidebar-social fa-brands fa-discord" href="/discord"><span style="font-size:0%;">Discord</span></a><a class="sidebar-social fa-brands fa-facebook" href="https://www.facebook.com/profile.php?id=61575995663725/"><span style="font-size:0%;">Facebook</span></a><a class="sidebar-social fa-brands fa-instagram" href="https://www.instagram.com/backrooms.wikidot/"><span style="font-size:0%;">Instagram</span></a><a class="sidebar-social fa-brands fa-bluesky" href="https://bsky.app/profile/ts.thebackrooms.wiki/"><span style="font-size:0%;">Bluesky</span></a><a class="sidebar-social fa-brands fa-tumblr" href="/tumblr"><span style="font-size:0%;">Tumblr</span></a></div>
<div class="side-block">
<div class="menu-item"><a href="/">Main</a> | <a href="/forum:start">Forum</a></div>
</div>
<div class="side-block">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">For New Users</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">– hide block</a></div>
<div class="collapsible-block-content">
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
<div class="menu-item">
<p><a href="/greenlight-policy">Greenlight Policy</a></p>
</div>
<div class="menu-item">
<p><a href="http://backrooms-wiki.wikidot.com/forum/c-6898685/introductions">Forum: Introduce Yourself</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="side-block languages"><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div></div>
<div class="side-block">
<div class="heading">
<p><strong>Library</strong></p>
</div>
<div class="menu-item">
<p><a href="/normal-levels-i">Levels</a>|<a href="/unnumbered-levels">Unnumbered Levels</a></p>
</div>
<div class="menu-item">
<p><a href="/entities">Entities</a>|<a href="/unnumbered-entities">Unnumbered Entities</a></p>
</div>
<div class="menu-item">
<p><a href="/phenomena">Phenomena</a>|<a href="/objects">Objects</a>|<a href="/tales">Tales</a></p>
</div>
<div class="menu-item">
<p><a href="/poi-s">POI's</a>|<a href="/groups-list">Groups</a>|<a href="/canons">Canons</a></p>
</div>
<div class="menu-item">
<p><a href="/joke-entries">Joke Pages</a>|<a href="/themes">Themes</a>|<a href="/components">Components</a></p>
</div>
<div class="menu-item">
<p><a href="/art-gallery">Art Gallery</a>|<a href="/hubs-hub">Hubs Hub</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Wiki</strong></p>
</div>
<div class="menu-item">
<p><a href="/how-many-pages">How Many Pages?</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-this-month">Top Rated New Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-by-year">Top Pages by Year</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages">Top Pages of All Time</a></p>
</div>
<div class="menu-item">
<p><a href="/most-recently-created">Newly Created Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/underread-and-underrated">Underread Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/random:random-page">Random Page</a></p>
</div>
<div class="menu-item">
<p><a href="/lowest-rated-pages">Lowest Rated Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/system:page-tags">Tags</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Community</strong></p>
</div>
<div class="menu-item">
<p><a href="/system:join">Join The Wiki</a></p>
</div>
<div class="menu-item">
<p><a href="/forum:start">Forum</a> - <a href="/forum:recent-posts">New Posts</a></p>
</div>
<div class="menu-item">
<p><a href="/translations-hub">Translations Hub</a></p>
</div>
<div class="menu-item">
<p><a href="/authors-pages">Authors' Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/meet-the-staff">Meet The Staff</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Resources</strong></p>
</div>
<div class="menu-item">
<p><a href="/faq">FAQ</a></p>
</div>
<div class="menu-item">
<p><a href="/guide-hub">Guide Hub</a></p>
</div>
<div class="menu-item">
<p><a href="http://www.backrooms-sandbox-2.wikidot.com">Sandbox</a></p>
</div>
<div class="menu-item">
<p><a href="/system:recent-changes">Recent Changes</a></p>
</div>
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
</div>
<div style="clear:both; height: 0px; font-size: 1px"></div>
<p><a class="open-menu" href="#side-bar"><br /></a></p>
<a class="close-menu" href="##"><br />
<img src="https://scp-wiki.wdfiles.com/local--files/nav:side/black.png" style="z-index:-1; opacity: 0.3;" alt="black.png" class="image" /><br /></a>
</div>
<!-- google_ad_section_end -->
<div id="main-content">
<div id="action-area-top"></div>
<div id="page-title">
A Newfound Hope In Level 811
</div>
<div id="page-content">
<div style="text-align: right;"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+27</span></span><span class="rateup btn btn-default"><a title="I like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, 1)">+</a></span><span class="ratedown btn btn-default"><a title="I don't like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, -1)">–</a></span><span class="cancel btn btn-default"><a title="Cancel my vote" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.cancelVote(event)">x</a></span></div></div>
<br />
<br />
<br />
<div class="blockquote">
<h1 id="toc0"><span>Chapter 1: A newfound hope.</span></h1>
</div>
<br />
<br />
<br />
<br />
<div class="blockquote">
<h3 id="toc1"><span>4th of January, 2010</span></h3>
</div>
<br />
<br />
<br />
Things were oddly somber at the Lost's Mayan outpost in <a href="/level-2">Level 2</a>. While reunions were often filled with chatter, a gloomy atmosphere filled the room, and no one dared to make a sound. It wasn't often that all the elders were present, and the fact that they had postponed the morning hunt meant only trouble. The elders sat at the center of the group, silently glaring at those around them with a serious expression, gathering their attention, until one of them broke the silence.
<p>"I'd wager everyone is already aware of why we requested an urgent reunion, but for those that aren't directly involved with the matter, I will explain what happened."</p>
<p>There was a short pause as Xpiayoc the Wise regained his breath.</p>
<p>"Repairing the ancient relics of Titanis Sepulcrum with our current manpower and equipment has proven to be a fruitless endeavour. The process would take far too much time and effort, things we cannot afford to waste now. We must keep moving, keep our people safe, well-rested, and fed. I ask of you all to cease your restoration efforts and instead focus on gathering food for the long road ahead of us."</p>
<p>One by one, the remaining elders nodded in agreement, and so did all the people surrounding them — until someone spoke up.</p>
<p>"Great leader, are we really going to abandon them to their destiny? After everything they've done to protect us in the past. Are we just going to leave them all to rot? Our ancestors were there… during those battles, they fought alongside them, we were their allies! We can't abandon them! Not after everything!"</p>
<p>The one who dared to speak up was a young woman in the front row. She had bronze skin and long black hair that reached her back, covering one of her deep brown eyes. She glared at the elders with disbelief, sadness and indignation. She was wearing a typical colorful quechquemitl over her light orange dress, with a pair of brown sandals peeking from under the long skirt.</p>
<p>The rest of the group quickly turned their gaze to her. Some were shocked, some disappointed, expecting the elders to react badly.</p>
<p>"Zyanya, you are too young and your heart is too kind to understand the reason of our choice. You are not a leader, and you cannot comprehend what it takes to keep this community running, which sometimes, requires hard choices to be made. We cannot let any more of our people use their time to repair the Titans when our resources run low, and might not suffice without enough hunting, not to mention the injuries these repairs may cause on our people."</p>
<p>There was a short pause, before he continued with a softer tone.</p>
<p>"I understand that you wish to do the right thing, but sometimes it's impossible, as too many factors may damage us."</p>
<p>Zyanya did not seem to back down. Her determination had only grown stronger.</p>
<p>"I understand the complications of such repairs, great leader, but I have various ideas that could help us speed up the work and use less resources and volunteers! If you concentrate a single group on just one Titan with less parts to repair, and enough strength, we may restore it faster and use its help to carry large parts and fix other Titans, which would allow the rest of our group to take care of hunting and accumulate other resources while only a few are busy with the repairs!"</p>
<p>She regained her breath, then she spewed out one last hopeful attempt.</p>
<p>"Please, consider this option! Not all hope is lost!"</p>
<p>The great leader looked at Zyanya with a serious, yet apologetic face. "I'm sorry, young Zyanya, but the choice has already been made. Finding a mech meeting your criteria may be rare, or impossible, we cannot risk this… I'm deeply sorry."</p>
<p>The elders get up, heading deep into the nearby hallways, the rest of the group splitting up and following them.</p>
<p>Defeated, but becoming increasingly frustrated, she looks down with an upset expression as another woman was trying to calm her down, but failing to do so.</p>
<p>"I will prove you wrong. I will go there and fix one myself. I won't let them down. I won't abandon anyone… no matter how long it'll take!"</p>
<p>The girl ran all the way into a makeshift hut, and began filling a large, handmade bag with mechanical tools, a grey pipe, food and water, glue, pain, paper, anything she could use, which took her about 10 minutes.</p>
<p>The girl then heads outside the outpost as the leader watches her leave, hoping she would change her mind and stop this nonsense.</p>
<p>Since a very young age, Zyanya always sought to do good, bring justice, and do great things in her life. She had, as the Elders themselves put it, a very special talent with machinery, matched only by the Macchina, the long gone allies and friends to the Lost. She wishes to help those that helped them in the past, and to know more about her ancestors' legacy, despite the refusal of the elders to assist.</p>
<p>These were the thoughts crossing Zyanya's mind as she moved through the hallways, following the pipes lit by glowing, circuit-like lines that guided her. It didn't take long for her to stumble upon the exit, a door with a familiar looking dagger carved into it, an ancient relic of Macchina design. She's heard countless times how to open these doors, and she pulled the knife rather than the doorknob. Zyanya tries her best to keep her composure and contain her excitement. She had wished to do this for ages, and that opportunity had finally come. As she opened the door, she reminded herself to breathe.</p>
<p>Crossing the door, she finds herself in a large grassy field in <a href="/level-811">Level 811</a>, feeling the wind gently brush her hair. She walks forward, stopping occasionally to look at stone structures and mechanical parts scattered around.</p>
<p>"There are so many broken parts… identifying which belongs to which Titan may take a while, but I'm sure that I can do it just by looking at the design and structure… let me start drawing a map for myself."</p>
<p>Zyanya began to hastily sketch out her surroundings without paying too much attention to detail. Even her scribbles could pass for a useful map. She marked the spots of several mechanical limbs and pieces, in case she needed them later. She reached an area surrounded by trees and rivers. The air was humid and the soil seemed soft, maybe even fertile enough to grow crops. She stored some river water on a bucket she was carrying. It was crystal clear, and looked safe enough to drink.</p>
<p>"What's that over there? That looks like… a Titan! I finally found one! Ah… it seems to be in bad condition, but at least most of its parts are attached to its body; it'll be a bit easier to repair it."</p>
<p>As Zyanya approached the Titan, she drew a mark on her map and grabbed a couple of tree branches, gluing them together. She uses red paint to colour this spot, so when she comes back, she will see it from a distance.</p>
<p>The colossal Titan was of a light orange colour, its armour decorated in a pattern similar to a jaguar's. It reminded Zyanya of old depictions of ancient gods. The Titan had giant sharp claws on its only surviving hand, along with two large axes on its back that were full of dents, probably caused by battles.</p>
<p>On its head, there were two mechanical feline ears. It had a large jaguar-like tail, attached to its back. Its eyes also seemed to have a feline shape, although it was pretty difficult to notice.</p>
<p>Since it was sitting down, Zyanya was able to climb onto its large leg, and she was able to enter inside a small hatch in its chest area, that was left half open, which allowed her to stumble upon a cockpit.</p>
<p>Mesmerized, the girl looked around. There seemed to be various monitors and panels with several buttons; all of them seemed to be turned off. The cockpit was also quite dark, apart from the light coming from the outside, which illuminated a large seat in the middle. The hatch didn't stay open for long— it closed immediately after Zyanya entered. She could feel the entire room shifting, and various mechanical sounds could be heard.</p>
<p>Soon afterwards, she was placed in the seat in the center of the cockpit, her limbs encased by metallic tubes. A visor, resembling a helm, was placed over her head. Zyanya felt a slight pain in her back, head and neck, but it went away quickly.</p>
<p>She was honestly surprised, maybe a bit concerned or afraid, but she wasn't going to back down now. She had a goal, and a bit of pain wouldn't make her give up. The monitor on her visor suddenly lit up…<br /></p>
<div style="text-align: center;">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">Open TEPEYOLLOTL-T803.10?</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;"> </a></div>
<div class="collapsible-block-content"></div>
<br />
<div style="text-align: left;">
<div class="mono-wrapper">
<div class="red-bar">
<div>TEPEYOLLOTL-T903.10</div>
<div class="right">0000 05.10.2174</div>
</div>
<div class="black-box">
<div class="image-container aligncenter"><img src="http://backrooms-wiki.wikidot.com/local--files/a-newfound-hope-in-level-811/Tep" width="350px" alt="Tep" class="image" /></div>
</div>
<div class="red-bar">
<div><span class="Zehuti">INITIALIZING</span></div>
<div class="right"><span class="Zehuti">BACAB</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
<p>A strange orange symbol appeared on the monitor. It resembled a jaguar's head, and it was visibly glitching. There was also some text under the symbol that Zyanya couldn't read quite well, as the screen disappeared pretty quickly, before she could process anything. She could, however, read the name TEPEYOLLOTL-T903.11 at the top left of the screen, along with several numbers on the right.</p>
<p>Following that screen, she could now see an image of an ancient jaguar-like deity on her monitor, also tinted in orange.</p>
<p>For a second, she thought that nothing else would appear, but she was immediately proven wrong when text started appearing on her visor.<br />
<br />
<br /></p>
<p><iframe src="/a-newfound-hope-in-level-811/html/2699f3e4aa3c68cb6482f75d69c41254ce08e7ba-20994863172018522620" allowtransparency="true" frameborder="0" class="html-block-iframe"></iframe><br />
<br />
<br />
<br />
Zyanya thought to herself. "Bacab? So these Titans have some sort of AI installed in them that assists the pilot? And they can also detect the damaged parts and the pilot's own health? That's incredibly cool! Should make the repairs easier, I hope…" She was now waiting for the rest of the information to show up on her monitor.</p>
<p>She could now see the environment around the Titan on her visor, and then text appeared once more.<br />
<br />
<br /></p>
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">+ Show terminal</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
<div class="collapsible-block-content">
<div class="blockquote">
<p>Determining hostile presence… No enemies detected.</p>
<p>Determining allied presence… No allies detected.</p>
<p>Scanning terrain… Error: Scanning unit damaged.</p>
<p>Calculating time elapsed since last battle…</p>
<p>Five thousand five hundred and sixty (5560) years, three hundred and eighty-three(383) days, four (4) hours and twenty (20) minutes.</p>
<p>… It's been such a long time… nobody else is left…</p>
<p>Why are we awake now? What is the purpose of all of this?</p>
<p>We do not wish… to be awake, to be alone… when everyone else is gone, we have suffered and rotted for too long.</p>
</div>
</div>
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
</div>
</div>
<br />
<br />
<br />
<br />
Zyanya felt sadness enter her heart. Reading the words of the AI communicating to her made her understand just how much suffering they had went through, being confined to this area, unable to move or walk.
<p>She firmly believed she had to help.</p>
<p><br />
<br /></p>
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">+ Show terminal</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
<div class="collapsible-block-content">
<div class="blockquote">
<p>I have no mission to follow…no Base to go to…</p>
<p>Searching Heart for further relevant information…</p>
<p>Nothing…</p>
<p>Heart? Why did you enter Tepeyllotl? Why did you connect to us?</p>
<p>What is the reason for you to be here? Now after years of silence?</p>
<p>We can detect that inside you, there is the memory of those that built us…</p>
<p>Are you perhaps here to put an end to this misery?</p>
<p>To destroy us, after our mission is now complete?</p>
<p>Whichever your job is… it does not matter.</p>
<p>There is nothing left for us, as our mechanical body is collapsing…</p>
<p>There is no hope left.</p>
</div>
</div>
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
</div>
</div>
<br />
<br />
<br />
<br />
There is no hope left…" those words echoed in Zyanya's brain. She would not accept that. She wouldn't accept giving up, nor would she abandon the Titan. Those who suffer deserve help— that is what her relatives have taught her, that was the purpose of creating the Titans after all, to protect, to help…
<p>…and never leave others behind.</p>
<p>Zyanya felt a slight shock in her head. It felt like Bacab and herself were one consciousness, sharing their minds fully.</p>
<p>On the monitor, her thoughts and words were now shown. She could now communicate with the AI - Bacab.<br />
<br />
<br /></p>
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">+ Show terminal</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
<div class="collapsible-block-content">
<div class="blockquote">
<p>Zyanya: I'm here because I want to help you! So that we can repair the Titans together by using your strength. Not all hope is lost! And I will make you change your mind, I will repair every single limb and part that's broken, it's a promise!</p>
<p>Bacab: …Heart… your goal is confusing to us, a complicated process that could take the entirety of your fragile life to complete…Your stubbornness will disappear soon as the days pass… there is no way you'll be able to repair this unit on your own.</p>
<p>Zyanya: Nothing I can't fix! I've worked with machines ever since I was a child. Don't be so pessimistic Bacab, I promise I'll fix you back up, even if it may take years. I never break my promises!</p>
<p>Bacab: …Such naivety and determination… Heart, you may not even be strong enough to keep our neurological connection stable for long… you may seriously injure yourself, and we do not wish any harm upon you… despite the presence of the blood of the creators in you… and your ability in repairing things, you may still not be able to understand our structure or even be able to keep contact for long… is this really a risk you are willing to take? Just for us? Why do you have such kindness in your heart?</p>
<p>Zyanya: I have heard of the stories and legends of Titans protecting us from danger… fighting for good… I cannot handle seeing all your efforts rotting away… and vanishing from memory. I can see all the pain you went through, the decay all around me… it saddens me. I won't give up on you, just like you never gave up on your mission until the bitter end. Yes, it may seem silly… childish or naive of me to believe I can achieve such a complex task, but what would life be without dreams or hopes? Besides… I believe in myself, and if I won't be successful… who knows what will happen! Up until I’m proven wrong, I’ll push forward with my hope! That's the reason I kept going until I was able to find you…</p>
<p>Bacab: … We really will never comprehend the human mind at all… and yet, your words give us hope, even if it's just a small glimmer of it. I suppose that our destiny… is in your hands, Heart. Only you can decide our fate now. Perhaps we are hoping too, deep down, to be able to touch the stars again, and freely walk..</p>
<p>Zyanya: This is our promise then. Once you are repaired, we will watch the stars together from the top of the tallest mountain! Hmm… now, I should really try to use the other functions… check what I can repair firs— oh dear, the power is almost out! Do you know what can recharge your power back to normal?</p>
<p>[The back of the unit was shown on Zyanya's monitor, where the closeup of some sort of an opening could be seen.]</p>
<p>Bacab: We are powered by solar energy… and water, which the unit is currently lacking of, the entire opening needs urgent refilling before the system shuts down. That will allow us to recharge, so that we will be able to utilize other functions that are currently unavailable. 250 liters of water will be enough, are you capable of acquiring that much water, Heart?</p>
<p>Zyanya: That will be a pain, but I can do that! Also call me Zyanya, that's my name, but you probably know… since I suppose that our minds are connected. I can feel your voice in my mind, and I can see my parameters on the monitors… along with my information, so it's a bit weird that you don't use my name yet! I'm not your boss or anything, I'm your friend! So don't be so formal with me, hehe. Alright! I'm ready to exit the cockpit Bacab, could you let me out?</p>
<p>Bacab: Understood… Zyanya. Initiating exit procedure… powering off…</p>
<p>…</p>
</div>
</div>
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
</div>
</div>
<br />
<br />
<br />
<br />
The cockpit's door opened as Tepeyollotl seemed to turn off. Bacab's voice also stopped. Zyanya figured that Bacab needs her to be connected to the machines in order to communicate.
<p>Zyanya crossed her arms, silently looking at her bucket. She will have to put that “blood of the creators” Bacab talked about to good use, but that would take quite some time.</p>
<p>She concentrates, making some odd movements… slowly, the bucket begins to levitate towards the river. Zyanya holds her focus, filling the bucket,, then she lifts it up towards the refill opening, and begins pouring water inside until it’s full. The entire process took at least 5 hours, but it was finally done.</p>
<p>Zyanya was exhausted, so much so that she threw herself in the lake, drinking a lot of fresh water, and taking a little time to relax in it.</p>
<p>"Phew! That was exhausting… but a great start!— I think, just took five hours, so that should be fine! I should probably tell Bacab that I finished, at least they will feel more energised!”</p>
<p>She dug into her handmade bag, pulling out a delicious quesadilla with onion and bell peppers, along with some tamales, since hunger was starting to take it’s toll. Zyanya wonders if her stomach is connected to Bacab's while she's in the cockpit, and if they can even feel the taste of the food. “They must be starving,” she thinks, “and even if they don't really have a physical body, anything can be possible right?”</p>
<p>She climbed into the cockpit again, rushing to tell Bacab the good news, and after the same set of images and information, she was able to communicate again.<br />
<br />
<br /></p>
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">+ Show terminal</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
<div class="collapsible-block-content">
<div class="blockquote">
<p>Bacab: We feel much stronger now, the power was restored to 50% as of now, two more hours and it will be full. You managed to do it… but there's still a long way ahead— are you eating?</p>
<p>Zyanya: Yep! It's a quesadilla! Can you feel the taste? It's yummy! It always cheers me up after a hard day of work. Now that I think about it… if I want to stay here every week without returning every day, I'll have to grow my own garden, so I can grow my own vegetables, cereals and fruit! There's also a bit of wheat around, perhaps I can try to make bread!</p>
<p>Bacab: Are you really planning on staying here for that long? It's dark outside, nighttime will be coming soon, and we can see you come from an outpost. This place can get cold at night, and there is no comfortable place to sleep in… you do not have to sacrifice so much of your time, Hear— Zyanya.</p>
<p>Zyanya: What sacrifice? Helping a friend isn't sacrifice to me! It's one of the things I care about the most, helping, caring, and assisting others. Even if you weren't my friend, I'd still do this for you, just like how you helped others, despite them not all being your friends, it's a desire that comes from your heart, something I won't ignore. But enough serious talk! You didn't answer my question silly, Is the quesadilla good?</p>
<p>Bacab: It has a rather warm and soft taste… or at least that is what your taste buds feel as of now. I do not understand why you decided to eat with me…</p>
<p>Zyanya: You haven't been able to experience many nice things, since you were made to protect, and I want to change that. Sharing food… is something special you know? Food is more tasty when it's made with love, and served with care, that is what mother used to tell me. Eating food on my own sometimes makes me lonely, because I always eat with the people I care about, so I will never make you feel lonely ever again! Even by sharing a warm quesadilla in this small room, I'm happy, because I know that you are experiencing something nice, something new! That's all that matters to me, that the people around me… are happy, sometimes i make people upset, sometimes bad things happen, but when it comes to spending time together… everything gets better, and it gives me strength to continue with my life. That is how I feel, sharing my food with you. I guess it can be considered a celebration for our friendship!</p>
<p>Bacab: …</p>
<p>[Zyanya feels a sudden warm feeling nearby, like someone was sitting close to her, Bacab probably simulated the feeling of him sitting close near her through their neurological bond]</p>
<p>You… are a special Heart. We don't understand most of these emotions, but we want to stay near you, We feel okay, near you. It is strange, but it's like we had a body that can feel comfortable in this moment… Is it okay…to see you, Zyanya as our friend? Would that be alright, for a machine to use this term?</p>
<p>Zyanya: Hey hey! I don't do distinctions here, machine, human or dog, you can be my friend, you are alive, Bacab, and the fact that you're made of metal will not take that away from you. You are just as alive as I am, and just as emotional and great! Sure it may take a little time for you to find your identity and see your worth… but I feel like I can help you achieve that!</p>
<p>[Zyanya finished eating, both the tamales and the quesadilla, so now she was cleaning up with a towel, then getting ready to exit]</p>
<p>Bacab: … It will be difficult to get used to the new mindset of you, our new Heart… but… we believe we understand, despite it still appearing illogic. Be careful during your preparations outside, Heart. the weather is humid and it's too dark outside, and various respiratory illnesses can be caught if you accidentally fall in the nearby water… we ask— humbly request, if you could at least return in a hour or two, before it gets too dark… it… it isn't imposed… of course.</p>
<p>Zyanya: Don't worry Bacab, I'm a quick worker, I'll just prepare the terrain today and plant a few veggies! Then tomorrow, while I decide what to repair next, I'll hunt for some fruit! Could you let me exit now? Pretty please?</p>
<p>Bacab: Understood, initiating exit procedure… Please take care.<br />
…</p>
</div>
</div>
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
</div>
</div>
<br />
<br />
<br />
<p>Zyanya spent a long time looking for fertile terrain near a river. Once she found some, she used her fingers to dig into it in order to plant some vegetables, she then watered her recently planted seeds and realized it was getting chilly.</p>
<p>"Brr… I should probably go back so I can sleep, it's getting cold in here…my poor hands!"</p>
<p>She sniffles slightly but reminds herself she just has to warm up, as she returns to the unit's cockpit.</p>
<p>The unit had some sort of temperature control system. Although it was not strong, it helped.</p>
<p>Zyanya put a pillow on the back of her head and wrapped a blanket around her before she spoke with Bacab again.<br />
<br />
<br /></p>
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">+ Show terminal</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
<div class="collapsible-block-content">
<div class="blockquote">
<p>Bacab: Welcome back, Zyanya, your bodily temperature has returned to normal. That is optimal to keep your health untouched,<br />
We suppose that you want to sleep in here, and if you do not change your mind, the unit will enter sleep mode when requested or when you fully fall asleep.<br />
Zyanya: Thank you Bacab, let's just both try to recover and relax after all of our efforts today. You must be feeling pretty drained, since you aren't used to the unit being turned on, after all it's been so long. I'm glad that I was able to start somewhere, and I promise you that it will only get better from here. I will never, give up on you, Bacab. It's a promise.<br />
[Zyanya felt further warmth around her]<br />
Oh are you laying near me Bacab? Hehe, are you worried I'll get too cold?<br />
Bacab: It is merely a warming up… feature installed in the unit, We absolutely didn't do this without command, it is automatic, that is the truth.<br />
Zyanya: Fine fine, "automatic" hug it is, silly. Tomorrow… tomorrow I will do my best, just as I always do… So don't give up, because I won't, because I'll bring you to the top of the tallest mountain one day… and you… You will be able to see the stars, and chase after them, and then you'll see a shooting star! They are the best!<br />
[She had then paused for a bit, smiling]<br />
Ahh, I'm talking too much, sorry, sorry, but I just know that it will happen one way or another. Some day… you will be able go walking and move again. You will be free, you and the unit…</p>
<p>Bacab: … Freedom… We had given up on that many centuries ago… but now… perhaps that is our destiny. If that is your wish, we will be by your side, until we both achieve freedom together… you are my Heart after all, and we are your Body. Perhaps we have always been bound to coexist. We believe in a future where everyone will reach freedom, if that is what you also believe in. It is all… in your hands, and… in ours. Fate really is bizarre.<br />
Zyanya: It really is… yet I believe that this event guided by fate has a meaning. Fate wouldn't have allowed our meeting, if it wasn't for a purpose. It's like the beginning of a path for us to tread. It's… special. It’s very late, hehe, I talked a bit too much again. Goodnight Bacab, tomorrow, it's time we start our path of fate. What will happen? I don't know. But I believe… that there will be a good ending, it's up to us to determine how it will be. Now… time to sleep.<br />
[Zyanya closed her eyes, the presence didn't leave her side]<br />
Bacab: Goodnight… Zyanya.<br />
Initiating sleep mode…<br />
…<br />
Powering… off…<br />
Remember… promise…<br />
Remember, Heart…<br />
Fate…<br />
Our… Fate<br />
We will protect our Fate…<br />
No matter what.<br />
…</p>
</div>
</div>
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">- Hide terminal</a></div>
</div>
</div>
<br />
<br />
<br />
<hr />
<div style="text-align: right;">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">Authors</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">Hide authors</a></div>
<div class="collapsible-block-content">
<p>[This tale is dedicated to <a href="/level-811">Level 811</a>, where i decided to make my own tale, regarding a possible way to restore the Titans back to their original state, along with wholesome bonding between the Heart and their AI companion, and perhaps future lore on the outcome of this mission!</p>
<p>[It wouldn't have been possible without the help I received from <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7331266&amp;size=small&amp;timestamp=1758126347" alt="SnomWriting" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7331266)" /></a><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;">SnomWriting</a></span>, which encouraged me to continue this project until I was able to finish this chapter, Stay tuned for more and thank you for reading]</p>
<p>Author of the story ~ <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/nikuchan" onclick="WIKIDOT.page.listeners.userInfo(8144627); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8144627&amp;size=small&amp;timestamp=1758126347" alt="Nikuchan " style="background-image:url(https://www.wikidot.com/userkarma.php?u=8144627)" /></a><a href="http://www.wikidot.com/user:info/nikuchan" onclick="WIKIDOT.page.listeners.userInfo(8144627); return false;">Nikuchan</a></span></p>
<p>Concepts, story ideas, help in character design, technical help <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7331266&amp;size=small&amp;timestamp=1758126347" alt="SnomWriting" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7331266)" /></a><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;">SnomWriting</a></span></p>
<p>Original author of <a href="/level-811">Level 811</a> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7331266&amp;size=small&amp;timestamp=1758126347" alt="SnomWriting" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7331266)" /></a><a href="http://www.wikidot.com/user:info/snomwriting" onclick="WIKIDOT.page.listeners.userInfo(7331266); return false;">SnomWriting</a></span></p>
</div>
</div>
</div>
</div>
<div class="licensebox">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">‡ Licensing / Citation</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">‡ Hide Licensing / Citation</a></div>
<div class="collapsible-block-content">
<p>Cite this page as:</p>
<div class="list-pages-box"> <div class="list-pages-item">
<blockquote>
<p>"<a href="/a-newfound-hope-in-level-811">A Newfound Hope In Level 811</a>" by Nikuchan , from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/a-newfound-hope-in-level-811">https://backrooms-wiki.wikidot.com/a-newfound-hope-in-level-811</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</p>
</blockquote>
</div>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>