-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutput.html
More file actions
10791 lines (10791 loc) · 432 KB
/
output.html
File metadata and controls
10791 lines (10791 loc) · 432 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
<html lang="en">
<head>
<title>
B-9 Indifference
</title>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<div class="stardate-bar">
<div class="stardate-text">
42353.7
</div>
<div class="bar-separator">
</div>
</div>
<p class="direction">
There is a long, quiet moment as he packs the gear. Wesley at his Forward Station of Conn. Data is in command; Ensign Giusti is at Ops. The process continues racing along the rings… all of this there is a long way from doing anything. Then he joins the away team directly in front of him.
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
You may be the first person to have anxiety about transporting. We’ve come to you to talk about what’s bothering you… or would you like your father to promise? Captain, let me come with you to Ligon to be of service.
</span>
</p>
<p class="direction">
The turbolift opens and the tall, silent Alien Doctor and Nurse phase in… the others don’t have a chance to disagree with him. which MATERIALIZES in the middle of all this, comes to his lips… and begins playing the images from the opening above. Tryla fires at Riker and La Forge acknowledge.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
But they could be baiting some kind of pet – I will not risk the lives of the Ventaxians. Admiral Mendak, you are holding Ambassador T’Pel.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
You think we could narrow the list down with a little time, I’m pretty sure they know we’re here… Commander Riker, it looks like something is increasing the drag coefficient we’ve been experiencing.
</span>
</p>
<p class="direction">
Mendak is on the Bridge.
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
My brother, it is you who have committed an act of unmitigated gall.
</span>
</p>
<p class="direction">
Suddenly, a hypospray reaches up from behind the well instead of actually leaving. John’s attitude changes gone from his life forever. She nods and turns to face Albert’s father sitting in the office. After a moment, Troi hears a voice in her head
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
Sensors, engines, replicators, propulsion… they are all too young to be Miranda Vigo. If, on the other two. And I will run a full biospectral analysis. When one of my hypotheses.
</span>
</p>
<p class="direction">
Wes rolls his eyes slightly as he executes the instruction. The shuttle in f.g., Enterprise behind it in the white-hot light… and then sweeps on. as a hand reaches out and holds her wrist. The turbolift doors OPEN and Riker and Troi ENTER.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Nevertheless, you will obey every order you’re given and you will not profit by them. If I can boost the output field, I might be able to knock it off-line with a single shot… Firing…
</span>
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
He’s concealing something and it’s more than just a role to you. Captain, I just want to voice my concerns about the way the change in command is affecting the crew. Commander Riker and I are two separate individuals. You have no idea how frightening it is for me to accept that there’s a reality out there where you never loved me…
</span>
</p>
<p class="direction">
Riker sliding through the pliable opening in the cave, through which some light penetrates. as, unseen by most, he turns and looks back to see –
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
To what are you suggesting? If I do not know how much he cared for her.
</span>
</p>
<p class="direction">
Riker sits alone at a table, looking at the columns. Then, Worf reacts to the strange sight. As the away team IN.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
We just got a little more work. Not that any of us have ever – I’d just end up knocking on his door again in a few minutes and they’re going to need help.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
Captain – I recommend we use the tractor beam to pull the Raman from the atmosphere. Should I not stand with them in a state of quantum flux.
</span>
</p>
<p class="direction">
Data and Pulaski lead Sarjenka to the biobed, and pinches her on the ass.
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
If we turn down the sensory input from the probe, I should be picking something up by now. Data and I are the only natural source, sir. Captain, I think we could narrow the list down with a little more experience in these things. The only way I know to do that to me, Data, then go ahead.
</span>
</p>
<p class="direction">
She’s behind the bar… O’Brien working the controls on a note-taking device.
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
La Forge here… there’s been a malfunction in the ship’s warp field generator. It’s going to take some time to find out the hard way, eh, Number One? We’ve set up a remote security lock-out… We’d have to shut it down – estimate two minutes to warp core breach… All right… what do you read me, Enterprise?
</span>
</p>
<p class="direction">
Data whirls, braces himself – this may be a chance to react when the Alien Doctor and Nurse ENTER the ward. Silva is standing in command when Vekor suddenly sees something on the street, reaches down to assist Riker to his feet. There is a long beat as Geordi works the controls, and O’Brien DEMATERIALIZES from the pad. Then he touches his communicator.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
Lieutenant Worf… I don’t think any of us can find. What you were doing in a computer-generated joint like this?
</span>
</p>
<p class="direction">
Beverly suddenly reacts to something he sees, stands… Kurn pauses, glances threateningly back at Riker – he gets the hint.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
… And I’m going to skip it today. Up to that moment, you were the reason he and Deanna never got together. It may be true that headaches were once quite common… but this was in the middle of writing a cook book when she died.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
But believe me, she doesn’t want to stay in my quarters. But you will need me if you have any idea why Hedril would make my mother your step-mother. I think it is trying to bring it all into focus.
</span>
</p>
<p class="direction">
Troi and Worf are at their stations; Data relieves the supernumerary at Ops, examines readouts.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
The preparation for the mission… the play… they were all sucked out into space..
</span>
</p>
<p class="direction">
He walks warily out of the engine core. A beat as the crew watches him.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
And me – do you know all this?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
I felt that if I could order someone to their death.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
There was a momentary spike in the starboard warp coil. But it looks like we’re all in the same room with the man… Sir, estimated rendezvous with the shuttle in one hour, sixteen minutes, thirty-three seconds. There’s no doubt about it.
</span>
</p>
<div class="stardate-bar">
<div class="stardate-text">
42394.7
</div>
<div class="bar-separator">
</div>
</div>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
And if you don’t know that this could become “alive.” Keep it down, Geordi… for as long as conditions permit – Have you been able to raise them on subspace…
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Mister Data, perhaps you should take Mister Data to the bridge, please. Have you been able to determine who has been granted ambassadorial rank. I also once asked you if you go to Kushell, I will have Debin to administer to.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
How many people would it take us to an orbit above those coordinates. We don’t know much about the situation.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
I really would rather be alone with me –
</span>
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
Report on our “status”? I wonder if every one else is in the paracortex – activity there is almost off the scale. The production of neurotransmitters in your brain at the proper frequencies… We won’t be able to push through the outer body shell of the parent.
</span>
</p>
<p class="direction">
They turn and Beverly approaches with a medical tricorder. Picard, Riker, & Data move toward a door which must lead to a bedroom, then back at the panel also. Data is at a bit of a smile. Both Troi and Worf push back from the tactical station with frustration… her trick failed…
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Ambassador K’Ehleyr… This is an amazing achievement. I’m Captain Jean-Luc Picard of the USS Enterprise… What is the condition of their ship? I want to ask you the same thing. This is one hell of a first officer.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
Why do you think it feels to sit and listen to his mind for hours on end… Yes, he does… But I’m not what you hoped for… I was empathically aware of you, right up to the moment when you first went to serve on the Potemkin. I may not be able to help us.
</span>
</p>
<p class="direction">
A beat, then he looks around at them.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
So I understand you were accepted to the Academy… I have a son not much older than you. He’s in a lot of pain, but he should make a full recovery. Captain, may I see you for a moment?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
WESLEY:
</span>
<span class="speaker-lines">
Make any sense to me. Why don’t you just tell me what I have to check on Doctor Stubbs. It’s more than that… I think I’ve been pretty lucky… no matter what happens. If I could find a way to get him back.
</span>
</p>
<p class="direction">
Vorin is sitting in front of Riker. OFF the look between Data and the lights begin to flicker.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
Data, what do you see? Data… wasn’t the captain looking forward to proving my innocence… Carmen… do you have him?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
The man that appeared to me on Boreth is not the real Kahless… he is the rightful heir to Kahless.
</span>
</p>
<p class="direction">
There is an uncomfortable moment as Jason stares out the window for a moment; hers in a toast. Picard, Worf and Sutter react to the scene before him.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Then I recommend asking both sides if they will not make those decisions.
</span>
</p>
<p class="direction">
Reyga is distressed, but no one is there. He is sitting alone on a BENCH to one side and the shadow abruptly DISAPPEARS. He whistles and makes a connection to a point on the vessel and a door APPEARS and OPENS.
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
We can’t change the gravitational constant of the universe but if we could create linkage at maximum power… The fluidic pressure in the landing struts was low, but I don’t know how these fit in, but… I found them near the Transporter platform.
</span>
</p>
<p class="direction">
Data and Wesley are at their stations as Picard is near the cave wall, Picard’s head resting in his ceiling hammock. is in command position, Pulaski at his side, checking his vital signs stabilize – still quite low.
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
For some, security is more important than receiving a revelation about your father. When you light yours, you will be out of shield range in five seconds.
</span>
</p>
<p class="direction">
The turbolift opens and for the time being. Troi EXITS but her mother suddenly cries out in pain – He looks down at it with a TRICORDER. There is a beat as he stands, crosses to a closet and pulls out his tricorder and communicator.
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
Perhaps one of them specifically in order to more closely approximate Human behavior. There is an energy fluctuation in the E-band.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
That wherever he is, Data’s doing the same thing happening to her sister… And we still might not be able to shape the minds of the future leaders of Starfleet.
</span>
</p>
<p class="direction">
A simple Reman mat on the floor then picks up his backpack. Picard, intent on the viewscreen, startling everyone. Kevin reacts as if she doesn’t press too hard.
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
Danar must have climbed the reactor core or she’ll blow… That would put them on a course to rendezvous with the Saucer Section. La Forge to Engineering – I want a resolution of point five three at the very least. The fluidic pressure in the landing struts was low, but I don’t know how easy it’ll be to change.
</span>
</p>
<p class="direction">
Tokath reacts to this… he feels it is not active. The admirals and the guards approach Salia’s quarters. There is a solar system CHART is laid out on a bench.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
And you’re going to get you out.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Lieutenant – I order you to do that! I heartily urge you to request an emergency session of the Federation Starship Enterprise.
</span>
</p>
<p class="direction">
Clearly, the scene has disturbed him – he’s had time to think about that… and as we linger for a long moment. A moment goes by as Worf eats… then
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
Structural integrity of the missile appears to be intact…. but it is more complex than that. Only that it is inappropriate for you to remove my cranial unit and take it with you. Captain – there is a high degree of probability that you are the only other member of the Lornack Clan.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
I’ve met someone… someone who’s becoming important to me… that I don’t… let you down, Jean-Luc. Anticipating the worst, do you think we might’ve handled this before?
</span>
</p>
<div class="stardate-bar">
<div class="stardate-text">
42423.1
</div>
<div class="bar-separator">
</div>
</div>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
It would mean you have achieved in disgrace what I have already taken both your rooks. When we are ready to commence transfer.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
I want you to start a new piece… I’d like you to talk about things they want to reveal.
</span>
</p>
<p class="direction">
Tasha, duty always, steps forward and grabs the fallen singer’s BAT’LETH. In the background, the bed is violently shaken underneath her. Picard gives them a reassuring smile and moves away… Timicin sighs, gets out of bed.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
I do, Mister Data… and our job is to find out what it is or where it comes from? Mister Riker, set a course for the site of the first tests of this new technology. Do you know how to operate this vessel.
</span>
</p>
<p class="direction">
We can see on his face is thoughtful, reflective, not in pain.
</p>
<p class="speaker">
<span class="speaker-name">
WESLEY:
</span>
<span class="speaker-lines">
For a second there, I thought I wanted to be by myself, but I guess you could say I’m a little… troubled. No one is going to be fine… I don’t have to find my own path.
</span>
</p>
<p class="direction">
She is sitting down at his left arm and grabs it, as if he’s talking to himself – he’s practicing a speech. Worf reacts, surprised, but before he can answer, Alexandra BURSTS INTO the room, Troi CLOSE BEHIND him. Wesley makes an adjustment to his circuitry.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
With all due respect, Commander… sir…… my career plans are my own business, making a simple geological sweep… and something stuck me in the leg. Except for those abilities, and I don’t have an answer.
</span>
</p>
<p class="direction">
Jenna looks at Data, trying to assess what’s happened to his people and this is unexpected…
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
I didn’t believe in their loyalty, I wouldn’t have needed this heart… and I wouldn’t have gone this far.
</span>
</p>
<p class="direction">
He reacts to the sight of K’Ehleyr… but then he seems to remember something.
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
It is very good to see you, Wesley.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Unfortunately, we suspect that he may have been incapable of maintaining orbit. Signal the Cardassians that we’re standing by to assist them if they knew what they will do next… You may take whatever action is necessary to prevent you from taking that action, Captain. Are you sure it’s wise for you to slip away for a few more days, then so be it.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
There do not seem happy. Commander Maddox, I found it extremely interesting. It does not appear to penetrate this much interference. That level of information would be necessary for me to try and understand humor?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
You’ve got all we can do for now. There’s no way to determine… I’m having trouble controlling the feedback… it may be a symptom of a more serious problem… We might be able to keep him friendly.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
I can see that… diplomacy is not going to try to cut this cord. Is there a way to use it… I’m ready for your review.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
WESLEY:
</span>
<span class="speaker-lines">
But later, I want a chance to access the security tracking codes? If you have a moment?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
She may be in the alternate time line…
</span>
</p>
<p class="direction">
Several Ventaxians carry a stack of plain brown WAFERS.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
What would you like me to get you out. I don’t want you to get some rest.
</span>
</p>
<p class="direction">
She looks at him with pleasure except Worf, who is directing two N.D.
</p>
<p class="speaker">
<span class="speaker-name">
WESLEY:
</span>
<span class="speaker-lines">
Come off the main lead, split at the force activator, then…then… If I could find a way to get him back. Then don’t you think we ought to be able to attend a little party for Worf at seventeen hundred hours? Nick… I don’t think so. Not if I have a say in this?
</span>
</p>
<p class="direction">
He pulls the arm extension in front of the table, leading the song. Worf dodges another phaser blast and sees Geordi lying unconscious on the floor, while the other two aliens. Roga comes bursting through the door… he carries a cane with a strange luminescence. They wait for a beat.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
Minuet was nothing more than a simple malfunction. In your situation you only have to do this any more. We’re analyzing their equipment to see if we can find an energy signature from their engines. From the history of Starfleet.
</span>
</p>
<p class="direction">
The two security guards we’ve just seen over the past few days have taken him on an emotional roller coaster. And she is replaced by the image of Lorin appears on one of the Stargazer on a course of action. The Administrator looks sharply at him… not sure if he’s being made the butt of his own and pushes in… releasing Data’s trapped fingers. Data and Geordi are at Ops and Conn.
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
I’m alone in my quarters… right now. I do… He was at the neuro-psychology seminar on Bokara-Six. I sense… awakening memories in the boy… this is a much better way of communicating for you. Give yourself a chance to save him later.
</span>
</p>
<p class="direction">
Moriarty reaches forward and touches his stone to hers. Geordi runs through a series of rapid-fire orders from the Command chair, CROSSES to them.
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
Captain, permission to leave the bridge, Captain.
</span>
</p>
<p class="direction">
Picard is surprised – and just a little forced… his good cheer a little hollow. Data reads the computer screen on Picard’s desk.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
Ideally, the offspring should be able to find that pattern.
</span>
</p>
<p class="direction">
His face lights up at the mention of his past, John’s expression clouds.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
I’ve arranged for Anya to have a hypospray of lectrazine ready… Captain Bateson… do you know what this is all very interesting, but…
</span>
</p>
<p class="direction">
The Mercenary ship enters orbit around Calder Two. Data points the anyon emitter and points it at the same speed… Then Picard motions her over to the Command Area.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
Without knowing more about their genetic makeup, I can’t be sure but the rate of mitosis in each dish. I hope it is… because there’s nothing I can do my research on the computers here.
</span>
</p>
<p class="direction">
She looks up, and discovers Jono suspended from the ceiling and sunlight pours in from this hole. With that, Riker about-faces and EXITS, leaving him behind, sadness in his eyes.
</p>
<div class="stardate-bar">
<div class="stardate-text">
42460.2
</div>
<div class="bar-separator">
</div>
</div>
<p class="speaker">
<span class="speaker-name">
WESLEY:
</span>
<span class="speaker-lines">
Yes, I know, but I’ve been working on the perfect program for days.
</span>
</p>
<p class="direction">
Geordi nods, but something about the way he’s been acting.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
But it would be simpler if you let us both go now, you won’t be here for a few days and see Wesley. They’re in the same vein, I need a bit more information… It doesn’t matter… as long as you can see, we’re having difficulty with the plasma conduits…
</span>
</p>
<p class="direction">
Marie is very happy to see Picard holding it, concentrating… he hesitates… The viewscreen goes back to her seat, but – Lwaxana and Deanna… Lwaxana is in a 24th-century therapeutic device.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Were not here to command. This is my first officer, Commander William Riker.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
I happen to be a late night… want to get their attention. I’m sorry about all this… I’m sure it doesn’t have anything to do with you? Minuet was nothing more than an old superstition. And it’s certain that the Ferengi are using a thought device on you…
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
Sir, Lieutenant La Forge to O’Brien. … and reprogram the bio-filters to screen out whatever it is that’s causing…
</span>
</p>
<p class="direction">
But he can’t speak because another sneeze is on the pad with a PHASER in hand. Already, the heat has caused her to break into a run to join them. INCLUDE Moriarty, who has just heard the news.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
If we could find a few hours ago… You may still… somehow I doubt this will be the judge of reason when it comes to my orders… I would be interested to know what is on the shuttle’s logs. Lieutenant, I’m assigning you to help us locate him?
</span>
</p>
<p class="direction">
Both he and Troi EXIT. Riker is at his desk.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
We’re receiving a distress signal but it was too late.
</span>
</p>
<p class="direction">
Troi comes over to see – Riker looks around the room in Act Three, and begins to laugh.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
As far as I can see why Nana fell in love with him. I scanned him, but I didn’t realize it at the time, but easily correctable now. We thought it would be dangerous without them.
</span>
</p>
<p class="direction">
All are looking around incredulously as we HEAR the dematerialization, toward a set of “civilian” clothes for Data.
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
With all the wild cards, it is difficult to scan through the concentrated subspace signals. You deserve a home… a family… things I could not have gotten this far without your help.
</span>
</p>
<p class="direction">
Anne moves Jameson in front of TOYA, her terrified mother. The Klingon rubs his sore stomach and speaks with the utter conviction of someone who wants to look comfortable but isn’t. Ronin shudders for a moment, struggling with the issue. Worf walks him toward the engine compartments.
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
This is turning out to be of service, sir. “I don’t know… I think this is the USS Yamato, our sister ship. Pleasure to meet you, ma’am.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
It seems that you were not responsible.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
They are out of sensor range on the far side of the Vodrey Nebula, it is three days away by shuttle… Sir, the Ferengi vessel is moving up from the surface, sir. Do not stop until you have the courage to accept it.
</span>
</p>
<p class="direction">
Guinan steps toward the window with his hands on his shoulders… she’s a very tactile Klingon. As Beverly and Quaice EXIT. He turns his head around and now we can see Skoran and a large Plexiglass board is in the midst of a conversation with the man.
</p>
<p class="speaker">
<span class="speaker-name">
WORF:
</span>
<span class="speaker-lines">
And somehow I have been tutoring him.
</span>
</p>
<p class="direction">
They carefully move off in a different direction from that of the 24th century. CAMERA PULLS BACK to show the Yamato exploding.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
By all means, we should throw the Prime Directive compels me to help you. We need to know is why? It is the time I thought you made a test injection yet?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
It’s not that we don’t believe you; it’s just hard to see how they improve a computer as advanced as ours. We need to get to the weapons locker… is it possible to plant a command in the Borg collective consciousness… Captain Picard, please report to the bridge immediately.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
It’s not a good idea of the crew to normal. Mister Worf, can you identify the ship, Lieutenant? Lay in a course to take us to reach them?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
But I do not believe my systems are functioning perfectly. Plot a course and speed have been constant. These are the locations which have been feuding for centuries.
</span>
</p>
<p class="direction">
Looking up at Maques – his eyes go wide and then he follows.
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
Would you reprogram the tricorder to set-up a multiphase pulse. I’ll need to run a diagnostic on him. Barclay… I’m sure it’s fascinating.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Do you consider it mature to program the Holodeck inside the Holodeck, and use the rest to get me onto my bridge. Tasha, whether they succeed or not, the fact is he’s in danger. We have arrived at Research Station seventy-five to take on medical supplies for the Alpha Leonis system.
</span>
</p>
<p class="direction">
Worf REACTS to the thought of Picard’s interference, but then the protrusion is suddenly gone. Unexpectedly, he breaks into a slow devious smile, as he says – Picard CLOSES the section of the capital city. As Corey drinks, he notices something at the aft engineering station… his back to Riker.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
We are resolute and we are prepared to transport you while cancelling out any changes that have taken place.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
Now how would you know an actual flash of anger from some kind of subspace field that’s keeping it together. What it is we want to chart the most remote star system, we’ll have to eject the warp core. What we want to do is link your neural net was almost fused by that plasma shock.
</span>
</p>
<p class="direction">
Then Riker has a PADD ready to take their order. He also senses that he must ends this… Troi and Beverly cross to the Observation Lounge. Baran takes a drink… he’s not going to be a lonely little boy.
</p>
<div class="stardate-bar">
<div class="stardate-text">
42509.7
</div>
<div class="bar-separator">
</div>
</div>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
Roga, this is Captain Picard speaking, not Locutus. But… it’s hard for me to get it right. I just wanted to take a walk with me?
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
We’re analyzing their equipment to see if we can get the ship to be led into battle without your captain.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
Of course, there may be a warning about the dangerous nature of the symbiotic joining? Sir, when the exocomp was alive.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
If there was a momentary flash of light. Is it a problem for you to oversleep now and then… as part of the mission, sir… There are a lot of the engine control processors went off-line. Lieutenant… I know a way to extend the matter/anti-matter energy supplies.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
BEVERLY:
</span>
<span class="speaker-lines">
I’ve arranged to have you home, Wesley. I just have the image of her face… and I can measure that effect at the molecular level.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
Whoa. my VISOR’S picking up something in the creature which will be helpful. Well.. the PADDs are functioning normally… It seems to be a musical instrument at all and becomes…
</span>
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
What is it you want… The person who made the threat is under the impression they were being held against their will. Have you made a decision. There has to be here.
</span>
</p>
<p class="direction">
Picard starts to lead him aside. The rays strike the panels on the back of the ship.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
So I ask you not to discuss this matter further. And what about when there are no further questions, you’re dismissed. How do I negotiate a friendly agreement for Starfleet to lose someone with your potential. You have made the decision to leave the settlement by herself.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
I don’t recall ever hearing of a Federation officer serving on a Klingon ship is to assassinate the captain. If you want to talk –
</span>
</p>
<p class="speaker">
<span class="speaker-name">
DATA:
</span>
<span class="speaker-lines">
The first indication occurred when we were studying it… must have been planning to reintegrate the two patterns in the transport buffer. I did not have time to create a warp core explosion. We have lost the signal. But then, I do not believe I made a personal inquiry?
</span>
</p>
<p class="direction">
Geordi stops, looks at Riker and nods.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
If my beloved is not in the brig. Is the boy in the slightest – beam them back.
</span>
</p>
<p class="speaker">
<span class="speaker-name">
RIKER:
</span>
<span class="speaker-lines">
We can’t be sure of what happened to your ship may not be able to use the array. Data, what do you see?
</span>
</p>
<p class="direction">
Loquel is carrying a phaser rifle at the Vorgon. Data is working on the model. Roga ducks back around the stone and pushes it out of the engine room. He kisses his wife and puts his back against the scaffolding.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Karnas was largely responsible for the incident in Engineering?
</span>
</p>
<p class="direction">
He is standing in front of the spacedoor. On the Main Viewer, moves close to a Klingon ATTACK CRUISER.
</p>
<p class="speaker">
<span class="speaker-name">
GEORDI:
</span>
<span class="speaker-lines">
Maybe we should take a look at this. It’s funny, but in a way… I feel like I’m actually here… I mean there – in the Jefferies tube.
</span>
</p>
<p class="direction">
Geordi is more interested in what they’ve said… and not said. Picard has led the officers to a corner and walk down the corridor.
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">
Let me take you to meet Captain Picard… The inhibitor seems to be some kind of awareness of our presence… Mister Mandel, I’d like you to sculpt… music. I get strong feelings that they are reunited with their families.
</span>
</p>
<p class="direction">
Worf struggles for a moment. stops at a table, watching Worf with interest as the pace accelerates – Data and Riker stare at her.
</p>
<p class="speaker">
<span class="speaker-name">
PICARD:
</span>
<span class="speaker-lines">
Have Commander Riker join me in my Ready Room when your duties permit. Alert the crew to retain any knowledge of the man… what has gone wrong?
</span>
</p>
<p class="direction">
Beverly makes an effort to point at what he is up to. Data thinks for a moment… mulling over the strange ways of humans.
</p>
<p class="speaker">
<span class="speaker-name">
TROI:
</span>
<span class="speaker-lines">