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
|
L 08/25/1999 - 16:54:16: Log file started.
L 08/25/1999 - 16:54:16: Spawning server "rock2"
L 08/25/1999 - 16:54:16: server cvars start
L 08/25/1999 - 16:54:16: "cr_random" = "0"
L 08/25/1999 - 16:54:16: "cr_engineer" = "0"
L 08/25/1999 - 16:54:16: "cr_spy" = "0"
L 08/25/1999 - 16:54:16: "cr_pyro" = "0"
L 08/25/1999 - 16:54:16: "cr_hwguy" = "0"
L 08/25/1999 - 16:54:16: "cr_medic" = "0"
L 08/25/1999 - 16:54:16: "cr_demoman" = "0"
L 08/25/1999 - 16:54:16: "cr_soldier" = "0"
L 08/25/1999 - 16:54:16: "cr_sniper" = "0"
L 08/25/1999 - 16:54:16: "cr_scout" = "0"
L 08/25/1999 - 16:54:16: "decalfrequency" = "30"
L 08/25/1999 - 16:54:16: "mp_autocrosshair" = "1"
L 08/25/1999 - 16:54:16: "mp_flashlight" = "0"
L 08/25/1999 - 16:54:16: "mp_footsteps" = "1"
L 08/25/1999 - 16:54:16: "mp_forcerespawn" = "1"
L 08/25/1999 - 16:54:16: "mp_weaponstay" = "0"
L 08/25/1999 - 16:54:16: "mp_falldamage" = "0"
L 08/25/1999 - 16:54:16: "mp_friendlyfire" = "0"
L 08/25/1999 - 16:54:16: "mp_timelimit" = "30"
L 08/25/1999 - 16:54:16: "mp_fraglimit" = "0"
L 08/25/1999 - 16:54:16: "mp_teamplay" = "21"
L 08/25/1999 - 16:54:16: "tfc_balance_scores" = "1.0"
L 08/25/1999 - 16:54:16: "tfc_balance_teams" = "1.0"
L 08/25/1999 - 16:54:16: "tfc_adminpwd" = ""
L 08/25/1999 - 16:54:16: "tfc_clanbattle_locked" = "0.0"
L 08/25/1999 - 16:54:16: "tfc_clanbattle" = "0.0"
L 08/25/1999 - 16:54:16: "tfc_respawndelay" = "0.0"
L 08/25/1999 - 16:54:16: "tfc_autoteam" = "1"
L 08/25/1999 - 16:54:16: "sv_maxrate" = "0"
L 08/25/1999 - 16:54:16: "sv_minrate" = "0"
L 08/25/1999 - 16:54:16: "sv_allowupload" = "1"
L 08/25/1999 - 16:54:16: "sv_allowdownload" = "1"
L 08/25/1999 - 16:54:16: "sv_upload_maxsize" = "0"
L 08/25/1999 - 16:54:16: "sv_spectatormaxspeed" = "500"
L 08/25/1999 - 16:54:16: "sv_spectalk" = "1"
L 08/25/1999 - 16:54:16: "sv_maxspectators" = "8"
L 08/25/1999 - 16:54:16: "sv_cheats" = "0"
L 08/25/1999 - 16:54:16: "sv_clienttrace" = "3.5"
L 08/25/1999 - 16:54:16: "sv_timeout" = "65"
L 08/25/1999 - 16:54:16: "sv_waterfriction" = "1"
L 08/25/1999 - 16:54:16: "sv_wateraccelerate" = "10"
L 08/25/1999 - 16:54:16: "sv_airaccelerate" = "10"
L 08/25/1999 - 16:54:16: "sv_airmove" = "1"
L 08/25/1999 - 16:54:16: "sv_bounce" = "1"
L 08/25/1999 - 16:54:16: "sv_clipmode" = "0"
L 08/25/1999 - 16:54:16: "sv_stepsize" = "18"
L 08/25/1999 - 16:54:16: "sv_accelerate" = "10"
L 08/25/1999 - 16:54:16: "sv_maxspeed" = "500.000000"
L 08/25/1999 - 16:54:16: "sv_stopspeed" = "100"
L 08/25/1999 - 16:54:16: "edgefriction" = "2"
L 08/25/1999 - 16:54:16: "sv_friction" = "4"
L 08/25/1999 - 16:54:16: "sv_gravity" = "800"
L 08/25/1999 - 16:54:16: "sv_aim" = "0"
L 08/25/1999 - 16:54:16: "sv_password" = ""
L 08/25/1999 - 16:54:16: "pausable" = "0"
L 08/25/1999 - 16:54:16: "coop" = "0"
L 08/25/1999 - 16:54:16: "deathmatch" = "1"
L 08/25/1999 - 16:54:16: "mp_logecho" = "1"
L 08/25/1999 - 16:54:16: "mp_logfile" = "1"
L 08/25/1999 - 16:54:16: "cmdline" = "0"
L 08/25/1999 - 16:54:16: server cvars end
L 08/25/1999 - 16:54:19: Map CRC "1246753045"
L 08/25/1999 - 16:54:19: "sv_maxspeed" = "500"
L 08/25/1999 - 16:54:19: Server name is "VALVe Test Server"
L 08/25/1999 - 16:54:19: "sv_maxspeed" = "500.000000"
L 08/25/1999 - 16:54:28: "isleepinadrawer<60><WON:1542549>" has entered the game
L 08/25/1999 - 16:54:29: "Skillet[PsK]<35><WON:1521019>" has entered the game
L 08/25/1999 - 16:54:30: "ultimiteplayer<2><WON:1600029>" has entered the game
L 08/25/1999 - 16:54:31: "Everdred<59><WON:436799>" has entered the game
L 08/25/1999 - 16:54:32: "stropp<32><WON:1558289>" has entered the game
L 08/25/1999 - 16:54:36: "Warlock<42><WON:3120379>" has entered the game
L 08/25/1999 - 16:54:40: "Skillet[PsK]<35>" disconnected
L 08/25/1999 - 16:54:40: "BeerMan<56><WON:1038679>" has entered the game
L 08/25/1999 - 16:54:41: "Everdred<59>" joined team "1".
L 08/25/1999 - 16:54:42: "Yaul<50><WON:249899>" has entered the game
L 08/25/1999 - 16:54:43: "Warlock<42>" joined team "2".
L 08/25/1999 - 16:54:45: "Everdred<59>" changed class to "Soldier"
L 08/25/1999 - 16:54:45: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:45: "Warlock<42>" changed class to "Engineer"
L 08/25/1999 - 16:54:45: "Warlock<42>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:45: "Yaul<50>" joined team "1".
L 08/25/1999 - 16:54:48: "isleepinadrawer<60>" joined team "1".
L 08/25/1999 - 16:54:48: "isleepinadrawer<60>" changed class to "Scout"
L 08/25/1999 - 16:54:48: "isleepinadrawer<60>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:49: "Yaul<50>" changed class to "Scout"
L 08/25/1999 - 16:54:49: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:49: "BeerMan<56>" joined team "2".
L 08/25/1999 - 16:54:51: "Yaul<50>" changed to team "2".
L 08/25/1999 - 16:54:51: "Yaul<50>" killed self with "world"
L 08/25/1999 - 16:54:52: "BeerMan<56>" changed class to "Engineer"
L 08/25/1999 - 16:54:52: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:53: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:53: "isleepinadrawer<60>" changed class to "Sniper"
L 08/25/1999 - 16:54:54: "Fir<62><WON:2304719>" has entered the game
L 08/25/1999 - 16:54:55: "Player<58><WON:392799>" has entered the game
L 08/25/1999 - 16:54:55: "Yaul<50>" changed class to "Scout"
L 08/25/1999 - 16:54:55: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:54:56: "Fir<62>" joined team "1".
L 08/25/1999 - 16:54:56: "lying pig dog<14><WON:2031589>" has entered the game
L 08/25/1999 - 16:55:00: "Fir<62>" changed class to "Scout"
L 08/25/1999 - 16:55:00: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:03: "Player<58>" joined team "1".
L 08/25/1999 - 16:55:05: "[CbK]-PriCk<55><WON:2656709>" has entered the game
L 08/25/1999 - 16:55:06: "Rowdy<64><WON:1471599>" connected, address "207.101.241.89:27005"
L 08/25/1999 - 16:55:12: "[CbK]-PriCk<55>" joined team "2".
L 08/25/1999 - 16:55:13: "BeerMan<56>" built a "sentry".
L 08/25/1999 - 16:55:16: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 16:55:18: "Player<58>" changed class to "Soldier"
L 08/25/1999 - 16:55:18: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:25: "[CbK]-PriCk<55>" changed class to "Engineer"
L 08/25/1999 - 16:55:25: "[CbK]-PriCk<55>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:25: "BeerMan<56>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 16:55:26: "Warlock<42>" built a "sentry".
L 08/25/1999 - 16:55:30: "Rowdy<64><WON:1471599>" has entered the game
L 08/25/1999 - 16:55:35: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:35: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 16:55:35: Broadcast: "#rock_red_scores"
L 08/25/1999 - 16:55:36: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:55:38: "Rowdy<64>" joined team "1".
L 08/25/1999 - 16:55:38: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 16:55:39: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:55:40: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:55:42: "[CbK]-PriCk<55>" built a "sentry".
L 08/25/1999 - 16:55:43: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:55:43: "SHARPE<38><WON:1214499>" has entered the game
L 08/25/1999 - 16:55:45: Broadcast: "5 . . .
"
L 08/25/1999 - 16:55:46: Broadcast: "4 . . .
"
L 08/25/1999 - 16:55:47: Broadcast: "3 . . .
"
L 08/25/1999 - 16:55:48: Broadcast: "2 . . .
"
L 08/25/1999 - 16:55:49: Broadcast: "1 . . .
"
L 08/25/1999 - 16:55:51: "Player<58>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:55:51: "Everdred<59>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:55:51: "isleepinadrawer<60>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:55:52: "isleepinadrawer<60>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:53: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:54: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:54: "SHARPE<38>" joined team "2".
L 08/25/1999 - 16:55:55: "Rowdy<64>" changed class to "Demoman"
L 08/25/1999 - 16:55:55: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:55:55: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:55:56: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:55:56: "isleepinadrawer<60>" killed by world with "door"
L 08/25/1999 - 16:55:59: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:55:59: "isleepinadrawer<60>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:56:00: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:56:01: "SHARPE<38>" changed class to "Demoman"
L 08/25/1999 - 16:56:01: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:56:12: "BeerMan<56>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 16:56:13: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:56:21: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 16:56:40: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 16:56:40: Broadcast: "#rock_red_scores"
L 08/25/1999 - 16:56:41: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:56:43: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 16:56:44: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:56:45: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:56:47: "Fir<62>" destroyed "BeerMan<56>"'s "sentry".
L 08/25/1999 - 16:56:48: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:56:50: Broadcast: "5 . . .
"
L 08/25/1999 - 16:56:51: Broadcast: "4 . . .
"
L 08/25/1999 - 16:56:52: Broadcast: "3 . . .
"
L 08/25/1999 - 16:56:53: Broadcast: "2 . . .
"
L 08/25/1999 - 16:56:54: "Fir<62>" activated the goal "goalitem"
L 08/25/1999 - 16:56:54: Broadcast: "1 . . .
"
L 08/25/1999 - 16:56:56: "Player<58>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:56:56: "isleepinadrawer<60>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:56:57: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:56:57: "isleepinadrawer<60>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:00: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:57:01: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:57:01: "Player<58>" killed by world with "door"
L 08/25/1999 - 16:57:03: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:04: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:57:05: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:57:14: "BeerMan<56>" built a "sentry".
L 08/25/1999 - 16:57:17: "Everdred<59>" changed class to "HWGuy"
L 08/25/1999 - 16:57:17: "Warlock<42>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 16:57:17: "Fir<62>" activated the goal "rhand"
L 08/25/1999 - 16:57:17: Broadcast: "#rock_blue_scores"
L 08/25/1999 - 16:57:18: "Fir<62>" activated the goal "rblock"
L 08/25/1999 - 16:57:20: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:20: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 16:57:21: "Fir<62>" activated the goal "brise1"
L 08/25/1999 - 16:57:22: "Fir<62>" activated the goal "brise2"
L 08/25/1999 - 16:57:24: "Rowdy<64>" killed self with "detpack"
L 08/25/1999 - 16:57:24: "Rowdy<64>" activated the goal "rcave1"
L 08/25/1999 - 16:57:25: "Fir<62>" activated the goal "brise3"
L 08/25/1999 - 16:57:27: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:27: Broadcast: "5 . . .
"
L 08/25/1999 - 16:57:28: Broadcast: "4 . . .
"
L 08/25/1999 - 16:57:29: Broadcast: "3 . . .
"
L 08/25/1999 - 16:57:30: Broadcast: "2 . . .
"
L 08/25/1999 - 16:57:31: Broadcast: "1 . . .
"
L 08/25/1999 - 16:57:32: "[CbK]-PriCk<55>" killed by world with "info_tfgoal"
L 08/25/1999 - 16:57:33: "SHARPE<38>" killed by world with "info_tfgoal"
L 08/25/1999 - 16:57:33: "Player<58>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:57:33: "Everdred<59>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:57:33: "isleepinadrawer<60>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:57:33: "Rowdy<64>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:57:33: "Fir<62>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:57:33: "BeerMan<56>" killed by world with "info_tfgoal"
L 08/25/1999 - 16:57:34: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:34: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:34: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:35: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:35: "isleepinadrawer<60>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:35: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:38: "Fir<62>" activated the goal "brise1"
L 08/25/1999 - 16:57:39: "Fir<62>" activated the goal "brise2"
L 08/25/1999 - 16:57:40: "[CbK]-PriCk<55>" say_team "door didnt open???"
L 08/25/1999 - 16:57:40: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:41: "Fir<62>" activated the goal "brise3"
L 08/25/1999 - 16:57:41: "[CbK]-PriCk<55>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:57:41: "ultimiteplayer<2>" disconnected
L 08/25/1999 - 16:57:42: "Fir<62>" activated the goal "rblock"
L 08/25/1999 - 16:57:46: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 16:57:56: "BeerMan<56>" killed "Fir<62>" with "railgun"
L 08/25/1999 - 16:57:58: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:58:05: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 16:58:05: Broadcast: "#rock_red_scores"
L 08/25/1999 - 16:58:06: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:58:08: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 16:58:09: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:58:10: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:58:13: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:58:15: Broadcast: "5 . . .
"
L 08/25/1999 - 16:58:16: Broadcast: "4 . . .
"
L 08/25/1999 - 16:58:17: Broadcast: "3 . . .
"
L 08/25/1999 - 16:58:18: Broadcast: "2 . . .
"
L 08/25/1999 - 16:58:19: Broadcast: "1 . . .
"
L 08/25/1999 - 16:58:21: "BeerMan<56>" killed by world with "info_tfgoal"
L 08/25/1999 - 16:58:21: "Player<58>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:58:21: "Fir<62>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:58:21: "Everdred<59>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:58:22: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:58:23: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:58:23: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:58:24: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:58:25: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:58:26: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:58:26: "Yaul<50>" say_team "hmhmhm..."
L 08/25/1999 - 16:58:29: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:58:30: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:58:31: "[CbK]-PriCk<55>" say_team "blue in tunnel"
L 08/25/1999 - 16:58:56: "[CbK]-PriCk<55>" killed "Fir<62>" with "supershotgun"
L 08/25/1999 - 16:58:58: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:59:08: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 16:59:17: "BeerMan<56>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 16:59:18: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:59:27: "Fir<62>" changed class to "Soldier"
L 08/25/1999 - 16:59:32: "<-1>" destroyed "[CbK]-PriCk<55>"'s "sentry".
L 08/25/1999 - 16:59:34: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 16:59:34: Broadcast: "#rock_red_scores"
L 08/25/1999 - 16:59:35: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 16:59:37: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 16:59:38: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:59:39: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:59:42: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:59:44: Broadcast: "5 . . .
"
L 08/25/1999 - 16:59:45: Broadcast: "4 . . .
"
L 08/25/1999 - 16:59:46: Broadcast: "3 . . .
"
L 08/25/1999 - 16:59:47: Broadcast: "2 . . .
"
L 08/25/1999 - 16:59:48: Broadcast: "1 . . .
"
L 08/25/1999 - 16:59:49: "Everdred<59>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:59:49: "Fir<62>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 16:59:51: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:59:51: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 16:59:54: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 16:59:55: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 16:59:57: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 16:59:59: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:00:00: "SHARPE<38>" changed class to "Scout"
L 08/25/1999 - 17:00:09: "[CbK]-PriCk<55>" built a "sentry".
L 08/25/1999 - 17:00:13: "SHARPE<38>" changed class to "Demoman"
L 08/25/1999 - 17:00:14: "isleepinadrawer<60>" disconnected
L 08/25/1999 - 17:00:24: "Warlock<42>" disconnected
L 08/25/1999 - 17:00:24: "<-1>" destroyed "Warlock<42>"'s "sentry".
L 08/25/1999 - 17:00:34: "Fir<62>" destroyed "BeerMan<56>"'s "sentry".
L 08/25/1999 - 17:00:34: "BeerMan<56>" killed self with "sentrygun"
L 08/25/1999 - 17:00:35: "Skillet[PsK]<65><WON:1521019>" connected, address "216.39.144.153:27005"
L 08/25/1999 - 17:00:36: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:00:41: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:00:43: "Fir<62>" activated the goal "goalitem"
L 08/25/1999 - 17:00:46: "Skillet[PsK]<65><WON:1521019>" has entered the game
L 08/25/1999 - 17:00:46: "Skillet[PsK]<65>" joined team "1".
L 08/25/1999 - 17:00:48: "Skillet[PsK]<65>" changed class to "Medic"
L 08/25/1999 - 17:00:48: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:04: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 17:01:04: Broadcast: "#rock_red_scores"
L 08/25/1999 - 17:01:04: "Skillet[PsK]<65>" killed by world with "door"
L 08/25/1999 - 17:01:04: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:01:05: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:07: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 17:01:08: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:01:08: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:01:10: "BeerMan<56>" built a "sentry".
L 08/25/1999 - 17:01:11: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:01:14: Broadcast: "5 . . .
"
L 08/25/1999 - 17:01:15: Broadcast: "4 . . .
"
L 08/25/1999 - 17:01:16: Broadcast: "3 . . .
"
L 08/25/1999 - 17:01:17: Broadcast: "2 . . .
"
L 08/25/1999 - 17:01:18: Broadcast: "1 . . .
"
L 08/25/1999 - 17:01:19: "Fir<62>" killed by world with "info_tfgoal"
L 08/25/1999 - 17:01:19: "Skillet[PsK]<65>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:01:20: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:20: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:24: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:01:24: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:01:25: "Rowdy<64>" killed "Yaul<50>" with "gl_grenade"
L 08/25/1999 - 17:01:27: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:01:31: "Skillet[PsK]<65>" infected "SHARPE<38>".
L 08/25/1999 - 17:01:32: "Yaul<50>" say_team "..."
L 08/25/1999 - 17:01:36: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:42: "SHARPE<38>" killed "Skillet[PsK]<65>" with "gl_grenade"
L 08/25/1999 - 17:01:45: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:50: "SHARPE<38>" killed "Rowdy<64>" with "gl_grenade"
L 08/25/1999 - 17:01:51: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:01:52: "Fir<62>" killed "Yaul<50>" with "rocket"
L 08/25/1999 - 17:01:57: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:02:00: "Skillet[PsK]<65>" killed "SHARPE<38>" with "timer"
L 08/25/1999 - 17:02:00: "Skillet[PsK]<65>" killed "SHARPE<38>" with "infection"
L 08/25/1999 - 17:02:02: "Fir<62>" activated the goal "goalitem"
L 08/25/1999 - 17:02:05: "Fir<62>" activated the goal "rhand"
L 08/25/1999 - 17:02:05: Broadcast: "#rock_blue_scores"
L 08/25/1999 - 17:02:06: "Fir<62>" activated the goal "rblock"
L 08/25/1999 - 17:02:06: "Skillet[PsK]<65>" say_team "INCOMING!!!!"
L 08/25/1999 - 17:02:06: "Skillet[PsK]<65>" say_team "INCOMING!!!!"
L 08/25/1999 - 17:02:08: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 17:02:09: "Fir<62>" activated the goal "brise1"
L 08/25/1999 - 17:02:10: "Fir<62>" activated the goal "brise2"
L 08/25/1999 - 17:02:13: "Fir<62>" activated the goal "brise3"
L 08/25/1999 - 17:02:15: Broadcast: "5 . . .
"
L 08/25/1999 - 17:02:16: Broadcast: "4 . . .
"
L 08/25/1999 - 17:02:16: "SHARPE<38>" changed class to "Demoman"
L 08/25/1999 - 17:02:17: Broadcast: "3 . . .
"
L 08/25/1999 - 17:02:18: Broadcast: "2 . . .
"
L 08/25/1999 - 17:02:19: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:02:19: Broadcast: "1 . . .
"
L 08/25/1999 - 17:02:20: "SHARPE<38>" killed by world with "info_tfgoal"
L 08/25/1999 - 17:02:21: "Greybeard<66><WON:1939509>" connected, address "4.20.171.88:27005"
L 08/25/1999 - 17:02:21: "Skillet[PsK]<65>" say_team "INCOMING!!!!"
L 08/25/1999 - 17:02:21: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:02:21: "Skillet[PsK]<65>" say_team "INCOMING!!!!"
L 08/25/1999 - 17:02:26: "Fir<62>" activated the goal "brise1"
L 08/25/1999 - 17:02:27: "Fir<62>" activated the goal "brise2"
L 08/25/1999 - 17:02:28: "Fir<62>" activated the goal "brise3"
L 08/25/1999 - 17:02:30: "Fir<62>" activated the goal "rblock"
L 08/25/1999 - 17:02:36: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:02:45: "Greybeard<66><WON:1939509>" has entered the game
L 08/25/1999 - 17:02:53: "[CbK]-PriCk<55>" changed class to "Demoman"
L 08/25/1999 - 17:02:55: "BeerMan<56>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 17:02:56: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:02:56: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 17:02:56: Broadcast: "#rock_red_scores"
L 08/25/1999 - 17:02:57: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:02:59: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 17:03:00: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:03:01: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:03:04: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:03:06: Broadcast: "5 . . .
"
L 08/25/1999 - 17:03:07: "Greybeard<66>" joined team "2".
L 08/25/1999 - 17:03:07: Broadcast: "4 . . .
"
L 08/25/1999 - 17:03:08: Broadcast: "3 . . .
"
L 08/25/1999 - 17:03:09: Broadcast: "2 . . .
"
L 08/25/1999 - 17:03:10: Broadcast: "1 . . .
"
L 08/25/1999 - 17:03:11: "Rowdy<64>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:03:12: "Fir<62>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:03:13: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:03:13: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:03:15: "Greybeard<66>" changed class to "Soldier"
L 08/25/1999 - 17:03:15: "Greybeard<66>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:03:16: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:03:17: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:03:20: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:03:21: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:03:22: "Skillet[PsK]<65>" infected "Yaul<50>".
L 08/25/1999 - 17:03:36: "Everdred<59>" killed "Yaul<50>" with "ac"
L 08/25/1999 - 17:03:39: "SHARPE<38>" killed "Player<58>" with "gl_grenade"
L 08/25/1999 - 17:03:41: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:03:51: "Yaul<50>" say_team "medic on enemy side"
L 08/25/1999 - 17:03:55: "Yaul<50>" changed class to "Medic"
L 08/25/1999 - 17:03:56: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:04:05: "SHARPE<38>" killed "Skillet[PsK]<65>" with "gl_grenade"
L 08/25/1999 - 17:04:06: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:04:25: "BeerMan<56>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:04:27: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:04:30: "warhead<67><WON:1233229>" connected, address "209.195.138.77:27005"
L 08/25/1999 - 17:04:34: "Yaul<50>" infected "Rowdy<64>".
L 08/25/1999 - 17:04:37: "Yaul<50>" infected "Fir<62>".
L 08/25/1999 - 17:04:38: "Rowdy<64>" killed self with "mirvgrenade"
L 08/25/1999 - 17:04:38: "Fir<62>" killed "Yaul<50>" with "rocket"
L 08/25/1999 - 17:04:39: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:04:41: "Yaul<50>" changed class to "Scout"
L 08/25/1999 - 17:04:42: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:04:50: "Skillet[PsK]<65>" cured "Fir<62>"'s "infection".
L 08/25/1999 - 17:04:58: "Fir<62>" say_team "thanks"
L 08/25/1999 - 17:05:05: "[CbK]-PriCk<55>" killed "Player<58>" with "empgrenade"
L 08/25/1999 - 17:05:06: "Greybeard<66>" disconnected
L 08/25/1999 - 17:05:07: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:05:12: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:05:18: "Rowdy<64>" killed "Yaul<50>" with "gl_grenade"
L 08/25/1999 - 17:05:19: "<-1>" destroyed "[CbK]-PriCk<55>"'s "sentry".
L 08/25/1999 - 17:05:20: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:05:37: "[CbK]-PriCk<55>" built a "sentry".
L 08/25/1999 - 17:05:43: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:05:48: "Fir<62>" killed "Yaul<50>" with "rocket"
L 08/25/1999 - 17:05:49: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:06:11: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:06:22: "BeerMan<56>" say_team "go yaul"
L 08/25/1999 - 17:06:31: "Yaul<50>" say "hide..."
L 08/25/1999 - 17:06:32: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 17:06:32: Broadcast: "#rock_red_scores"
L 08/25/1999 - 17:06:33: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:06:35: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 17:06:36: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:06:37: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:06:38: "[CbK]-PriCk<55>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:06:40: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:06:40: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:06:42: Broadcast: "5 . . .
"
L 08/25/1999 - 17:06:43: Broadcast: "4 . . .
"
L 08/25/1999 - 17:06:44: Broadcast: "3 . . .
"
L 08/25/1999 - 17:06:45: Broadcast: "2 . . .
"
L 08/25/1999 - 17:06:46: Broadcast: "1 . . .
"
L 08/25/1999 - 17:06:47: "Yaul<50>" say "^^"
L 08/25/1999 - 17:06:47: "Everdred<59>" killed by world with "info_tfgoal"
L 08/25/1999 - 17:06:47: "Player<58>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:06:49: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:06:50: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:06:52: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:06:53: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:06:55: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:06:57: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:06:59: "Everdred<59>" changed class to "Pyro"
L 08/25/1999 - 17:07:13: "JACCKPOT<68><WON:324329>" connected, address "161.184.146.96:27005"
L 08/25/1999 - 17:07:24: "JACCKPOT<68><WON:324329>" has entered the game
L 08/25/1999 - 17:07:26: "JACCKPOT<68>" joined team "2".
L 08/25/1999 - 17:07:27: "Skillet[PsK]<65>" infected "BeerMan<56>".
L 08/25/1999 - 17:07:32: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:07:32: "JACCKPOT<68>" changed class to "Engineer"
L 08/25/1999 - 17:07:32: "JACCKPOT<68>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:07:35: "Everdred<59>" killed "[CbK]-PriCk<55>" with "ac"
L 08/25/1999 - 17:07:36: "[CbK]-PriCk<55>" killed "Everdred<59>" with "sentrygun"
L 08/25/1999 - 17:07:37: "<-1>" destroyed "[CbK]-PriCk<55>"'s "sentry".
L 08/25/1999 - 17:07:37: "[CbK]-PriCk<55>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:07:42: "[CbK]-PriCk<55>" changed class to "Engineer"
L 08/25/1999 - 17:07:44: "Skillet[PsK]<65>" killed "BeerMan<56>" with "supershotgun"
L 08/25/1999 - 17:07:44: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:07:46: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:07:46: "BlackBomberman<69><WON:371189>" connected, address "63.10.133.123:27005"
L 08/25/1999 - 17:07:54: "BeerMan<56>" say_team "evil medic on balcony"
L 08/25/1999 - 17:07:55: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 17:07:55: Broadcast: "#rock_red_scores"
L 08/25/1999 - 17:07:56: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:07:56: "SHARPE<38>" killed "Player<58>" with "gl_grenade"
L 08/25/1999 - 17:07:57: "Player<70><WON:2504739>" connected, address "216.119.20.208:27005"
L 08/25/1999 - 17:07:58: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:07:58: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 17:07:59: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:08:00: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:08:03: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:08:05: "[CbK]-PriCk<55>" changed class to "Sniper"
L 08/25/1999 - 17:08:05: Broadcast: "5 . . .
"
L 08/25/1999 - 17:08:06: Broadcast: "4 . . .
"
L 08/25/1999 - 17:08:07: Broadcast: "3 . . .
"
L 08/25/1999 - 17:08:08: Broadcast: "2 . . .
"
L 08/25/1999 - 17:08:09: Broadcast: "1 . . .
"
L 08/25/1999 - 17:08:10: "Everdred<59>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:08:10: "Rowdy<64>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:08:10: "Fir<62>" killed by world with "#rock_gas_kill"
L 08/25/1999 - 17:08:11: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:12: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:13: "Skillet[PsK]<65>" infected "BeerMan<56>".
L 08/25/1999 - 17:08:15: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:08:16: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:08:17: "Rowdy<64>" say "that was chicken shit of you player"
L 08/25/1999 - 17:08:18: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:08:20: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:20: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:08:28: "DSM~JACKEL<70><WON:2504739>" has entered the game
L 08/25/1999 - 17:08:30: "BeerMan<56>" killed "Skillet[PsK]<65>" with "normalgrenade"
L 08/25/1999 - 17:08:32: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:34: "BlackBomberman<69><WON:371189>" has entered the game
L 08/25/1999 - 17:08:36: "DSM~JACKEL<70>" joined team "1".
L 08/25/1999 - 17:08:43: "BlackBomberman<69>" joined team "2".
L 08/25/1999 - 17:08:45: "DSM~JACKEL<70>" changed class to "Engineer"
L 08/25/1999 - 17:08:45: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:45: "SHARPE<38>" killed "Player<58>" with "gl_grenade"
L 08/25/1999 - 17:08:45: "Skillet[PsK]<65>" changed class to "Engineer"
L 08/25/1999 - 17:08:46: "BlackBomberman<69>" changed class to "RandomPC"
L 08/25/1999 - 17:08:46: "BlackBomberman<69>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:47: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:48: "Fir<62>" killed "SHARPE<38>" with "rocket"
L 08/25/1999 - 17:08:49: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:52: "BeerMan<56>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 17:08:54: "BeerMan<56>" killed "Everdred<59>" with "sentrygun"
L 08/25/1999 - 17:08:54: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:55: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:08:58: "JACCKPOT<68>" built a "sentry".
L 08/25/1999 - 17:09:01: "DSM~JACKEL<70>" built a "sentry".
L 08/25/1999 - 17:09:05: "Skillet[PsK]<65>" changed class to "Demoman"
L 08/25/1999 - 17:09:14: "[CbK]-PriCk<55>" activated the goal "rcave1"
L 08/25/1999 - 17:09:19: "BeerMan<56>" killed "Rowdy<64>" with "sentrygun"
L 08/25/1999 - 17:09:20: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:09:29: "Skillet[PsK]<65>" say "all my team member are morons"
L 08/25/1999 - 17:09:30: "BlackBomberman<69>" say_team "do we have a demo that can blow the tunnel open?"
L 08/25/1999 - 17:09:38: "[CbK]-PriCk<55>" killed "Fir<62>" with "normalgrenade"
L 08/25/1999 - 17:09:38: "BeerMan<56>" killed "Everdred<59>" with "sentrygun"
L 08/25/1999 - 17:09:39: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:09:39: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:09:49: "Everdred<59>" changed class to "Soldier"
L 08/25/1999 - 17:09:51: "DSM~JACKEL<70>" say "hey now i just joined so donty include evreyone"
L 08/25/1999 - 17:09:55: "JACCKPOT<68>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:09:55: "Yaul<50>" say_team "ill do it!"
L 08/25/1999 - 17:09:56: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:00: "Yaul<50>" changed class to "Demoman"
L 08/25/1999 - 17:10:03: "Yaul<50>" killed self with "world"
L 08/25/1999 - 17:10:08: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:09: "Fir<62>" killed "BeerMan<56>" with "normalgrenade"
L 08/25/1999 - 17:10:11: "JACCKPOT<68>" killed "Rowdy<64>" with "sentrygun"
L 08/25/1999 - 17:10:11: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:12: "BlackBomberman<69>" killed "Everdred<59>" with "ac"
L 08/25/1999 - 17:10:13: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:16: "Everdred<59>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:18: "BlackBomberman<69>" killed "DSM~JACKEL<70>" with "ac"
L 08/25/1999 - 17:10:19: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:19: "JACCKPOT<68>" killed "Fir<62>" with "sentrygun"
L 08/25/1999 - 17:10:20: "DSM~JACKEL<70>" killed "BlackBomberman<69>" with "sentrygun"
L 08/25/1999 - 17:10:22: "Fir<62>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:22: "BlackBomberman<69>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:10:38: "BlackBomberman<69>" built a "sentry".
L 08/25/1999 - 17:10:41: "Skillet[PsK]<65>" say "since joining I have been shot more by them than enemy"
L 08/25/1999 - 17:10:45: "BeerMan<56>" say_team "where cool defensivley as long as they dont use spys"
L 08/25/1999 - 17:10:54: "Skillet[PsK]<65>" say "and they cant stop 1 scout"
L 08/25/1999 - 17:10:56: "Yaul<50>" activated the goal "bcave1"
L 08/25/1999 - 17:11:03: "Yaul<50>" say "^^"
L 08/25/1999 - 17:11:07: "BlackBomberman<69>" say_team "shoot first apolize later"
L 08/25/1999 - 17:11:11: "JACCKPOT<68>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:11:12: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:11:25: "BlackBomberman<69>" killed "DSM~JACKEL<70>" with "sentrygun"
L 08/25/1999 - 17:11:26: "Rowdy<64>" killed "SHARPE<38>" with "mirvgrenade"
L 08/25/1999 - 17:11:26: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:11:30: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:11:33: "Everdred<59>" disconnected
L 08/25/1999 - 17:11:38: "Skillet[PsK]<65>" say "good"
L 08/25/1999 - 17:11:38: "Yaul<50>" destroyed "DSM~JACKEL<70>"'s "sentry".
L 08/25/1999 - 17:11:39: "JACCKPOT<68>" killed "Rowdy<64>" with "sentrygun"
L 08/25/1999 - 17:11:39: "Fir<62>" disconnected
L 08/25/1999 - 17:11:41: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:11:45: "JACCKPOT<68>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:11:47: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:11:49: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:11:51: "DSM~JACKEL<70>" built a "sentry".
L 08/25/1999 - 17:11:57: "DSM~JACKEL<70>" killed "Yaul<50>" with "sentrygun"
L 08/25/1999 - 17:12:00: "Yaul<50>" changed class to "Scout"
L 08/25/1999 - 17:12:00: "Yaul<50>" killed "DSM~JACKEL<70>" with "mirvgrenade"
L 08/25/1999 - 17:12:00: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:12:02: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:12:02: "SHARPE<38>" changed class to "Sniper"
L 08/25/1999 - 17:12:03: "Yaul<50>" destroyed "DSM~JACKEL<70>"'s "sentry".
L 08/25/1999 - 17:12:16: "Skillet[PsK]<65>" infected "[CbK]-PriCk<55>".
L 08/25/1999 - 17:12:20: "[CbK]-PriCk<55>" activated the goal "goalitem"
L 08/25/1999 - 17:12:25: "[CbK]-PriCk<55>" killed self with "gl_grenade"
L 08/25/1999 - 17:12:28: "Yaul<50>" activated the goal "goalitem"
L 08/25/1999 - 17:12:33: "SHARPE<38>" killed "Player<58>" with "gl_grenade"
L 08/25/1999 - 17:12:34: "[CbK]-PriCk<55>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:12:35: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:12:35: "BeerMan<56>" say_team "they suck"
L 08/25/1999 - 17:12:41: "Yaul<50>" activated the goal "bhand"
L 08/25/1999 - 17:12:41: Broadcast: "#rock_red_scores"
L 08/25/1999 - 17:12:42: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:12:44: "DSM~JACKEL<70>" built a "sentry".
L 08/25/1999 - 17:12:44: Broadcast: "#rock_gasmask_message"
L 08/25/1999 - 17:12:45: "SHARPE<38>" changed to team "1".
L 08/25/1999 - 17:12:45: "SHARPE<38>" killed self with "world"
L 08/25/1999 - 17:12:45: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:12:46: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:12:49: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:12:50: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:12:51: Broadcast: "5 . . .
"
L 08/25/1999 - 17:12:52: Broadcast: "4 . . .
"
L 08/25/1999 - 17:12:53: Broadcast: "3 . . .
"
L 08/25/1999 - 17:12:54: Broadcast: "2 . . .
"
L 08/25/1999 - 17:12:55: Broadcast: "1 . . .
"
L 08/25/1999 - 17:12:57: "BeerMan<56>" killed by world with "info_tfgoal"
L 08/25/1999 - 17:12:58: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:13:01: "Yaul<50>" activated the goal "brise1"
L 08/25/1999 - 17:13:02: "Yaul<50>" activated the goal "brise2"
L 08/25/1999 - 17:13:04: "SHARPE<38>" changed class to "Engineer"
L 08/25/1999 - 17:13:04: "SHARPE<38>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:13:05: "Yaul<50>" activated the goal "brise3"
L 08/25/1999 - 17:13:06: "Yaul<50>" activated the goal "bblock"
L 08/25/1999 - 17:13:13: "stropp<32>" disconnected
L 08/25/1999 - 17:13:13: "Skillet[PsK]<65>" infected "Yaul<50>".
L 08/25/1999 - 17:13:18: "JACCKPOT<68>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:13:19: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:13:23: "Rowdy<64>" activated the goal "rcave1"
L 08/25/1999 - 17:13:24: "Grillbag<71><WON:3180769>" connected, address "171.215.173.146:27005"
L 08/25/1999 - 17:13:24: "Yaul<50>" killed by world with "#rock_laser_kill"
L 08/25/1999 - 17:13:24: "SHARPE<38>" built a "sentry".
L 08/25/1999 - 17:13:27: "BeerMan<56>" say_team "im makinga run"
L 08/25/1999 - 17:13:29: "Yaul<50>" changed class to "Demoman"
L 08/25/1999 - 17:13:29: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:13:44: "Player<58>" killed "BeerMan<56>" with "rocket"
L 08/25/1999 - 17:13:49: "BlackBomberman<69>" killed "Rowdy<64>" with "supershotgun"
L 08/25/1999 - 17:13:49: "Skillet[PsK]<65>" infected "[CbK]-PriCk<55>".
L 08/25/1999 - 17:13:51: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:13:55: "BeerMan<56>" say_team "that didnt go so well"
L 08/25/1999 - 17:13:56: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:13:58: "BlackBomberman<69>" say_team "need someone to seal tunnel"
L 08/25/1999 - 17:14:02: "JACCKPOT<68>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:14:04: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:14:08: "Yaul<50>" activated the goal "bholedet"
L 08/25/1999 - 17:14:08: Broadcast: "#rock_blue_yard_opened"
L 08/25/1999 - 17:14:16: "Rowdy<64>" killed "Yaul<50>" with "mirvgrenade"
L 08/25/1999 - 17:14:17: "~Anthrax<72><WON:3263029>" connected, address "216.65.141.235:27005"
L 08/25/1999 - 17:14:18: "Skillet[PsK]<65>" killed "[CbK]-PriCk<55>" with "supernails"
L 08/25/1999 - 17:14:26: "[CbK]-PriCk<55>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:14:27: "SHARPE<38>" built a "dispenser".
L 08/25/1999 - 17:14:28: "~Anthrax<72><WON:3263029>" has entered the game
L 08/25/1999 - 17:14:29: "Yaul<50>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:14:30: "~Anthrax<72>" joined team "1".
L 08/25/1999 - 17:14:38: "~Anthrax<72>" changed class to "Engineer"
L 08/25/1999 - 17:14:38: "~Anthrax<72>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:14:38: "Player<58>" killed by world with "#rock_falling_death"
L 08/25/1999 - 17:14:39: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:14:48: "BlackBomberman<69>" say_team "demo man seal tunnel plz"
L 08/25/1999 - 17:14:48: "DSM~JACKEL<70>" say_team "demo man clkose the hole"
L 08/25/1999 - 17:14:49: "BeerMan<56>" say_team "where is the hole"
L 08/25/1999 - 17:14:56: "Yaul<50>" say_team "k"
L 08/25/1999 - 17:14:58: "BlackBomberman<69>" say_team "its in the tunnel"
L 08/25/1999 - 17:15:01: "[WB]Gunfighter-2<73><WON:248669>" connected, address "63.13.113.89:27005"
L 08/25/1999 - 17:15:09: "Skillet[PsK]<65>" infected "Yaul<50>".
L 08/25/1999 - 17:15:19: "DSM~JACKEL<70>" say_team "close the hole demo manm just dont dsit there like a moron"
L 08/25/1999 - 17:15:21: "BlackBomberman<69>" built a "dispenser".
L 08/25/1999 - 17:15:22: "[WB]Gunfighter-2<73><WON:248669>" has entered the game
L 08/25/1999 - 17:15:26: "~Anthrax<72>" built a "sentry".
L 08/25/1999 - 17:15:27: "[WB]Gunfighter-2<73>" joined team "2".
L 08/25/1999 - 17:15:31: "[WB]Gunfighter-2<73>" changed class to "Engineer"
L 08/25/1999 - 17:15:31: "[WB]Gunfighter-2<73>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:15:33: "Yaul<50>" killed self with "detpack"
L 08/25/1999 - 17:15:33: "Yaul<50>" activated the goal "rcave1"
L 08/25/1999 - 17:15:44: "Rowdy<64>" activated the goal "bcave1"
L 08/25/1999 - 17:15:48: "JACCKPOT<68>" killed "Player<58>" with "empgrenade"
L 08/25/1999 - 17:15:49: "Skillet[PsK]<65>" killed "BeerMan<56>" with "normalgrenade"
L 08/25/1999 - 17:15:50: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:15:51: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:15:52: "JACCKPOT<68>" killed "~Anthrax<72>" with "sentrygun"
L 08/25/1999 - 17:15:54: "~Anthrax<72>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:16:10: "j3ffrey<74><WON:331599>" connected, address "208.231.176.100:27005"
L 08/25/1999 - 17:16:13: "~Anthrax<72>" killed "BlackBomberman<69>" with "sentrygun"
L 08/25/1999 - 17:16:16: "BlackBomberman<69>" killed "Skillet[PsK]<65>" with "empgrenade"
L 08/25/1999 - 17:16:16: "BlackBomberman<69>" destroyed "~Anthrax<72>"'s "sentry".
L 08/25/1999 - 17:16:16: "~Anthrax<72>" killed by world with "worldspawn"
L 08/25/1999 - 17:16:17: "BlackBomberman<69>" changed class to "Engineer"
L 08/25/1999 - 17:16:17: "Skillet[PsK]<65>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:16:18: "[WB]Gunfighter-2<73>" built a "sentry".
L 08/25/1999 - 17:16:19: "BlackBomberman<69>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:16:20: "JACCKPOT<68>" killed "Player<58>" with "sentrygun"
L 08/25/1999 - 17:16:21: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:16:23: "~Anthrax<72>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:16:25: "j3ffrey<74><WON:331599>" has entered the game
L 08/25/1999 - 17:16:36: "j3ffrey<74>" joined team "1".
L 08/25/1999 - 17:16:44: "Yaul<50>" changed name to "Chicken_man<50>"
L 08/25/1999 - 17:16:46: "j3ffrey<74>" changed class to "Spy"
L 08/25/1999 - 17:16:46: "j3ffrey<74>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:00: "SHARPE<38>" say "red pussy"
L 08/25/1999 - 17:17:05: "[CbK]-PriCk<55>" killed "Player<58>" with "sniperrifle"
L 08/25/1999 - 17:17:05: "~Anthrax<72>" built a "sentry".
L 08/25/1999 - 17:17:07: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:08: "Rowdy<64>" killed "BlackBomberman<69>" with "gl_grenade"
L 08/25/1999 - 17:17:08: "Rowdy<64>" killed self with "gl_grenade"
L 08/25/1999 - 17:17:09: "BlackBomberman<69>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:10: "Rowdy<64>" killed "BeerMan<56>" with "gl_grenade"
L 08/25/1999 - 17:17:10: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:12: "[CbK]-PriCk<55>" killed "j3ffrey<74>" with "sniperrifle"
L 08/25/1999 - 17:17:13: "~Anthrax<72>" killed by world with "worldspawn"
L 08/25/1999 - 17:17:13: "Skillet[PsK]<65>" activated the goal "rcave1"
L 08/25/1999 - 17:17:14: "~Anthrax<72>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:14: "j3ffrey<74>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:17: "BlackBomberman<69>" changed class to "Demoman"
L 08/25/1999 - 17:17:21: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:22: "[CbK]-PriCk<55>" say_team "they have spy"
L 08/25/1999 - 17:17:23: "DSM~JACKEL<70>" killed by world with "worldspawn"
L 08/25/1999 - 17:17:25: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:26: "j3ffrey<74>" say "nice config nerd"
L 08/25/1999 - 17:17:27: "[CbK]-PriCk<55>" say_team "i got him this time"
L 08/25/1999 - 17:17:34: "[CbK]-PriCk<55>" killed "~Anthrax<72>" with "sniperrifle"
L 08/25/1999 - 17:17:36: "~Anthrax<72>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:17:53: "[CbK]-PriCk<55>" killed "~Anthrax<72>" with "headshot"
L 08/25/1999 - 17:17:54: "BeerMan<56>" say_team "someone needs to be a scout, supposedly they can detect them"
L 08/25/1999 - 17:17:55: "~Anthrax<72>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:18:03: "Player<58>" killed "[CbK]-PriCk<55>" with "rocket"
L 08/25/1999 - 17:18:03: "BlackBomberman<69>" say_team "they can"
L 08/25/1999 - 17:18:04: "[CbK]-PriCk<55>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:18:04: "JACCKPOT<68>" killed "j3ffrey<74>" with "sentrygun"
L 08/25/1999 - 17:18:16: "BlackBomberman<69>" changed class to "RandomPC"
L 08/25/1999 - 17:18:17: "Skillet[PsK]<65>" say "Thanks"
L 08/25/1999 - 17:18:18: "j3ffrey<74>" changed class to "Spy"
L 08/25/1999 - 17:18:19: "[CbK]-PriCk<55>" killed "Player<58>" with "sniperrifle"
L 08/25/1999 - 17:18:20: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:18:22: "Skillet[PsK]<65>" say_team "?"
L 08/25/1999 - 17:18:22: "j3ffrey<74>" changed class to "Demoman"
L 08/25/1999 - 17:18:22: "j3ffrey<74>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:18:25: "BeerMan<56>" say_team "whoever he is he needs to stay close to the sentrys"
L 08/25/1999 - 17:18:30: "[CbK]-PriCk<55>" killed "DSM~JACKEL<70>" with "sniperrifle"
L 08/25/1999 - 17:18:31: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:19:05: "JACCKPOT<68>" killed "DSM~JACKEL<70>" with "sentrygun"
L 08/25/1999 - 17:19:07: "DSM~JACKEL<70>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:19:16: "BeerMan<56>" killed self with "normalgrenade"
L 08/25/1999 - 17:19:18: "[CbK]-PriCk<55>" killed "Player<58>" with "sniperrifle"
L 08/25/1999 - 17:19:20: "BeerMan<56>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:19:20: "DSM~JACKEL<70>" say_team "demo man blow a hole in thier undergreound"
L 08/25/1999 - 17:19:20: "Player<58>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:19:24: "<-1>" destroyed "BlackBomberman<69>"'s "dispenser".
L 08/25/1999 - 17:19:26: "Skillet[PsK]<65>" say_team "did"
L 08/25/1999 - 17:19:27: "j3ffrey<74>" say_team "on it"
L 08/25/1999 - 17:19:34: "BlackBomberman<69>" built a "dispenser".
L 08/25/1999 - 17:19:35: "Rowdy<64>" killed by world with "#rock_laser_kill"
L 08/25/1999 - 17:19:36: "j3ffrey<74>" say_team "you mean there wall"
L 08/25/1999 - 17:19:37: "Rowdy<64>" activated the goal "info_player_teamspawn"
L 08/25/1999 - 17:19:50: "Player<58>" killed "BeerMan<56>" with "rocket"
L 08/25/1999 - 17:19:
|