-
Notifications
You must be signed in to change notification settings - Fork 2
/
chapter3.js
1285 lines (1282 loc) · 30.3 KB
/
chapter3.js
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
chapters[3] = {
0: {
'info': "You log in to the network."
,'options-text': {
0:"Spoof MAC address and run proxy algo"
}
,'options-redirect': {
0:1
},
'update': function(){
playAudio(8);
document.body.style.backgroundColor = "#000";
document.body.style.color = "#fff";
drawCanvas3(document.getElementById('top'), false);
pingbitch1 = false;
pingbitch2 = false;
}
},
1: {
'info': "You get your connection spoofed and proxied. Now what?"
,'options-text': {
0:"Check Y€ boards",
1:"Check for encoded messages",
2:"Ping bitch1",
3:"Ping bitch2",
4:"Porn"
}
,'options-redirect': {
0:2,
1:3,
2:function(){ return (pingbitch1?4:5) },
3:function(){ return (pingbitch2?6:7) },
4:8
}
},
2: {
'info': "Nothing new at the Y€ boards."
,'options-text': {
0:"Check for encoded messages",
1:"Ping bitch1",
2:"Ping bitch2"
}
,'options-redirect': {
0:3,
1:function(){ return (pingbitch1?4:5) },
2:function(){ return (pingbitch2?6:7) },
}
},
3: {
'info': "No new messages."
,'options-text': {
0:"Check Y€ boards",
1:"Ping bitch1",
2:"Ping bitch2"
}
,'options-redirect': {
0:2,
1:function(){ return (pingbitch1?4:5) },
2:function(){ return (pingbitch2?6:7) },
}
},
4: {
'info': "What's the point of pinging him again?"
,'options-text': {
0:"Check Y€ boards",
1:"Check for encoded messages",
2:"Ping bitch2"
}
,'options-redirect': {
0:2,
1:3,
2:function(){ return (pingbitch2?6:7) },
}
},
5: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:9
}
,'update': function(){
pingbitch1_1_ch3(document.getElementById('comic'));
pingbitch1 = true;
}
},
6: {
'info': "No use pinging him again, he's not online..."
,'options-text': {
0:"Check Y€ boards",
1:"Check for encoded messages",
2:"Ping bitch1"
}
,'options-redirect': {
0:2,
1:3,
2:function(){ return (pingbitch2?4:5) },
}
},
7: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:11
}
,'update': function(){
pingbitch2_1_ch3(document.getElementById('comic'));
pingbitch2 = true;
}
},
8: {
'info': "Seriously? You really think your hands should be handling other things right now?"
,'options-text': {
0:"Check Y€ boards",
1:"Check for encoded messages",
2:"Ping bitch1",
3:"Ping bitch2"
}
,'options-redirect': {
0:2,
1:3,
2:function(){ return (pingbitch1?4:5) },
3:function(){ return (pingbitch2?6:7) },
}
},
9: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:12
}
,'update': function(){
pingbitch1_2_ch3(document.getElementById('comic'));
}
},
10: {
'info': "You could drop a message on the boards to get others to be on the lookout for bitch2. Someone must have access to Jap surveillance decoders..."
,'options-text': {
0:"Write message"
}
,'options-redirect': {
0:18
}
},
11: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply",
1:"Quit Session"
}
,'options-redirect': {
0:14,
1:16
}
,'update': function(){
pingbitch2_2_ch3(document.getElementById('comic'));
}
},
12: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit session"
}
,'options-redirect': {
0:13
}
,'update': function(){
pingbitch1_3_ch3(document.getElementById('comic'));
}
},
13: {
'info': "Bitch1 hasn't seen him either. What now?"
,'options-text': {
0:"Check Y€ boards",
1:"Check for encoded messages",
2:"Ping bitch2"
}
,'options-redirect': {
0:2,
1:3,
2:function(){ return (pingbitch2?6:7) },
}
},
14: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply",
1:"Quit Session"
}
,'options-redirect': {
0:15,
1:16
}
,'update': function(){
pingbitch2_3_ch3(document.getElementById('comic'));
}
},
15: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit Session"
}
,'options-redirect': {
0:16
}
,'update': function(){
pingbitch2_4_ch3(document.getElementById('comic'));
}
},
16: {
'info': "If they double-backed to bitch2's place that means they haven't got him yet. But apparently they managed to get him banned. They had been threatening to do so all along. That's what you came to Japan to prevent. Big brother will now be looking for your bitch2. You need to move fast!"
,'options-text': {
0:"Check Y€ boards",
1:"Ping bitch1"
}
,'options-redirect': {
0:10,
1:17
}
,'update': function(){
pingbitch1 = false;
}
},
17: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:22
}
,'update': function(){
pingbitch1_1_ch3_2(document.getElementById('comic'));
pingbitch1 = true;
}
},
18: {
'info': "You write a message on the boards calling all Y€ hackers to help you save your bitch. You need to track him down before big brother gets to him. Want to attach his dox?"
,'options-text': {
0:"Attach dox",
1:"Don't attach dox"
}
,'options-redirect': {
0:19,
1:20
}
},
19: {
'info': "He's already exposed to the koreans, and they most probably already exposed him to big brother so it doesn't really matter if your hacker friends know his dox. Might help them track him down though."
,'options-text': {
0:function(){ return (pingbitch1?"Wait for replies":"Ping bitch1") }
}
,'options-redirect': {
0:function(){ return (pingbitch1?21:17) }
}
,'update': function(){
bitch_dox = true;
}
},
20: {
'info': "You decide not to publish the dox on your bitch. It's kind of hard for anyone to track someone down when they don't know who they are searching for. You'll never hear from your bitch again."
},
21: {
'info': "Waiting around was never your forte... But it's not like you know where to go if you log out either..."
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:24,
1:25
}
},
22: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit session"
}
,'options-redirect': {
0:23
}
,'update': function(){
pingbitch1_2_ch3_2(document.getElementById('comic'));
}
},
23: {
'info': "At this point the more eyes looking for bitch2 the better."
,'options-text': {
0:function(){ return (bitch_dox?"Wait for replies":"Check Y€ boards") }
}
,'options-redirect': {
0:function(){ return (bitch_dox?21:10) }
}
},
24: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:26
}
},
25: {
'info': "You log out and wander around town looking for your bitch. You never see him again."
},
26: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:27,
1:25
}
,'update': function(){
decode_message("Hei T. Sorry to hear about your bitch, i used to know a guy with some codes to the Japan transit surveillance system. I'll give him a ping and get back to you in a few. -- jstone");
}
},
27: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:48
}
},
28: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:29
}
,'update': function(){
pingjakim_2(document.getElementById('comic'));
}
},
29: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:30
}
,'update': function(){
pingjakim_3(document.getElementById('comic'));
}
},
30: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:31
}
,'update': function(){
pingjakim_4(document.getElementById('comic'));
}
},
31: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:32
}
,'update': function(){
pingjakim_5(document.getElementById('comic'));
}
},
32: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:33
}
,'update': function(){
pingjakim_6(document.getElementById('comic'));
}
},
33: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit session"
}
,'options-redirect': {
0:34
}
,'update': function(){
pingjakim_7(document.getElementById('comic'));
}
},
34: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:35
}
},
35: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:36,
1:25
}
,'update': function(){
decode_message("Hei again. Sorry, bad news. Seems my guy got flagged earlier this week, drones got him. Can't help you! -- jstone");
}
},
36: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:37
}
},
37: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Ping SAt0ri",
1:"Log out"
}
,'options-redirect': {
0:38,
1:25
}
,'update': function(){
decode_message("Heard you need Japanese eyes. Ping me if you can afford 5k to get them. -- SAt0ri");
}
},
38: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:39
}
,'update': function(){
pingsatori_1(document.getElementById('comic'));
}
},
39: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:40
}
,'update': function(){
pingsatori_2(document.getElementById('comic'));
}
},
40: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:41
}
,'update': function(){
pingsatori_3(document.getElementById('comic'));
}
},
41: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:42
}
,'update': function(){
pingsatori_4(document.getElementById('comic'));
}
},
42: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:43
}
,'update': function(){
pingsatori_5(document.getElementById('comic'));
}
},
43: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:44
}
,'update': function(){
pingsatori_6(document.getElementById('comic'));
}
},
44: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply",
1:"Quit Session"
}
,'options-redirect': {
0:45,
1:47
}
,'update': function(){
pingsatori_7(document.getElementById('comic'));
}
},
45: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit Session"
}
,'options-redirect': {
0:46
}
,'update': function(){
pingsatori_8(document.getElementById('comic'));
}
},
46: {
'info': "Things aren't looking so good. You feel so helpless in this position."
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:47,
1:25
}
},
47: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:50
}
},
48: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Ping Jakim",
1:"Log out"
}
,'options-redirect': {
0:49,
1:25
}
,'update': function(){
decode_message("Hello. You can try getting in touch with the krommers. They had some runners in Japan who were watching over big brother. They might still be pissed with Y€ over that mexico thing though. But ping Jakim, he might pull some strings. -- mfX");
}
},
49: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:28
}
,'update': function(){
pingjakim_1(document.getElementById('comic'));
}
},
50: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:51,
1:25
}
,'update': function(){
decode_message("Dear T5, i read you might require assistance in the matter of realtime Japanese surveillance interception on the risk of losing your bitch. Once a newb always a newb. -- nothing");
}
},
51: {
'info': "Where are all your hacker friends when you need them?"
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:52,
1:25
}
},
52: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:53
}
},
53: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Ping Jakim",
1:"Log out"
}
,'options-redirect': {
0:54,
1:25
}
,'update': function(){
decode_message("Jakim tells me you need some assistance. Ain't that a bummer?! Remember mexico? I do! -- kooi / krommers");
}
},
54: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:55
}
,'update': function(){
pingjakim_8(document.getElementById('comic'));
}
},
55: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit Session"
}
,'options-redirect': {
0:56
}
,'update': function(){
pingjakim_9(document.getElementById('comic'));
}
},
56: {
'info': "All you can do is wait..."
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:function(){ return (oxypadronamedival?74:57) },
1:25
}
},
57: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:58
}
},
58: {
'info': "<span id=\"decoded_message\"></span><br><br>What do you want to do now?"
,'options-text': {
0:"Ping jstone",
1:"Log out"
}
,'options-redirect': {
0:59,
1:25
}
,'update': function(){
decode_message("Can you hack level 5 bsd kernel ice? Just got reminded my guy left a couple private servers hanging around at a datacenter in Joansburg, might have some useful codes if you ice it and crawl it fast enough... -- jstone");
}
},
59: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:60
}
,'update': function(){
pingjstone_1(document.getElementById('comic'));
}
},
60: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Quit Session"
}
,'options-redirect': {
0:114
}
,'update': function(){
pingjstone_2(document.getElementById('comic'));
}
},
61: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:62
}
,'update': function(){
pingbitch1_1_ch3_3(document.getElementById('comic'));
}
},
62: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:63
}
,'update': function(){
pingbitch1_2_ch3_3(document.getElementById('comic'));
}
},
63: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:64
}
,'update': function(){
pingbitch1_3_ch3_3(document.getElementById('comic'));
}
},
64: {
'info': "You should be able to hack the machines up at Tork 5 if you get the zot access... Might take a while crawling for the codes to run the surveillance vulnerability though. If it hasn't been patched yet. If they are even there. Just have to wait for bitch1 to hook you up."
,'options-text': {
0:"Wait",
1:"Log out"
}
,'options-redirect': {
0:65,
1:25
}
},
65: {
'info': "One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:66
}
},
66: {
'info': "<span id=\"decoded_message\"></span><br><br>Could be just another scam. The hook up to the zot in Tork 5 is now also available. What do you want to do? Every second counts..."
,'options-text': {
0:"Ping SAt0ri",
1:"Follow zot hook to Tork 5"
}
,'options-redirect': {
0:67,
1:68
}
,'update': function(){
decode_message("Talked with partner. We can get you surveillance logs of last hour. Ping me if you can afford 15k to get them. -- SAt0ri");
}
},
67: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:69
}
,'update': function(){
pingsatori_9(document.getElementById('comic'));
}
},
68: {
'info': "It's never wise to trust strangers trying to sell you things on the internet. But hacking machines to look for codes which might not even be there just takes way too long. Hacking the machine was no problem, but by the time you found the codes and penetrated the Japanese surveillance system your bitch was already captured by drones."
},
69: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Reply"
}
,'options-redirect': {
0:70
}
,'update': function(){
pingsatori_10(document.getElementById('comic'));
}
},
70: {
'info': "<div id=\"comic\"></div>"
,'options-text': {
0:"Pay",
1:"Quit Session"
}
,'options-redirect': {
0:71,
1:72
}
,'update': function(){
pingsatori_11(document.getElementById('comic'));
}
},
71: {
'info': "You decide to pay. You handle the transaction and notify SAt0ri. Now all you can do is wait and hope he didn't rip you off... Or go for the Tork 5 run..."
,'options-text': {
0:"Wait",
1:"Hook up to Tork 5"
}
,'options-redirect': {
0:78,
1:68
}
},
72: {
'info': "What do you want to do?"
,'options-text': {
0:"Wait",
1:"Hook up to Tork 5",
2:"Log out"
}
,'options-redirect': {
0:73,
1:68,
2:25
}
},
73: {
'info': "You been waiting around for a miracle for far too long. Time to face reality, your second bitch is already gone. You failed him."
},
74: {
'info': "You\'re starting to feel a little lightheaded... One new message!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:75
}
},
75: {
'info': "<span id=\"decoded_message\"></span><br><br>You start to feel sick."
,'options-text': {
0:"Wait a moment",
1:"Log out"
}
,'options-redirect': {
0:76,
1:77
}
,'update': function(){
decode_message("Can you hack level 5 bsd kernel ice? Just got reminded my friend left a couple private servers hanging around at a datacenter in Joansburg, might have some useful codes if you ice it and crawl it fast enough... -- jstone");
brainfuck = true;
}
},
76: {
'info': "You're not quite sure what the hell is happening. But you do know this isn't normal. You are in no condition to stay logged in."
,'options-text': {
0:"Log out"
}
,'options-redirect': {
0:77
}
},
77: {
'info': "You log out and crawl into the fetal position, hoping that whatever this is might pass soon. You had never heard of adverse effects of Oxypadronamedival before. You had never heard of Oxypadronamedival at all until earlier today. Apparently it messes with your synapses, highly unrecommended for network runners such as yourself... You are in no condition to try to help your bitch anymore. Ain't that a bummer?"
,'update': function() {
document.body.style.backgroundColor = "#FFF";
document.body.style.color = "#000";
}
},
78: {
'info': "Only a few seconds have passed but it feels like hours. Are you really just going to sit and wait for these promised logs to fall on your lap 'sometime soon'?"
,'options-text': {
0:"Wait",
1:"Hook up to Tork 5"
}
,'options-redirect': {
0:79,
1:68
}
},
79: {
'info': "One new message! This better be it!"
,'options-text': {
0:"Decode"
}
,'options-redirect': {
0:80
}
},
80: {
'info': "<span id=\"decoded_message\"></span>"
,'options-text': {
0:"Take a look"
}
,'options-redirect': {
0:81
}
,'update': function(){
decode_message("Here are the Japanese transit surveillance system logs for the last hour. Pleasure doing business with you. -- SAt0ri");
}
},
81: {
'info': "Quite a lot of data. On first impression they seem legit. Better get your script crawling for relevant info."
,'options-text': {
0:"Crawl Data"
}
,'options-redirect': {
0:82
}
,'update': function(){
//playAudio(10);
}
},
82: {
'info': "You crawl the data looking for matches to bitch2... 2 hits!<br>Flagged for child pornography at 120613-540<br>Spotted at cam PA012 120613-551<br>Spotted at cam PA013 120613-552<br>Spotted at cam PA017 120613-552<br>Drone pursuit engaged 120613-553<br>Drone pursuit abandoned 120613-555<br>Spotted at cam YA007 120613-612<br><br>That was just a couple minutes ago."
,'options-text': {
0:"Locate cam YA007"
}
,'options-redirect': {
0:83
}
},
83: {
'info': "You run some scripts to locate cam YA007... Side street of Shin-Nihombashi Station... What will you do now? You have no time to lose!"
,'options-text': {
0:"Write on boards",
1:"Inform bitch1",
2:"Inform jstone",
3:"Inform Jakim",
4:"Inform SAt0ri",
5:"Log out"
}
,'options-redirect': {
0:84,
1:87,
2:88,
3:89,
4:90,
5:function(){ return (startch3inpodcab?85:86) }
}
},
84: {
'info': "You dump an update on the Y€ boards hoping for some backup."
,'options-text': {
0:"Log out"
}
,'options-redirect': {
0:function(){ return (startch3inpodcab?85:86) }
},'update': function(){
yhelp = true;
}
},
85: {
'info': "You log out and instruct the driver to take you to Shin-Nihombashi."
,'options-text': {
0:"Go to Shin-Nihombashi"
}
,'options-redirect': {
0:91
},'update': function(){
timehelp = true;
playAudio(9);