-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha-diplomatic-exchange.html
More file actions
1045 lines (849 loc) · 56.8 KB
/
a-diplomatic-exchange.html
File metadata and controls
1045 lines (849 loc) · 56.8 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 Diplomatic Exchange - 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-diplomatic-exchange";
OZONE.request.timestamp = 1763648964;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "a-diplomatic-exchange";
WIKIREQUEST.info.pageId = 1458690721;
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 Diplomatic Exchange"/>
<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:bkr-new/0);
</style>
<style>
.translations img {
height: 1.1rem;
width: auto;
display: none;
margin: 2px;
}
.en img.enimg, .id img.idimg, .th img.thimg, .ko img.koimg, .tok img.tokimg, .ar img.arimg, .ru img.ruimg, .cn img.cnimg, .fr img.frimg, .de img.deimg, .ptbr img.ptbrimg, .vn img.vnimg, .pl img.plimg, vn img.vnimg, .es img.esimg, .it img.itimg, .ko img.koimg {
display: block;
}
.page-rate-widget-box.translations a {
text-decoration: unset;
color: unset;
background-color: unset;
padding: unset;
width: unset;
}
/* Custom Title Mod by Abdallah Amr Starts Here */
.page-rate-widget-box p {
margin-top: 0;
}
.page-rate-widget-box span {
font: inherit;
}
.page-rate-widget-box .title:not([class$="}"]) .translations-default {
display: none;
}
/*.page-rate-widget-box .title .translations-default {
display: block;
}*/
.page-rate-widget-box .title[class$="}"] .custom {
display: none;
}
</style>
<style>
.creditRate {
float: right;
}
</style>
<style>
#u-infobox {
opacity: 0 !important;
pointer-events: none;
will-change: opacity;
transition: 0.2s;
display: flex;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
position: fixed;
z-index: 20;
background-color: rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.5);
justify-content: center;
align-items: center;
}
#page-content div.rate-box-with-credit-button > .creditButton > p > a::after {
background-color: rgb(var(--swatch-primary));
}
#u-infobox:target {
opacity: 1 !important;
pointer-events: unset;
}
.infobox-title {
--wght: 800;
display: flex;
justify-content: flex-start;
margin: 0;
padding: 1.5ex 1.25rem;
background-color: rgb(var(--modal-header-bg, var(--swatch-primary-darker)));
background-image: linear-gradient(125deg,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 25%,transparent 25%,transparent 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 75%,transparent 75%,transparent 100%);
background-size: 3rem 4.35rem;
color: rgb(var(--modal-header-txt, var(--swatch-text-secondary-color)));
font-family: var(--header-font);
font-size: 1.5em;
font-weight: var(--wght);
line-height: 1ex;
text-transform: uppercase;
}
.infobox {
display: grid;
width: 60vw;
border: 0;
background-color: rgb(var(--modal-bg, var(--white-monochrome)));
box-shadow: inset 0 0 0 .125rem rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25),.5rem .25rem 1rem 0 rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25);
color: rgb(var(--modal-body-text, var(--swatch-text-general)));
}
.infobox-footer {
width: 100%;
margin: 1rem 0 1em;
padding: 1rem 1rem 0 0;
box-shadow: 0-.0625rem 0 0 rgba(var(--modal-header-stripe, var(--swatch-primary)),.2);
text-align: right;
}
.infobox-title p, .infobox-footer p {
all: unset;
}
.infobox-body {
display: grid;
margin: 0 1rem;
padding: 0;
}
</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 Diplomatic Exchange
</div>
<div id="breadcrumbs">
<a href="/charcon2025">Characterizacon2025</a> » A Diplomatic Exchange
</div>
<div id="page-content">
<p><iframe src="//interwiki.backroomswiki.cn/styleFrame.html?priority=2&type=sidebar&override=0&theme={$theme}&css={$css}" style="display: none"></iframe></p>
<div class="list-pages-box"> <div class="list-pages-item">
<div class="translations page-rate-widget-box cn" style="float:left; margin-top: -30px;">
<div class="title Languages:">
<p><span class="rate-points custom">Languages:</span><span class="rate-points translations-default">Languages:</span></p>
</div>
<br />
<a href="http://ar-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="https://cdn3.iconfinder.com/data/icons/142-mini-country-flags-16x16px/32/flag-saudi-arabia2x.png" class="arimg" alt="flag-saudi-arabia2x.png" /></a><br />
<a href="http://backrooms-wiki-cn.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick-3/china" class="cnimg" alt="china" /></a><br />
<a href="http://dach-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="https://cdn3.iconfinder.com/data/icons/142-mini-country-flags-16x16px/32/flag-germany2x.png" class="deimg" alt="flag-germany2x.png" /></a><br />
<a href="http://backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/uk" class="enimg" alt="uk" /></a><br />
<a href="http://es-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/spain" class="esimg" alt="spain" /></a><br />
<a href="http://fr-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/france" class="frimg" alt="france" /></a><br />
<a href="http://id-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick-3/indonesia" class="idimg" alt="indonesia" /></a><br />
<a href="http://it-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/italy" class="itimg" alt="italy" /></a><br />
<a href="http://backrooms-wiki-ko.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-wiki.wikidot.com/local--files/component:translations/KO" class="koimg" alt="KO" /></a><br />
<a href="http://pl-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/poland" class="plimg" alt="poland" /></a><br />
<a href="http://pt-br-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/portugal" class="ptbrimg" alt="portugal" /></a><br />
<a href="http://ru-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick-3/russia" class="ruimg" alt="russia" /></a><br />
<a href="http://th-backrooms-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick-3/thai" class="thimg" alt="thai" /></a><br />
<a href="http://backrooms-tok-wiki.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick-3/toki" class="tokimg" width="10px" alt="toki" /></a><br />
<a href="http://backrooms-vn.wikidot.com/a-diplomatic-exchange"><img src="http://backrooms-sandbox-2.wikidot.com/local--files/zenzick/vietnam" class="vnimg" alt="vietnam" /></a></div>
</div>
</div>
<div class="creditRate">
<div class="rateBox">
<div class="rate-box-with-credit-button"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+12</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 class="creditButton">
<p><a class="fa fa-info" href="#u-infobox"></a></p>
</div>
</div>
</div>
</div>
<br />
<div style="clear:both; height: 0px; font-size: 1px"></div>
<div id="u-infobox" style="z-index: 999;">
<div class="infobox">
<div class="infobox-title">
<p>Info</p>
</div>
<div class="infobox-body">
<div style="max-height: 60vh; overflow: auto; z-index: 999;">
<p>Written by: <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/positive123" onclick="WIKIDOT.page.listeners.userInfo(7564553); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7564553&amp;size=small&amp;timestamp=1760861685" alt="Positive123" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7564553)" /></a><a href="http://www.wikidot.com/user:info/positive123" onclick="WIKIDOT.page.listeners.userInfo(7564553); return false;">Positive123</a></span><br />
Critiqued by: <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/solomon-sam" onclick="WIKIDOT.page.listeners.userInfo(9304495); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=9304495&amp;size=small&amp;timestamp=1760861685" alt="Solomon Sam" style="background-image:url(https://www.wikidot.com/userkarma.php?u=9304495)" /></a><a href="http://www.wikidot.com/user:info/solomon-sam" onclick="WIKIDOT.page.listeners.userInfo(9304495); return false;">Solomon Sam</a></span> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/spectre48" onclick="WIKIDOT.page.listeners.userInfo(6247398); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=6247398&amp;size=small&amp;timestamp=1760861685" alt="Spectre48" style="background-image:url(https://www.wikidot.com/userkarma.php?u=6247398)" /></a><a href="http://www.wikidot.com/user:info/spectre48" onclick="WIKIDOT.page.listeners.userInfo(6247398); return false;">Spectre48</a></span> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/vixiepixie" onclick="WIKIDOT.page.listeners.userInfo(9557667); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=9557667&amp;size=small&amp;timestamp=1760861685" alt="Vixiepixie" style="background-image:url(https://www.wikidot.com/userkarma.php?u=9557667)" /></a><a href="http://www.wikidot.com/user:info/vixiepixie" onclick="WIKIDOT.page.listeners.userInfo(9557667); return false;">Vixiepixie</a></span> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/blueskiesabove" onclick="WIKIDOT.page.listeners.userInfo(9049486); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=9049486&amp;size=small&amp;timestamp=1760861685" alt="BlueSkiesAbove" style="background-image:url(https://www.wikidot.com/userkarma.php?u=9049486)" /></a><a href="http://www.wikidot.com/user:info/blueskiesabove" onclick="WIKIDOT.page.listeners.userInfo(9049486); return false;">BlueSkiesAbove</a></span> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/andromedeadreal" onclick="WIKIDOT.page.listeners.userInfo(9341056); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=9341056&amp;size=small&amp;timestamp=1760861685" alt="AndromedeadReal" style="background-image:url(https://www.wikidot.com/userkarma.php?u=9341056)" /></a><a href="http://www.wikidot.com/user:info/andromedeadreal" onclick="WIKIDOT.page.listeners.userInfo(9341056); return false;">AndromedeadReal</a></span> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/stixiiee" onclick="WIKIDOT.page.listeners.userInfo(8342633); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8342633&amp;size=small&amp;timestamp=1760861685" alt="Stixiiee" style="background-image:url(https://www.wikidot.com/userkarma.php?u=8342633)" /></a><a href="http://www.wikidot.com/user:info/stixiiee" onclick="WIKIDOT.page.listeners.userInfo(8342633); return false;">Stixiiee</a></span> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/liminaldoctor" onclick="WIKIDOT.page.listeners.userInfo(8559878); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8559878&amp;size=small&amp;timestamp=1760861685" alt="LiminalDoctor" style="background-image:url(https://www.wikidot.com/userkarma.php?u=8559878)" /></a><a href="http://www.wikidot.com/user:info/liminaldoctor" onclick="WIKIDOT.page.listeners.userInfo(8559878); return false;">LiminalDoctor</a></span></p>
</div>
<div class="infobox-footer">
<p><a class="button btn" href="###">Close</a></p>
</div>
</div>
</div>
</div>
<p>In front of the skyscraper stood Viktor Valentin, Master Administrator of the Eternal Repository, along with his guards. It was unusual to see Valentin travelling with his guards, but this time he decided it was important due to an invitation sent by the Backrooms Robotics earlier that day.</p>
<div style="padding:0.1rem 0.7rem;margin:0.5rem 0;background:#141718;border-radius:0.0rem;box-shadow: 0px 0px 1px;border: 3px solid #c48d0d;box-sizing:border-box;box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25);">
<p><strong>To the Master Administrator of the Eternal Repository,</strong></p>
<p>Greetings! This is an official invitation from the Backrooms Robotics for a meeting in the main Robotics Headquarters at <a href="/level-522">Level 522</a>.</p>
<p>To enter the level, please head to our headquarters at <a href="/level-11">Level 11</a>. In there, we will be present to guide you through how to enter the level!</p>
<p>~ Yellow, Head CEO of the Backrooms Robotics</p>
<p><em>Tomorrow's World for Today's People</em></p>
</div>
<p>The main entrance into the building led into a simple reception room. In the middle of the room stood a man dressed in a dark purple blazer. From a quick glance, Valentin immediately knew that that man was Yellow. Clearly, he had been waiting for them.</p>
<p><span style="color: #c48d0d">"Greetings."</span> Yellow said.</p>
<p><span style="color: purple">"Hello there."</span> Valentin replied.</p>
<p><span style="color: #c48d0d">"Now, you must be wondering why I sent you that invitation. Well, I am here to offer a proposal, one that would concern both of our groups' future."</span></p>
<p>Intrigued, Valentin replied, <span style="color: purple">"Very well then, do elaborate on it."</span></p>
<p><span style="color: #c48d0d">"Depending on how the meeting goes, your group will end up as one of the most formidable powers in all of the Backrooms, with access to all knowledge possible."</span></p>
<p><span style="color: purple">"…that's quite intriguing. Very well. I'm interested."</span></p>
<p><span style="color: #c48d0d">"How delightful. Shall we continue this in a more…secretive place?"</span></p>
<p><span style="color: purple">"I suppose I'll have to leave my men here, correct?"</span></p>
<p><span style="color: #c48d0d">"Indeed, unfortunately, I know your organization is secretive, but there are secrets, then there are <em>secrets</em>"</span></p>
<p><span style="color: purple">"Very well, then."</span></p>
<p>They strode into an elevator. Inside, Yellow pushed a combination of buttons in quick succession, so fast that Valentin could not keep track of what buttons he pushed. Then, the elevator moved.</p>
<p><span style="color: #c48d0d">"Good, this will bring us to our main headquarters,"</span></p>
<p><span style="color: purple">"Modified <a href="/entity-81">elevators</a>?"</span> asked Valentin.</p>
<p><span style="color: #c48d0d">"Yes. Back then, when we first moved our headquarters, frequent travel between here and there still had to be made. This was far too inefficient, so we captured an elevator and modified it to travel between these two levels."</span></p>
<p><span style="color: purple">"Nice to know."</span></p>
<p>Eventually, a dinging sound was heard. The elevator has just made its destination.</p>
<hr />
<p>Entrance to the <a href="/level-522">Backrooms Robotics Headquarters</a> found them in a room with walls completely infested with tangles of wiring. There were wires of many sizes and colors, twisting and turning all throughout the walls. A black paneled floor was put in place for them to stand on, but he could see several gaps in it with wires struggling and writhing through them like worms, as if the level was trying to pull it down.</p>
<p><span style="color: #c48d0d">"We should head for my office."</span> Yellow said, noting his discomfort. <span style="color: #c48d0d">"It's the only room in this place without any of these pesky wires."</span></p>
<p>Valentin knew that information already, but he thanked Yellow regardless. <span style="color: purple">"Let's go there, then. The wiring isn't too uninteresting as of the moment, but I have no doubt that I'll get bored looking at it soon."</span></p>
<p>The journey towards Yellow's outpost brought them through several rooms along the way as they twisted and turned along the maze of the level. Most of them were similar to the room they entered in, with cables completely enveloping the walls and springing up on the floor. Some of them were no thicker than a thread, while others were big enough to be mistaken for water pipes. Valentin could have sworn that several of these moved of their own accord.</p>
<p>Sounds could be heard too, with the clanking of metal and the buzzing of electricity and other noises getting louder the closer they got to Yellow's Headquarters. The flow of water was heard at one point along with the humming sound of a diesel engine. When Valentin asked Yellow about the noise, he responded with, <span style="color: #c48d0d">"You'll find out later."</span></p>
<p>Eventually, they came upon a plain black door. <span style="color: #c48d0d">"Right, this is the place."</span> Yellow said.</p>
<p>The room behind the door was oddly plain for such an important location. A medium-sized mahogany table and 5 chairs were positioned in the middle of the room, with a smaller desk and a chair on the left wall. On the desk was a computer and a ceramic cup. Meanwhile, the right wall was lined with a yellow bookshelf.</p>
<p>Yellow pulled out a chair. <span style="color: #c48d0d">"Have a seat,"</span> he said.</p>
<p>Valentin sat on the chair pulled by Yellow while giving some words of gratitude.</p>
<p><span style="color: purple">"So, what was the proposal you were talking about?"</span> asked Valentin.</p>
<p><span style="color: #c48d0d">"Ah, well, here's the deal. The Backrooms are a wild and dangerous place, and we've sought to tame it. But we aren't able to do it alone. There are also some groups, such as the Amor Incrementum and the Reverence that oppose this kind of development. I need information about several of their bases, which you should be able to deliver on."</span></p>
<p><span style="color: purple">"If I do deliver, what would I get out of it?"</span> Valentin asked. He could definitely manage that; the files of the Repository had contained information about these two groups, but he had to get a good deal if he were to trade them out.</p>
<p><span style="color: #c48d0d">"In exchange, all their assets and information obtained by us will be transferred to your group. Hopefully that should suffice, right?"</span></p>
<p><span style="color: purple">"But where is the part where we become 'one of the most formidable powers in all of the Backrooms, with access to all knowledge possible'? Both of these groups are certainly powerful, but we are already more powerful than them combined!"</span></p>
<p><span style="color: #c48d0d">"…this will require you to see for yourself. Mind if you close your eyes for a bit? Some things are not meant to be seen."</span></p>
<p><span style="color: purple">"And I assume you won't pull any tricks on me while I have my eyes closed?"</span></p>
<p><span style="color: #c48d0d">"I will most certainly not!"</span> Yellow said, with an outrageous tone. <span style="color: #c48d0d">"I swear I will keep you safe as long as you are in this level."</span></p>
<p><span style="color: purple">"How do I know you're not lying to me at this moment?"</span></p>
<p><span style="color: #c48d0d">"Well, if I did do that, and news of it broke out, which it always does, it would set a precedent that us Robotics are treacherous, lying, murderous, scoundrels. This would not only sour the opinions of our consumers, it will also most likely result in the severing of all ties with us from other groups as well the total destruction of our legacy, which I don't want to happen."</span></p>
<p><span style="color: purple">"Fine, you make a good point. But just note that if this really is a trap, I have commanded the Repository to immediately go to war with Backrooms Robotics if neither I nor my guards have been seen for over 48 hours."</span></p>
<p>Yellow's eyes faltered for a moment before he regained his composure and said, <span style="color: #c48d0d">"No worries, your safety is our priority."</span></p>
<p>Valentin closed his eyes. He heard a beeping sound followed by squelches sounding like that of slime. <span style="color: #c48d0d">"Alright. You may open your eyes."</span> When he reopened his eyes, he noticed that the bookshelf on the right wall was missing, with a doorway in place of it.</p>
<p><span style="color: #c48d0d">"Let's go."</span> He said.</p>
<p><span style="color: purple">"How long has this thing existed?"</span> asked Valentin incredulously.</p>
<p><span style="color: #c48d0d">"We'll talk about it later."</span></p>
<p>And both men left the room.</p>
<hr />
<p>The secret door led out to a long corridor. Unlike the previous rooms Valentin had seen prior to entering the CEO's Headquarters, the corridor was not infested with wires. Instead, the walls of the corridor were bare white, lined with a few reinforced metallic doors. Behind them, Valentin could hear sounds of machinery, of the grinding of gears, of the clanking and the burning of metals and more.</p>
<p><span style="color: purple">"Now that we've left that room, may you please enlighten me on the door? I can trade several things for that piece of information,"</span> asked Valentin. Valentin did not like it when he could not see the full picture of something. It was akin to being blind, which to Valentin, was incredibly undesirable.</p>
<p><span style="color: #c48d0d">"Oh, don't fret. That wasn't the only entrance to here. It would have been impossible to keep it a secret, then."</span> Yellow said. <span style="color: #c48d0d">"Another entrance to here exists, and I will tell you if you agree to my proposal, free of charge."</span></p>
<p><span style="color: purple">"Very well, let's continue then."</span></p>
<p>As they traversed through the corridor, Valentin looked into several of these doors. Each of them had their own unique label. A door on the right side of Valentin was labeled "KOKO", while the door on the left side of Valentin was labeled "Rivechs".</p>
<p><span style="color: #c48d0d">"Testing rooms."</span> Yellow said, noting Valentin's gaze. <span style="color: #c48d0d">"The wiring is far too unstable for proper experimentation to take place, so we built these to solve that issue. But that isn't what I wanted you to know. Follow me."</span></p>
<p>The duo traversed the corridor, with the noises from the rooms following them. The noise of the machines grew louder, and sounds of screeching and buzzing could be heard. The screeching sounded worryingly human. Despite Valentin knowing that the Backrooms Robotics does not practice human experimentation, Valentin could not prevent himself from imagining live humans forced under experimentation in the rooms.</p>
<p>Soon, they reached a door labeled "TEM-1" in which Yellow stopped. <span style="color: #c48d0d">"We're here,"</span> he said. The door looked similar to any other door, but Yellow cautioned Valentin to stay away from it while he opened it.</p>
<p><span style="color: #c48d0d">"Pressure sensors."</span> Yellow said. <span style="color: #c48d0d">"No one should be standing in proximity to a person who is opening this door. Otherwise, an electrical blast will shoot out and kill them. No exceptions,"</span> he said as he inserted a card into a section of the wall left of the door. He then placed his right hand, then his left onto the same section. The door then flashed blue. <span style="color: cyan">"Please enter voice identification,"</span> a voice emanated from the door.</p>
<p><span style="color: #c48d0d">"This is Yellow, Head CEO of the Backrooms Robotics. Tomorrow's World for Today's People,"</span> Yellow responded.</p>
<p>A beeping noise emanated from the door. <span style="color: cyan">"Identification accepted."</span> The door then opened with a hiss. <span style="color: #c48d0d">"Done. All should be safe for you to enter now."</span> he said.</p>
<p><span style="color: purple">"Should?"</span> asked Valentin.</p>
<p><span style="color: #c48d0d">"Well, there was an incident a couple of years ago. We haven't had one since, though,"</span> Yellow replied.</p>
<p><span style="color: purple">"Somehow, I doubt it."</span></p>
<p>In the end, Valentin decided to take the risk and enter the room. No shocks were fired, thankfully. The room they entered was a large one, significantly bigger than he thought. The walls had a metallic tint, and the center of the room resembled a rocket hangar. An enormous metallic monstrosity hung from the ceiling, covered and lined in wires and with several pipes connected to it. Sparks flew out from the monstrosity, and the buzzing of electricity could be heard in the background along with the rushing of liquids from the pipes.</p>
<p><span style="color: #c48d0d">"That, my friend, is the <a href="/object-97">Everything Machine</a>,"</span> Yellow said. <span style="color: #c48d0d">"A device capable of doing anything you wish. From creating new items never before seen to opening new entryways to other levels and even…killing gods."</span></p>
<p><span style="color: #c48d0d">"If you agree to an alliance, you will have an ally that is capable of doing anything. This is how you will become one of the most formidable powers in the Backrooms. This is how you will have access to all information known to man."</span></p>
<p><span style="color: purple">"If you have a machine that can do anything, why ask for my help?</span> asked Valentin. <span style="color: purple">"Clearly it isn't complete at the moment, but if I were you, I'd hide that machine from everyone possible. You realize I could have leaked this information to anyone else, right?</span></p>
<p><span style="color: #c48d0d">"But you wouldn't, would you? The Repository never gives out information freely if it can be helped, instead trading it for an equivalent value. And information such as this is priceless! The only way you'll hand the information over is if some other group makes an Everything Machine of their own!"</span></p>
<p>Valentin nodded. Yellow was right. <span style="color: purple">"I assume that if I agree to your proposal, I will also provide information that would help the development of this machine, correct?"</span> he asked.</p>
<p><span style="color: #c48d0d">"Indeed. We definitely need development to be faster."</span></p>
<p><span style="color: purple">"Very well. I shall consider it."</span></p>
<p>And both men left the room where the monstrosity lay.</p>
<hr />
<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-diplomatic-exchange">A Diplomatic Exchange</a>" by Positive123, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/a-diplomatic-exchange">https://backrooms-wiki.wikidot.com/a-diplomatic-exchange</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>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">+ Embed citation as HTML</a><a href="javascript:;">- Embed citation as HTML</a></div>
</div>
<div class="colmod-content"><div class="list-pages-box"> <div class="list-pages-item">
<div class="code" style="user-select: all;">
<p><span style="white-space: pre-wrap;">"<a href="https://backrooms-wiki.wikidot.com/a-diplomatic-exchange">A Diplomatic Exchange</a>" by Positive123, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/a-diplomatic-exchange">https://backrooms-wiki.wikidot.com/a-diplomatic-exchange</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</span></p>
</div>
</div>
</div></div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>
</ul>
</div>
<hr />
<div class="content-separator" style="display: none:"></div>
<div class="content-separator" style="display: none:"></div>
<div class="content-separator" style="display: none:"></div>
<p>For more information about on-wiki content, visit the <a href="/licensing-master-list">Licensing Master List</a>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="page-tags">
<span>
<a href="/system:page-tags/tag/_cc#pages">_cc</a><a href="/system:page-tags/tag/_licensebox#pages">_licensebox</a><a href="/system:page-tags/tag/backrooms-robotics#pages">backrooms-robotics</a><a href="/system:page-tags/tag/charcon2025#pages">charcon2025</a><a href="/system:page-tags/tag/industrialization-canon#pages">industrialization-canon</a><a href="/system:page-tags/tag/tale#pages">tale</a><a href="/system:page-tags/tag/the-eternal-repository#pages">the-eternal-repository</a>
</span>
</div>
<div id="page-info-break"></div>
<div id="page-options-container">
<div id="page-info">page revision: 6, last edited: <span class="odate time_1760861685 format_%25e%20%25b%20%25Y%2C%20%25H%3A%25M%20%28%25O%20ago%29">19 Oct 2025 08:14</span></div>
<div id="page-options-bottom" class="page-options-bottom">
<a href="javascript:;" class="btn btn-default" id="edit-button">Edit</a>
<a href="javascript:;" class="btn btn-default" id="pagerate-button">Rate (<span id="prw54355">+12</span>)</a>
<a href="javascript:;" class="btn btn-default" id="tags-button">Tags</a>
<a href="/forum/t-17062902/a-diplomatic-exchange" class="btn btn-default" id="discuss-button">Discuss (7)</a>
<a href="javascript:;" class="btn btn-default" id="history-button">History</a>
<a href="javascript:;" class="btn btn-default" id="files-button">Files</a>
<a href="javascript:;" class="btn btn-default" id="print-button">Print</a>
<a href="javascript:;" class="btn btn-default" id="site-tools-button">Site tools</a>
<a href="javascript:;" class="btn btn-default" id="more-options-button">+ Options</a>
</div>
<div id="page-options-bottom-2" class="page-options-bottom form-actions" style="display:none">
<a href="javascript:;" class="btn btn-default" id="edit-sections-button">Edit Sections</a>
<a href="javascript:;" class="btn btn-default" id="edit-append-button">Append</a>
<a href="javascript:;" class="btn btn-default" id="edit-meta-button">Edit Meta</a>
<a href="javascript:;" class="btn btn-default" id="watchers-button">Watchers</a>
<a href="javascript:;" class="btn btn-default" id="backlinks-button">Backlinks</a>
<a href="javascript:;" class="btn btn-default" id="view-source-button">Page Source</a>
<a href="javascript:;" class="btn btn-default" id="parent-page-button">Parent</a>
<a href="javascript:;" class="btn btn-default" id="page-block-button">Lock Page</a>
<a href="javascript:;" class="btn btn-default" id="rename-move-button">Rename</a>
<a href="javascript:;" class="btn btn-default" id="delete-button">Delete</a>
</div>
<div id="page-options-area-bottom">
</div>
</div>
<div id="action-area" style="display: none;"></div>
</div>
</div>
<div id="footer" style="display: block; visibility: visible;">
<div class="options" style="display: block; visibility: visible;">
<a href="http://www.wikidot.com/doc" id="wikidot-help-button">Help</a>
|
<a href="http://www.wikidot.com/legal:terms-of-service" id="wikidot-tos-button">Terms of Service</a>
|
<a href="http://www.wikidot.com/legal:privacy-policy" id="wikidot-privacy-button">Privacy</a>
|
<a href="javascript:;" id="bug-report-button" onclick="WIKIDOT.page.listeners.pageBugReport(event)">Report a bug</a>
|
<a href="javascript:;" id="abuse-report-button" onclick="WIKIDOT.page.listeners.flagPageObjectionable(event)">Flag as objectionable</a>
<span id="consent-box" style="display:none">
|
<a href="javascript:;" onclick="window.__cmp('showModal');">Update cookie settings</a>
</span>
<script>
if (window["nitroAds"] && window["nitroAds"].loaded) {
document.getElementById("consent-box").style.display = window["__tcfapi"] ? "" : "none";
} else {
document.addEventListener(
"nitroAds.loaded",
() =>
(document.getElementById("consent-box").style.display = window["__tcfapi"] ? "" : "none")
);
}
</script>
</div>
Powered by <a href="http://www.wikidot.com">Wikidot.com</a>
</div>
<div id="license-area" class="license-area">
Unless otherwise stated, the content of this page is licensed under
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 License</a>
</div>
<div id="extrac-div-1"><span></span></div><div id="extrac-div-2"><span></span></div><div id="extrac-div-3"><span></span></div>
</div>
</div>
<!-- These extra divs/spans may be used as catch-alls to add extra imagery. -->
<div id="extra-div-1"><span></span></div><div id="extra-div-2"><span></span></div><div id="extra-div-3"><span></span></div>
<div id="extra-div-4"><span></span></div><div id="extra-div-5"><span></span></div><div id="extra-div-6"><span></span></div>
</div>
</div>
<div id="dummy-ondomready-block" style="display: none;" ></div>
<!-- Google Analytics load -->
<script type="text/javascript">
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);