This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtitles.txt
1103 lines (903 loc) · 11.5 KB
/
titles.txt
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
//TITLES FOR HALF-LIFE
// Position command $position x y
// x & y are from 0 to 1 to be screen resolution independent
// -1 means center in each dimension
// Effect command $effect <effect number>
// effect 0 is fade in/fade out
// effect 1 is flickery credits
// effect 2 is write out (training room)
// Text color r g b command $color
// fadein time fadeout time / hold time
// $fadein (message fade in time - per character in effect 2)
// $fadeout (message fade out time)
// $holdtime (stay on the screen for this long)
//INTRO TITLES
// All centered for now
$position -1 -1
$effect 2
// This is the final color
$color 100 100 100
// This is the highlight color
$color2 240 110 0
// This is the time it takes to fade each character
$fadein 0.01
// This is the amount of time the highlight lags behind the leading edge of the text
$fxtime 0.25
// How long to hold the message on the screen (after it scans out)
$holdtime 3.5
// How long it takes to fade out the message after holding
$fadeout 1.5
CR27
{
Black Mesa Research Facility
Black Mesa, New Mexico
}
//INTRO CREDITS
// Test values -- JAY
// Lower left
$position 0.1 0.8
$effect 1
// Final fade-in color
$color 128 128 128
// This is the highlight/flash color
$color2 0 0 0
$fadein 1.5
$fadeout 0.5
$holdtime 1.2
CR1
{
Ted Backman
}
CR2
{
TK Backman
}
CR3
{
Kelly Bailey
}
CR4
{
Yahn Bernier
}
CR5
{
Ken Birdwell
}
CR6
{
Steve Bond
}
CR7
{
Dario Casali
}
CR8
{
John Cook
}
CR9
{
Greg Coomer
}
CR10
{
Wes Cumberland
}
CR11
{
John Guthrie
}
CR12
{
Mona Lisa Guthrie
}
CR13
{
Mike Harrington
}
CR14
{
Monica Harrington
}
CR15
{
Brett Johnson
}
CR16
{
Chuck Jones
}
CR17
{
Marc Laidlaw
}
CR18
{
Karen Laur
}
CR19
{
Randy Lundeen
}
CR20
{
Yatsze Mark
}
CR21
{
Lisa Mennet
}
CR22
{
Gabe Newell
}
CR23
{
Dave Riller
}
CR24
{
Aaron Stackpole
}
CR25
{
Jay Stelly
}
CR26
{
Harry Teasley
}
CR35
{
Steve Theodore
}
CR36
{
Bill Van Buren
}
CR37
{
Robin Walker
}
CR38
{
Douglas R. Wood
}
//END CREDITS
$position -1 -1
$effect 0
// Final fade-in color
$color 128 128 128
// This is the highlight/flash color
$color2 0 0 0
$fadein 0.5
$fadeout 0.5
$holdtime 4
VALVEIS
{
Valve is:
}
END1
{
Ted Backman
TK Backman
Kelly Bailey
Yahn Bernier
Ken Birdwell
Steve Bond
Dario Casali
John Cook
Greg Coomer
Wes Cumberland
}
END2
{
John Guthrie
Mona Lisa Guthrie
Mike Harrington
Monica Harrington
Brett Johnson
Chuck Jones
Marc Laidlaw
Karen Laur
Randy Lundeen
Yatsze Mark
}
END3
{
Lisa Mennet
Gabe Newell
Dave Riller
Aaron Stackpole
Jay Stelly
Harry Teasley
Steve Theodore
Bill Van Buren
Robin Walker
Douglas R. Wood
}
//INTRO TITLES
// All centered for now
$position -1 -1
$effect 2
// This is the final color
$color 100 100 100
// This is the highlight color
$color2 240 110 0
// This is the time it takes to fade each character
$fadein 0.01
// This is the amount of time the highlight lags behind the leading edge of the text
$fxtime 0.25
// How long to hold the message on the screen (after it scans out)
$holdtime 3.5
// How long it takes to fade out the message after holding
$fadeout 1.5
CR28
{
SUBJECT:
Gordon Freeman
Male, age 27
}
CR29
{
EDUCATION:
Ph.D., MIT, Theoretical Physics
}
CR30
{
POSITION:
Research Associate
}
CR31
{
ASSIGNMENT:
Anomalous Materials Laboratory
}
CR32
{
CLEARANCE:
Level 3
}
CR33
{
ADMINISTRATIVE SPONSOR:
Classified
}
CR34
{
DISASTER RESPONSE PRIORITY:
Discretionary
}
$fadein 0.03
$holdtime 9
GAMEOVER
{
SUBJECT: FREEMAN
STATUS: EVALUATION TERMINATED
POSTMORTEM:
Subject failed to effectively utilize
human assets in achievement of goal.
}
$fadein 0.03
$holdtime 9
TRAITOR
{
SUBJECT: FREEMAN
STATUS: HIRED
AWAITING ASSIGNMENT
}
$fadein 0.03
$holdtime 9
LOSER
{
SUBJECT: FREEMAN
STATUS: OBSERVATION TERMINATED
POSTMORTEM:
Subject declined offer of employment.
}
//CHAPTER TITLES
$fadein 0.01
$position -1 0.4
$holdtime 3.5
T0A0TITLE
{
HAZARD COURSE
}
$position -1 0.65
C0A0TITLE
{
BLACK MESA INBOUND
}
OPENTITLE3
{
}
OPENTITLE4
{
}
C0A1TITLE
{
ANOMALOUS MATERIALS
}
C1A1TITLE
{
UNFORESEEN CONSEQUENCES
}
C1A2TITLE
{
OFFICE COMPLEX
}
C1A3TITLE
{
"WE'VE GOT HOSTILES"
}
C1A4TITLE
{
BLAST PIT
}
C2A1TITLE
{
POWER UP
}
C2A2TITLE
{
ON A RAIL
}
C2A3TITLE
{
APPREHENSION
}
C2A4TITLE1
{
RESIDUE PROCESSING
}
C2A4TITLE2
{
QUESTIONABLE ETHICS
}
C2A5TITLE
{
SURFACE TENSION
}
C3A1TITLE
{
"FORGET ABOUT FREEMAN!"
}
C3A2TITLE
{
LAMBDA CORE
}
C4A1TITLE
{
XEN
}
C4A1ATITLE
{
INTERLOPER
}
C4A1BTITLE
{
}
C4A1CTITLE
{
}
C4A1ETITLE
{
}
C4A1FTITLE
{
}
C4A2TITLE
{
GONARCH'S LAIR
}
C4A3TITLE
{
NIHILANTH
}
C5TITLE
{
ENDGAME
}
// In-Game messages
$position -1 0.65
$effect 2
// This is the final color
$color 100 100 100
// This is the highlight color
$color2 240 110 0
// This is the time it takes to fade each character
$fadein 0.01
// This is the amount of time the highlight lags behind the leading edge of the text
$fxtime 0.25
// How long to hold the message on the screen (after it scans out)
$holdtime 2.0
// How long it takes to fade out the message after holding
$fadeout 0.5
GAMESAVED
{
Saved...
}
// Game title
// This is a placeholder to hold the effects controls for the "Half-Life" title
$position -1 -1
// Only effect 0 is supported for game title
$effect 0
// This is the final color
$color 180 180 180
// Not used color2
$color2 0 0 0
// This is the time it takes to fade in the title
$fadein 1.0
// How long to hold the message on the screen (after it scans out)
$holdtime 3.0
// How long it takes to fade out the message after holding
$fadeout 1.5
GAMETITLE
{
Half-Life
}
//HAZARD COURSE TEXT
// Test values -- JAY
$position -1 0.65
// Scan-out text effect
$effect 2
// This is the final color
$color 100 100 100
// This is the highlight color
$color2 0 200 50
// This is the time it takes to fade each character
$fadein 0.005
// This is the amount of time the highlight lags behind the leading edge of the text
$fxtime 0.5
// How long to hold the message on the screen (after it scans out)
$holdtime 3.5
// How long it takes to fade out the message after holding
$fadeout 1.5
$position -1 0.3
HZBUTTON1
{
PRESS YOUR USE KEY TO PUSH A BUTTON
}
$position -1 0.65
HZBUTTON2
{
PRESS YOUR USE KEY TO PUSH A BUTTON
}
HZMOVE
{
MOVE FORWARD BY PRESSING FORWARD KEY
MOVE BACKWARD BY PRESSING BACKWARD KEY
MOVE LEFT BY PRESSING MOVELEFT
MOVE RIGHT BY PRESSING MOVERIGHT
}
HZJUMP
{
PRESS FORWARD KEY TO RUN FORWARD
PRESS JUMP KEY TO JUMP
}
HZDUCK
{
PRESS FORWARD KEY TO RUN FORWARD
PRESS DUCK KEY TO DUCK
PRESS FORWARD + DUCK KEYS TOGETHER
TO MOVE IN STEALTH MODE
}
HZCOMBO
{
PRESS FORWARD KEY TO RUN FORWARD
PRESS JUMP KEY TO JUMP
PRESS DUCK KEY TO DUCK
PRESS JUMP KEY TO JUMP
}
HZDUCKJUMP
{
PRESS FORWARD + JUMP TOGETHER,
THEN THE DUCK KEY
}
HZLADDER
{
PRESS FORWARD KEY TO MOVE UP LADDERS
PRESS BACKWARD KEY TO MOVE DOWN LADDERS
}
HZLJUMP
{
WHILE MOVING FORWARD,
HOLD DOWN DUCK KEY--
THEN PRESS JUMP
}
$position -1 0.3
HZLMOD
{
BE SURE YOU PICKED UP THE LONG-JUMP MODULE
AT THE BEGINNING OF THE OBSTACLE
}
$position -1 0.65
HZMEDKIT
{
USE MED-KITS BY HOLDING DOWN THE USE KEY
HOLD DOWN USE KEY UNTIL HEALTH IS
AT 100 OR KIT IS DEPLETED
}
HZMOMENT
{
ACTIVATE WHEELS AND DIALS
BY HOLDING DOWN THE USE KEY
HOLD USE KEY UNTIL BRIDGE IS IN POSITION
}
HZPUSH
{
PRESS FORWARD KEY TO MOVE AGAINST BOX
KEEP PRESSING FORWARD TO PUSH BOX
}
HZPULL
{
PRESS USE + BACKWARD KEYS TOGETHER
TO PULL BOX BACKWARD
}
HZCROWBAR
{
MOVE UP TO CROWBAR
PRESS ATTACK1 KEY TO BREAK OBJECTS
}
HZLITEON
{
PRESS FLASHLIGHT KEY
TO TURN FLASHLIGHT ON
}
HZLITEOFF
{
PRESS FLASHLIGHT KEY AGAIN
TO TURN FLASHLIGHT OFF
}
HZWEAPON
{
MOVE UP TO WEAPON TO PICK IT UP
}
HZFIREWEAP
{
PRESS ATTACK1 KEY FOR PRIMARY ATTACK
PRESS ATTACK2 KEY FOR ALTERNATE ATTACK
PRESS RELOAD KEY TO RELOAD AT WILL
}
HZARMOR
{
PRESS AND HOLD YOUR USE KEY
HOLD DOWN UNTIL SUIT ARMOR IS CHARGED
OR CHARGER IS DEPLETED
}
HZSWIM
{
PRESS YOUR FORWARD KEY
AIM WITH THE MOUSE AS YOU SWIM
FIND AIR IF YOU BEGIN TO LOSE HEALTH
WAIT IN THE AIR UNTIL HEALTH
RETURNS TO FORMER LEVEL
}
HZDAMAGE
{
CERTAIN TYPES OF DAMAGE WILL REGISTER
ON YOUR HEADS-UP DISPLAY.
DIRECTION OF DAMAGE IS INDICATED BY RED
FLASHES IN THE CENTER OF YOUR SCREEN
}
HZHAZARD
{
RADIATION HAZARDS
ACTIVATE A GEIGER COUNTER
}
HZSCIENTIST
{
APPROACH SCIENTIST
PRESS USE KEY TO RECEIVE HEALTH FROM SCIENTIST
}
HZBARNEY
{
APPROACH SECURITY GUARD
PRESS YOUR USE KEY TO GET HIS HELP
WALK TOWARD DOOR AND GUARD
WILL ACTIVATE BUTTONS
}
HZTRAIN
{
PRESS USE KEY TO ENGAGE TRAIN
PRESS FORWARD KEY TO ACCELERATE
PRESS BACKWARD KEY TO DECELERATE
PRESS USE KEY AGAIN TO DISENGAGE
}
HZDONE
{
CONGRATULATIONS!
YOU HAVE COMPLETED
THE BLACK MESA HAZARD COURSE.
COME BACK ANY TIME.
}
Spec_Mode1
{
Locked Chase-Camera
}
Spec_Mode2
{
Free Chase-Camera
}
Spec_Mode3
{
Free-Look
}
Spec_Mode4
{
First Person
}
Spec_Mode5
{
Free Map Overview
}
Spec_Mode6
{
Chase Map Overview
}
Spec_NoTarget
{
No valid targets. Cannot switch to Chase-Camera Mode.
}
Spec_Help_Title
{
Spectator Mode
}
Spec_Help_Text
{
Use the following keys to change view styles:
FIRE1 - Chase next player
FIRE2 - Chase previous player
JUMP - Change view modes
USE - Change inset window mode
DUCK - Enable spectator menu
In Overview Map Mode move around with:
MOVELEFT - move left
MOVERIGHT - move right
FORWARD - zoom in
BACK - zoom out
MOUSE - rotate around map/target
}
Spec_Slow_Motion
{
Slow Motion
}
Spec_Replay
{
Instant Replay
}
Spec_Auto
{
Auto
}
// Multiplayer Scoreboard
Spec_Map
{
Map
}
Spectators
{
Spectators
}
Unassigned
{
Unassigned
}
TEAMS
{
TEAMS
}
PLAYERS
{
PLAYERS
}
CLASS
{
CLASS
}
SCORE
{
SCORE
}
DEATHS
{
DEATHS
}
LATENCY
{
PING
}
VOICE
{
VOICE
}
// other menu text
Menu_OK
{
OK
}
Menu_Cancel
{
CANCEL
}
Mic_Volume
{
Mic Volume
}
Speaker_Volume
{
Speaker Volume
}
Voice_Properties
{
Voice Properties
}
Map_Description_not_available
{
Map Description not available.
}
Player
{
player
}
Player_plural
{
players
}
Muted
{
You have muted %s.
}
Unmuted
{
You have unmuted %s.
}
No_longer_hear_that_player
{
You will no longer hear that player speak.
}
OBS_NONE
{
Camera Options
}
OBS_CHASE_LOCKED
{
Locked Chase-Cam
}
OBS_CHASE_FREE
{
Free Chase-Cam
}
OBS_ROAMING
{
Roaming
}
OBS_IN_EYE
{
First Person
}
OBS_MAP_FREE
{
Free Overview
}
OBS_MAP_CHASE
{
Chase-Cam Overview
}
SPECT_OPTIONS
{
Options
}
CAM_OPTIONS
{
Camera Options
}
Spec_Duck
{
Press DUCK for Spectator Menu
}
Valve_Close
{
Close
}
Valve_Help
{
Help
}
Valve_Settings
{
Settings
}
Valve_Chat_Messages
{
Chat Messages
}
Valve_Show_Status
{
Show Status
}
Valve_View_Cone
{