-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.log
2894 lines (2894 loc) · 284 KB
/
example.log
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
L 11/12/2018 - 19:57:28: World triggered "Round_Start"
L 11/12/2018 - 19:57:43: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 19:57:43: "Dean<11><BOT><CT>" [-206 316 1613] killed "Scott<5><BOT><TERRORIST>" [939 214 1678] with "hkp2000"
L 11/12/2018 - 19:57:44: "Duffy<3><BOT><CT>" [-176 275 1613] killed "Wyatt<10><BOT><TERRORIST>" [1003 206 1678] with "hkp2000"
L 11/12/2018 - 19:57:44: "Dean<11><BOT><CT>" assisted killing "Wyatt<10><BOT><TERRORIST>"
L 11/12/2018 - 19:57:46: "Dean<11><BOT><CT>" [-164 268 1613] killed "Bill<6><BOT><TERRORIST>" [1010 273 1678] with "hkp2000"
L 11/12/2018 - 19:57:46: "Jon<9><BOT><CT>" assisted killing "Bill<6><BOT><TERRORIST>"
L 11/12/2018 - 19:57:58: "Jon<9><BOT><CT>" [1399 120 1614] attacked "Orin<8><BOT><TERRORIST>" [1529 499 1614] with "hkp2000" (damage "32") (damage_armor "0") (health "27") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:57:58: "Jon<9><BOT><CT>" [1399 120 1614] attacked "Orin<8><BOT><TERRORIST>" [1514 516 1614] with "hkp2000" (damage "40") (damage_armor "0") (health "0") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:57:58: "Jon<9><BOT><CT>" [1399 120 1614] killed "Orin<8><BOT><TERRORIST>" [1514 516 1678] with "hkp2000"
L 11/12/2018 - 19:58:08: "Dean<11><BOT><CT>" [2396 41 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [3092 -5 1613] with "hkp2000" (damage "23") (damage_armor "0") (health "77") (armor "0") (hitgroup "left leg")
L 11/12/2018 - 19:58:08: "Dean<11><BOT><CT>" [2394 -24 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [3092 -5 1613] with "hkp2000" (damage "23") (damage_armor "0") (health "54") (armor "0") (hitgroup "left leg")
L 11/12/2018 - 19:58:08: "Martin<7><BOT><CT>" [2680 73 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [3092 -5 1613] with "hkp2000" (damage "40") (damage_armor "0") (health "14") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:09: "Ron<4><BOT><CT>" [2364 73 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [3092 -5 1613] with "hkp2000" (damage "122") (damage_armor "0") (health "0") (armor "0") (hitgroup "head")
L 11/12/2018 - 19:58:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:58:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:58:09: "Ron<4><BOT><CT>" [2364 73 1613] killed "Player<2><STEAM_1:1:0101011><TERRORIST>" [3092 -5 1677] with "hkp2000" (headshot)
L 11/12/2018 - 19:58:09: "Dean<11><BOT><CT>" assisted killing "Player<2><STEAM_1:1:0101011><TERRORIST>"
L 11/12/2018 - 19:58:09: "Ron<3><BOT><CT>" money change 800+300 = $1100 (tracked)
L 11/12/2018 - 19:58:09: Team "CT" triggered "SFUI_Notice_CTs_Win" (CT "1") (T "0")
L 11/12/2018 - 19:58:09: Team "CT" scored "1" with "5" players
L 11/12/2018 - 19:58:09: Team "TERRORIST" scored "0" with "5" players
L 11/12/2018 - 19:58:09: World triggered "Round_End"
L 11/12/2018 - 19:58:09: "Duffy<2><BOT><CT>" money change 1100+3250 = $4350 (tracked)
L 11/12/2018 - 19:58:09: "Ron<3><BOT><CT>" money change 1100+3250 = $4350 (tracked)
L 11/12/2018 - 19:58:09: "Martin<6><BOT><CT>" money change 800+3250 = $4050 (tracked)
L 11/12/2018 - 19:58:09: "Jon<8><BOT><CT>" money change 1100+3250 = $4350 (tracked)
L 11/12/2018 - 19:58:09: "Dean<10><BOT><CT>" money change 1400+3250 = $4650 (tracked)
L 11/12/2018 - 19:58:09: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 19:58:09: "Scott<4><BOT><TERRORIST>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 19:58:09: "Bill<5><BOT><TERRORIST>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 19:58:09: "Orin<7><BOT><TERRORIST>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 19:58:09: "Wyatt<9><BOT><TERRORIST>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 19:58:15: World triggered "Restart_Round_(1_second)"
L 11/12/2018 - 19:58:15: Team "CT" scored "1" with "5" players
L 11/12/2018 - 19:58:15: Team "TERRORIST" scored "0" with "5" players
L 11/12/2018 - 19:58:16: "Duffy<3><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:58:16: "Duffy<3><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:58:16: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:58:16: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:58:16: "Martin<7><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:58:16: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:58:16: "Jon<9><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:58:16: "Jon<9><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:58:16: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:58:16: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:58:16: Starting Freeze period
L 11/12/2018 - 19:58:16: "Orin<8><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:58:16: "Orin<8><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:58:16: "Jon<9><BOT><CT>" picked up "knife"
L 11/12/2018 - 19:58:16: "Jon<9><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 19:58:16: "Martin<7><BOT><CT>" picked up "knife"
L 11/12/2018 - 19:58:16: "Martin<7><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 19:58:16: "Bill<6><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:58:16: "Bill<6><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:58:16: "Dean<11><BOT><CT>" picked up "knife"
L 11/12/2018 - 19:58:16: "Dean<11><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 19:58:16: "Ron<4><BOT><CT>" picked up "knife"
L 11/12/2018 - 19:58:16: "Ron<4><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 19:58:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:58:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:58:16: "Duffy<3><BOT><CT>" picked up "knife"
L 11/12/2018 - 19:58:16: "Duffy<3><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 19:58:16: "Wyatt<10><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:58:16: "Wyatt<10><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:58:16: "Scott<5><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:58:16: "Scott<5><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:58:16: World triggered "Match_Start" on "de_cache"
L 11/12/2018 - 19:58:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 19:58:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 19:58:31: World triggered "Round_Start"
L 11/12/2018 - 19:58:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 19:58:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 19:58:52: "Scott<5><BOT><TERRORIST>" [1093 -850 1614] attacked "Jon<9><BOT><CT>" [972 -539 1614] with "glock" (damage "33") (damage_armor "0") (health "67") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:52: "Scott<5><BOT><TERRORIST>" [1092 -864 1614] attacked "Martin<7><BOT><CT>" [969 -507 1614] with "glock" (damage "33") (damage_armor "0") (health "67") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:52: "Jon<9><BOT><CT>" [923 -546 1614] attacked "Orin<8><BOT><TERRORIST>" [998 -910 1614] with "hkp2000" (damage "32") (damage_armor "0") (health "68") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:58:53: "Wyatt<10><BOT><TERRORIST>" [1456 -739 1614] attacked "Jon<9><BOT><CT>" [919 -546 1614] with "glock" (damage "25") (damage_armor "0") (health "42") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:58:53: "Scott<5><BOT><TERRORIST>" [1109 -854 1614] attacked "Jon<9><BOT><CT>" [919 -546 1614] with "glock" (damage "33") (damage_armor "0") (health "9") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:53: "Scott<5><BOT><TERRORIST>" [1119 -831 1614] attacked "Jon<9><BOT><CT>" [919 -546 1614] with "glock" (damage "33") (damage_armor "0") (health "0") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:53: "Jon<9><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:58:53: "Jon<9><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:58:53: "Scott<5><BOT><TERRORIST>" [1119 -831 1614] killed "Jon<9><BOT><CT>" [919 -546 1678] with "glock"
L 11/12/2018 - 19:58:53: "Scott<4><BOT><TERRORIST>" money change 800+300 = $1100 (tracked)
L 11/12/2018 - 19:58:55: "Scott<5><BOT><TERRORIST>" [1142 -822 1614] attacked "Martin<7><BOT><CT>" [969 -507 1614] with "glock" (damage "33") (damage_armor "0") (health "34") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:55: "Martin<7><BOT><CT>" [969 -507 1614] attacked "Orin<8><BOT><TERRORIST>" [989 -932 1614] with "hkp2000" (damage "129") (damage_armor "0") (health "0") (armor "0") (hitgroup "head")
L 11/12/2018 - 19:58:55: "Orin<8><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:58:55: "Orin<8><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:58:55: "Martin<7><BOT><CT>" [969 -507 1614] killed "Orin<8><BOT><TERRORIST>" [989 -932 1678] with "hkp2000" (headshot)
L 11/12/2018 - 19:58:55: "Martin<6><BOT><CT>" money change 800+300 = $1100 (tracked)
L 11/12/2018 - 19:58:55: "Ron<4><BOT><CT>" [997 -466 1614] attacked "Scott<5><BOT><TERRORIST>" [1147 -819 1614] with "hkp2000" (damage "40") (damage_armor "0") (health "60") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:55: "Scott<5><BOT><TERRORIST>" [1174 -805 1614] attacked "Duffy<3><BOT><CT>" [961 -441 1614] with "glock" (damage "32") (damage_armor "0") (health "68") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:56: "Scott<5><BOT><TERRORIST>" [1188 -797 1614] attacked "Martin<7><BOT><CT>" [969 -507 1614] with "glock" (damage "33") (damage_armor "0") (health "1") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:56: "Martin<7><BOT><CT>" [969 -507 1614] attacked "Scott<5><BOT><TERRORIST>" [1188 -797 1614] with "hkp2000" (damage "40") (damage_armor "0") (health "20") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:58:57: "Martin<7><BOT><CT>" [969 -507 1614] attacked "Scott<5><BOT><TERRORIST>" [1244 -754 1614] with "hkp2000" (damage "24") (damage_armor "0") (health "0") (armor "0") (hitgroup "left leg")
L 11/12/2018 - 19:58:57: "Scott<5><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:58:57: "Scott<5><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:58:57: "Martin<7><BOT><CT>" [969 -507 1614] killed "Scott<5><BOT><TERRORIST>" [1244 -754 1678] with "hkp2000"
L 11/12/2018 - 19:58:57: "Martin<6><BOT><CT>" money change 1100+300 = $1400 (tracked)
L 11/12/2018 - 19:59:00: "Player<2><STEAM_1:1:0101011><TERRORIST>" say_team "hello"
L 11/12/2018 - 19:59:00: "Bill<6><BOT><TERRORIST>" picked up "c4"
L 11/12/2018 - 19:59:00: "Bill<6><BOT><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 19:59:01: "Wyatt<10><BOT><TERRORIST>" [1634 -734 1613] attacked "Duffy<3><BOT><CT>" [1136 -626 1614] with "glock" (damage "31") (damage_armor "0") (health "37") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:59:01: "Duffy<3><BOT><CT>" [1136 -626 1614] attacked "Wyatt<10><BOT><TERRORIST>" [1634 -734 1613] with "hkp2000" (damage "39") (damage_armor "0") (health "61") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:59:02: "Duffy<3><BOT><CT>" [1136 -626 1614] attacked "Wyatt<10><BOT><TERRORIST>" [1634 -734 1613] with "hkp2000" (damage "39") (damage_armor "0") (health "22") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:59:02: "Duffy<3><BOT><CT>" [1136 -626 1614] attacked "Wyatt<10><BOT><TERRORIST>" [1634 -734 1613] with "hkp2000" (damage "39") (damage_armor "0") (health "0") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:59:02: "Wyatt<10><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:59:02: "Wyatt<10><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:59:02: "Duffy<3><BOT><CT>" [1136 -626 1614] killed "Wyatt<10><BOT><TERRORIST>" [1634 -734 1677] with "hkp2000"
L 11/12/2018 - 19:59:02: "Duffy<2><BOT><CT>" money change 800+300 = $1100 (tracked)
L 11/12/2018 - 19:59:14: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2973 250 1613] attacked "Ron<4><BOT><CT>" [2619 -219 1613] with "glock" (damage "99") (damage_armor "0") (health "1") (armor "0") (hitgroup "head")
L 11/12/2018 - 19:59:14: "Ron<4><BOT><CT>" [2619 -219 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [2973 250 1613] with "hkp2000" (damage "23") (damage_armor "0") (health "77") (armor "0") (hitgroup "left leg")
L 11/12/2018 - 19:59:14: "Ron<4><BOT><CT>" [2619 -219 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [2982 243 1613] with "hkp2000" (damage "31") (damage_armor "0") (health "46") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:59:14: "Ron<4><BOT><CT>" [2619 -219 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [2972 251 1613] with "hkp2000" (damage "31") (damage_armor "0") (health "15") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:59:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2970 252 1613] attacked "Ron<4><BOT><CT>" [2619 -219 1613] with "glock" (damage "99") (damage_armor "0") (health "0") (armor "0") (hitgroup "head")
L 11/12/2018 - 19:59:15: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:59:15: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:59:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2970 252 1613] killed "Ron<4><BOT><CT>" [2619 -219 1677] with "glock" (headshot)
L 11/12/2018 - 19:59:15: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 800+300 = $1100 (tracked)
L 11/12/2018 - 19:59:15: "Martin<7><BOT><CT>" [2791 -148 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [2982 243 1613] with "hkp2000" (damage "40") (damage_armor "0") (health "0") (armor "0") (hitgroup "stomach")
L 11/12/2018 - 19:59:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:59:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:59:15: "Martin<7><BOT><CT>" [2791 -148 1613] killed "Player<2><STEAM_1:1:0101011><TERRORIST>" [2982 243 1677] with "hkp2000"
L 11/12/2018 - 19:59:15: "Ron<4><BOT><CT>" assisted killing "Player<2><STEAM_1:1:0101011><TERRORIST>"
L 11/12/2018 - 19:59:15: "Martin<6><BOT><CT>" money change 1400+300 = $1700 (tracked)
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 19:59:16: "Bill<6><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 19:59:16: "Bill<6><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:59:16: "Bill<6><BOT><TERRORIST>" dropped "c4"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 19:59:16: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 19:59:23: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 800+300 = $1100 (tracked)
L 11/12/2018 - 19:59:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Planted_The_Bomb"
L 11/12/2018 - 19:59:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 19:59:40: "Martin<7><BOT><CT>" [955 2004 1702] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [672 2193 1702] with "hkp2000" (damage "32") (damage_armor "0") (health "68") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:59:41: "Player<2><STEAM_1:1:0101011><TERRORIST>" [726 2195 1715] attacked "Martin<7><BOT><CT>" [955 2004 1702] with "glock" (damage "27") (damage_armor "0") (health "0") (armor "0") (hitgroup "chest")
L 11/12/2018 - 19:59:41: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:59:41: "Martin<7><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:59:41: "Player<2><STEAM_1:1:0101011><TERRORIST>" [726 2195 1715] killed "Martin<7><BOT><CT>" [955 2004 1766] with "glock"
L 11/12/2018 - 19:59:41: "Scott<5><BOT><TERRORIST>" assisted killing "Martin<7><BOT><CT>"
L 11/12/2018 - 19:59:41: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 1100+300 = $1400 (tracked)
L 11/12/2018 - 19:59:45: "Dean<11><BOT><CT>" triggered "Begin_Bomb_Defuse_Without_Kit"
L 11/12/2018 - 19:59:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [236 2042 1687] attacked "Dean<11><BOT><CT>" [-36 1986 1687] with "glock" (damage "109") (damage_armor "0") (health "0") (armor "0") (hitgroup "head")
L 11/12/2018 - 19:59:49: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 19:59:49: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 19:59:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [236 2042 1687] killed "Dean<11><BOT><CT>" [-36 1986 1751] with "glock" (headshot)
L 11/12/2018 - 19:59:49: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 1400+300 = $1700 (tracked)
L 11/12/2018 - 19:59:57: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 19:59:57: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "hkp2000"
L 11/12/2018 - 20:00:04: Team "TERRORIST" triggered "SFUI_Notice_Target_Bombed" (CT "0") (T "1")
L 11/12/2018 - 20:00:04: Team "CT" scored "0" with "5" players
L 11/12/2018 - 20:00:04: Team "TERRORIST" scored "1" with "5" players
L 11/12/2018 - 20:00:04: World triggered "Round_End"
L 11/12/2018 - 20:00:04: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 1700+3500 = $5200 (tracked)
L 11/12/2018 - 20:00:04: "Scott<4><BOT><TERRORIST>" money change 1100+3500 = $4600 (tracked)
L 11/12/2018 - 20:00:04: "Orin<7><BOT><TERRORIST>" money change 800+3500 = $4300 (tracked)
L 11/12/2018 - 20:00:04: "Wyatt<9><BOT><TERRORIST>" money change 800+3500 = $4300 (tracked)
L 11/12/2018 - 20:00:04: "Duffy<2><BOT><CT>" money change 1100+1900 = $3000 (tracked)
L 11/12/2018 - 20:00:04: "Ron<3><BOT><CT>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 20:00:04: "Martin<6><BOT><CT>" money change 1700+1900 = $3600 (tracked)
L 11/12/2018 - 20:00:04: "Jon<8><BOT><CT>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 20:00:04: "Dean<10><BOT><CT>" money change 800+1900 = $2700 (tracked)
L 11/12/2018 - 20:00:11: "Bill<6><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:00:11: "Bill<6><BOT><TERRORIST>" picked up "hkp2000"
L 11/12/2018 - 20:00:11: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:00:11: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "hkp2000"
L 11/12/2018 - 20:00:11: Starting Freeze period
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:00:11: "Scott<5><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:00:11: "Scott<5><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:00:11: "Jon<9><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:00:11: "Jon<9><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:00:11: "Wyatt<10><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:00:11: "Wyatt<10><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:00:11: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:00:11: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:00:11: "Orin<8><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:00:11: "Orin<8><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:00:11: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:00:11: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:00:11: "Martin<6><BOT><CT>" money change 3600-1800 = $1800 (tracked) (purchase: weapon_mag7)
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" picked up "mag7"
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" purchased "mag7"
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Martin<6><BOT><CT>" money change 1800-1000 = $800 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Martin<6><BOT><CT>" money change 800-300 = $500 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" picked up "hegrenade"
L 11/12/2018 - 20:00:11: "Martin<7><BOT><CT>" purchased "hegrenade"
L 11/12/2018 - 20:00:11: "Jon<8><BOT><CT>" money change 2700-1250 = $1450 (tracked) (purchase: weapon_mp9)
L 11/12/2018 - 20:00:11: "Jon<9><BOT><CT>" picked up "mp9"
L 11/12/2018 - 20:00:11: "Jon<9><BOT><CT>" purchased "mp9"
L 11/12/2018 - 20:00:11: "Jon<9><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Jon<8><BOT><CT>" money change 1450-1000 = $450 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Jon<9><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Dean<10><BOT><CT>" money change 2700-2000 = $700 (tracked) (purchase: weapon_xm1014)
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" picked up "xm1014"
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" purchased "xm1014"
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" picked up "vest"
L 11/12/2018 - 20:00:11: "Dean<10><BOT><CT>" money change 700-650 = $50 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" purchased "item_kevlar"
L 11/12/2018 - 20:00:11: "Dean<10><BOT><CT>" money change 50-50 = $0 (tracked) (purchase: weapon_decoy)
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" picked up "decoy"
L 11/12/2018 - 20:00:11: "Dean<11><BOT><CT>" purchased "decoy"
L 11/12/2018 - 20:00:11: "Ron<3><BOT><CT>" money change 2700-1250 = $1450 (tracked) (purchase: weapon_mp9)
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" picked up "mp9"
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" purchased "mp9"
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Ron<3><BOT><CT>" money change 1450-1000 = $450 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Ron<3><BOT><CT>" money change 450-300 = $150 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" picked up "hegrenade"
L 11/12/2018 - 20:00:11: "Ron<4><BOT><CT>" purchased "hegrenade"
L 11/12/2018 - 20:00:11: "Bill<5><BOT><TERRORIST>" money change 5200-2350 = $2850 (tracked) (purchase: weapon_p90)
L 11/12/2018 - 20:00:11: "Bill<6><BOT><TERRORIST>" picked up "p90"
L 11/12/2018 - 20:00:11: "Bill<6><BOT><TERRORIST>" purchased "p90"
L 11/12/2018 - 20:00:11: "Bill<6><BOT><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Bill<5><BOT><TERRORIST>" money change 2850-1000 = $1850 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Bill<6><BOT><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Orin<7><BOT><TERRORIST>" money change 4300-2000 = $2300 (tracked) (purchase: weapon_galilar)
L 11/12/2018 - 20:00:11: "Orin<8><BOT><TERRORIST>" picked up "galilar"
L 11/12/2018 - 20:00:11: "Orin<8><BOT><TERRORIST>" purchased "galilar"
L 11/12/2018 - 20:00:11: "Orin<8><BOT><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Orin<7><BOT><TERRORIST>" money change 2300-1000 = $1300 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Orin<8><BOT><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Wyatt<9><BOT><TERRORIST>" money change 4300-2000 = $2300 (tracked) (purchase: weapon_galilar)
L 11/12/2018 - 20:00:11: "Wyatt<10><BOT><TERRORIST>" picked up "galilar"
L 11/12/2018 - 20:00:11: "Wyatt<10><BOT><TERRORIST>" purchased "galilar"
L 11/12/2018 - 20:00:11: "Wyatt<10><BOT><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Wyatt<9><BOT><TERRORIST>" money change 2300-1000 = $1300 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Wyatt<10><BOT><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Scott<4><BOT><TERRORIST>" money change 4600-2000 = $2600 (tracked) (purchase: weapon_galilar)
L 11/12/2018 - 20:00:11: "Scott<5><BOT><TERRORIST>" picked up "galilar"
L 11/12/2018 - 20:00:11: "Scott<5><BOT><TERRORIST>" purchased "galilar"
L 11/12/2018 - 20:00:11: "Scott<5><BOT><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Scott<4><BOT><TERRORIST>" money change 2600-1000 = $1600 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Scott<5><BOT><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Duffy<2><BOT><CT>" money change 3000-1700 = $1300 (tracked) (purchase: weapon_ssg08)
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" picked up "ssg08"
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" purchased "ssg08"
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:00:11: "Duffy<2><BOT><CT>" money change 1300-1000 = $300 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:11: "Duffy<2><BOT><CT>" money change 300-300 = $0 (tracked) (purchase: weapon_p250)
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" picked up "p250"
L 11/12/2018 - 20:00:11: "Duffy<3><BOT><CT>" purchased "p250"
L 11/12/2018 - 20:00:13: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 4600-2700 = $1900 (tracked) (purchase: weapon_ak47)
L 11/12/2018 - 20:00:13: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "ak47"
L 11/12/2018 - 20:00:13: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "ak47"
L 11/12/2018 - 20:00:14: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:00:14: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 1900-1000 = $900 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:00:14: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:00:15: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 900-300 = $600 (tracked) (purchase: weapon_smokegrenade)
L 11/12/2018 - 20:00:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:00:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "smokegrenade"
L 11/12/2018 - 20:00:15: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 600-400 = $200 (tracked) (purchase: weapon_molotov)
L 11/12/2018 - 20:00:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:00:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "molotov"
L 11/12/2018 - 20:00:15: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 200-200 = $0 (tracked) (purchase: weapon_flashbang)
L 11/12/2018 - 20:00:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "flashbang"
L 11/12/2018 - 20:00:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "flashbang"
L 11/12/2018 - 20:00:26: World triggered "Round_Start"
L 11/12/2018 - 20:00:37: "Dean<11><BOT><CT>" dropped "decoy"
L 11/12/2018 - 20:00:41: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 20:00:41: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:00:44: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:00:44: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:00:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2695 42 1613] attacked "Duffy<3><BOT><CT>" [1180 60 1614] with "ak47" (damage "6") (damage_armor "0") (health "94") (armor "99") (hitgroup "chest")
L 11/12/2018 - 20:00:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2695 42 1613] attacked "Duffy<3><BOT><CT>" [1186 58 1614] with "ak47" (damage "6") (damage_armor "0") (health "88") (armor "98") (hitgroup "chest")
L 11/12/2018 - 20:00:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2695 42 1613] attacked "Duffy<3><BOT><CT>" [1191 60 1614] with "ak47" (damage "6") (damage_armor "0") (health "82") (armor "97") (hitgroup "chest")
L 11/12/2018 - 20:00:49: "Duffy<3><BOT><CT>" [1260 78 1614] attacked "Wyatt<10><BOT><TERRORIST>" [1057 -319 1614] with "ssg08" (damage "91") (damage_armor "8") (health "9") (armor "91") (hitgroup "stomach")
L 11/12/2018 - 20:00:51: "Orin<8><BOT><TERRORIST>" [1490 537 1613] attacked "Dean<11><BOT><CT>" [1526 184 1614] with "galilar" (damage "22") (damage_armor "0") (health "78") (armor "100") (hitgroup "right leg")
L 11/12/2018 - 20:00:51: "Orin<8><BOT><TERRORIST>" [1490 537 1613] attacked "Dean<11><BOT><CT>" [1526 184 1614] with "galilar" (damage "28") (damage_armor "4") (health "50") (armor "95") (hitgroup "stomach")
L 11/12/2018 - 20:00:51: "Orin<8><BOT><TERRORIST>" [1490 537 1613] attacked "Dean<11><BOT><CT>" [1526 184 1614] with "galilar" (damage "28") (damage_armor "4") (health "22") (armor "90") (hitgroup "stomach")
L 11/12/2018 - 20:00:51: "Orin<8><BOT><TERRORIST>" [1490 537 1613] attacked "Dean<11><BOT><CT>" [1526 184 1614] with "galilar" (damage "22") (damage_armor "3") (health "0") (armor "86") (hitgroup "chest")
L 11/12/2018 - 20:00:51: "Dean<11><BOT><CT>" dropped "xm1014"
L 11/12/2018 - 20:00:51: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:00:51: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:00:51: "Orin<8><BOT><TERRORIST>" [1490 537 1613] killed "Dean<11><BOT><CT>" [1526 184 1678] with "galilar"
L 11/12/2018 - 20:00:51: "Orin<7><BOT><TERRORIST>" money change 1300+300 = $1600 (tracked)
L 11/12/2018 - 20:00:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1708 245 1614] attacked "Ron<4><BOT><CT>" [1167 -1 1614] with "ak47" (damage "27") (damage_armor "3") (health "73") (armor "96") (hitgroup "chest")
L 11/12/2018 - 20:00:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1708 245 1614] attacked "Martin<7><BOT><CT>" [1130 -22 1614] with "ak47" (damage "17") (damage_armor "2") (health "83") (armor "97") (hitgroup "chest")
L 11/12/2018 - 20:00:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1707 244 1614] attacked "Ron<4><BOT><CT>" [1166 -13 1614] with "ak47" (damage "27") (damage_armor "3") (health "46") (armor "92") (hitgroup "chest")
L 11/12/2018 - 20:00:53: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1707 244 1614] attacked "Ron<4><BOT><CT>" [1185 11 1614] with "ak47" (damage "109") (damage_armor "15") (health "0") (armor "76") (hitgroup "head")
L 11/12/2018 - 20:00:53: "Ron<4><BOT><CT>" dropped "mp9"
L 11/12/2018 - 20:00:53: "Ron<4><BOT><CT>" dropped "hegrenade"
L 11/12/2018 - 20:00:53: "Ron<4><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:00:53: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:00:53: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:00:53: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1707 244 1614] killed "Ron<4><BOT><CT>" [1185 11 1678] with "ak47" (headshot)
L 11/12/2018 - 20:00:53: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 0+300 = $300 (tracked)
L 11/12/2018 - 20:00:53: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1707 244 1614] attacked "Martin<7><BOT><CT>" [1133 -24 1614] with "ak47" (damage "68") (damage_armor "9") (health "15") (armor "87") (hitgroup "head")
L 11/12/2018 - 20:00:53: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1709 245 1614] attacked "Jon<9><BOT><CT>" [1262 83 1614] with "ak47" (damage "109") (damage_armor "15") (health "0") (armor "84") (hitgroup "head")
L 11/12/2018 - 20:00:53: "Jon<9><BOT><CT>" dropped "mp9"
L 11/12/2018 - 20:00:53: "Jon<9><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:00:53: "Jon<9><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:00:53: "Jon<9><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:00:53: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1709 245 1614] killed "Jon<9><BOT><CT>" [1262 83 1678] with "ak47" (headshot)
L 11/12/2018 - 20:00:53: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 300+300 = $600 (tracked)
L 11/12/2018 - 20:00:54: "Dean<11><BOT><CT>" threw decoy [1052 280 1616]
L 11/12/2018 - 20:00:54: "Martin<7><BOT><CT>" [1133 -24 1614] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [1818 257 1613] with "hkp2000" (damage "22") (damage_armor "0") (health "78") (armor "100") (hitgroup "right leg")
L 11/12/2018 - 20:00:54: "Martin<7><BOT><CT>" [1133 -24 1614] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [1821 261 1613] with "hkp2000" (damage "15") (damage_armor "7") (health "63") (armor "92") (hitgroup "right arm")
L 11/12/2018 - 20:00:55: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1821 261 1613] attacked "Martin<7><BOT><CT>" [1133 -24 1614] with "ak47" (damage "26") (damage_armor "0") (health "0") (armor "87") (hitgroup "left leg")
L 11/12/2018 - 20:00:55: "Martin<7><BOT><CT>" dropped "mag7"
L 11/12/2018 - 20:00:55: "Martin<7><BOT><CT>" dropped "hegrenade"
L 11/12/2018 - 20:00:55: "Martin<7><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:00:55: "Martin<7><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:00:55: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:00:55: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1821 261 1613] killed "Martin<7><BOT><CT>" [1133 -24 1678] with "ak47"
L 11/12/2018 - 20:00:55: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 600+300 = $900 (tracked)
L 11/12/2018 - 20:00:55: "Wyatt<10><BOT><TERRORIST>" [979 -518 1614] attacked "Duffy<3><BOT><CT>" [981 -485 1614] with "galilar" (damage "29") (damage_armor "4") (health "53") (armor "92") (hitgroup "stomach")
L 11/12/2018 - 20:00:57: "Wyatt<10><BOT><TERRORIST>" [1034 -543 1614] attacked "Duffy<3><BOT><CT>" [885 -358 1614] with "galilar" (damage "22") (damage_armor "0") (health "31") (armor "92") (hitgroup "left leg")
L 11/12/2018 - 20:00:57: "Wyatt<10><BOT><TERRORIST>" [1034 -543 1614] attacked "Duffy<3><BOT><CT>" [851 -371 1614] with "galilar" (damage "28") (damage_armor "4") (health "3") (armor "87") (hitgroup "stomach")
L 11/12/2018 - 20:00:57: "Wyatt<10><BOT><TERRORIST>" [1034 -543 1614] attacked "Duffy<3><BOT><CT>" [852 -370 1614] with "galilar" (damage "23") (damage_armor "3") (health "0") (armor "83") (hitgroup "chest")
L 11/12/2018 - 20:00:57: "Duffy<3><BOT><CT>" dropped "ssg08"
L 11/12/2018 - 20:00:57: "Duffy<3><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:00:57: "Duffy<3><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:00:57: "Duffy<3><BOT><CT>" dropped "p250"
L 11/12/2018 - 20:00:57: "Wyatt<10><BOT><TERRORIST>" [1034 -543 1614] killed "Duffy<3><BOT><CT>" [852 -370 1678] with "galilar"
L 11/12/2018 - 20:00:57: "Wyatt<9><BOT><TERRORIST>" money change 1300+300 = $1600 (tracked)
L 11/12/2018 - 20:00:57: Team "TERRORIST" triggered "SFUI_Notice_Terrorists_Win" (CT "0") (T "2")
L 11/12/2018 - 20:00:57: Team "CT" scored "0" with "5" players
L 11/12/2018 - 20:00:57: Team "TERRORIST" scored "2" with "5" players
L 11/12/2018 - 20:00:57: World triggered "Round_End"
L 11/12/2018 - 20:00:57: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 900+3250 = $4150 (tracked)
L 11/12/2018 - 20:00:57: "Scott<4><BOT><TERRORIST>" money change 1600+3250 = $4850 (tracked)
L 11/12/2018 - 20:00:57: "Bill<5><BOT><TERRORIST>" money change 1850+3250 = $5100 (tracked)
L 11/12/2018 - 20:00:57: "Orin<7><BOT><TERRORIST>" money change 1600+3250 = $4850 (tracked)
L 11/12/2018 - 20:00:57: "Wyatt<9><BOT><TERRORIST>" money change 1600+3250 = $4850 (tracked)
L 11/12/2018 - 20:00:57: "Duffy<2><BOT><CT>" money change 0+2400 = $2400 (tracked)
L 11/12/2018 - 20:00:57: "Ron<3><BOT><CT>" money change 150+2400 = $2550 (tracked)
L 11/12/2018 - 20:00:57: "Martin<6><BOT><CT>" money change 500+2400 = $2900 (tracked)
L 11/12/2018 - 20:00:57: "Jon<8><BOT><CT>" money change 450+2400 = $2850 (tracked)
L 11/12/2018 - 20:00:57: "Dean<10><BOT><CT>" money change 0+2400 = $2400 (tracked)
L 11/12/2018 - 20:01:00: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "hegrenade"
L 11/12/2018 - 20:01:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "hegrenade"
L 11/12/2018 - 20:01:04: Starting Freeze period
L 11/12/2018 - 20:01:04: "Duffy<3><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:01:04: "Duffy<3><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:01:04: "Dean<11><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:01:04: "Dean<11><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:01:04: "Martin<7><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:01:04: "Martin<7><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:01:04: "Ron<4><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:01:04: "Ron<4><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:01:04: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:01:04: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:01:04: "Scott<4><BOT><TERRORIST>" money change 4850-300 = $4550 (tracked) (purchase: weapon_p250)
L 11/12/2018 - 20:01:04: "Scott<5><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:01:04: "Scott<5><BOT><TERRORIST>" picked up "p250"
L 11/12/2018 - 20:01:04: "Scott<5><BOT><TERRORIST>" purchased "p250"
L 11/12/2018 - 20:01:04: "Martin<6><BOT><CT>" money change 2900-2000 = $900 (tracked) (purchase: weapon_xm1014)
L 11/12/2018 - 20:01:04: "Martin<7><BOT><CT>" picked up "xm1014"
L 11/12/2018 - 20:01:04: "Martin<7><BOT><CT>" purchased "xm1014"
L 11/12/2018 - 20:01:04: "Martin<7><BOT><CT>" picked up "vest"
L 11/12/2018 - 20:01:04: "Martin<6><BOT><CT>" money change 900-650 = $250 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:01:04: "Martin<7><BOT><CT>" purchased "item_kevlar"
L 11/12/2018 - 20:01:04: "Jon<8><BOT><CT>" money change 2850-1400 = $1450 (tracked) (purchase: weapon_bizon)
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" picked up "bizon"
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" purchased "bizon"
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:01:04: "Jon<8><BOT><CT>" money change 1450-1000 = $450 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:01:04: "Jon<8><BOT><CT>" money change 450-300 = $150 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" picked up "hegrenade"
L 11/12/2018 - 20:01:04: "Jon<9><BOT><CT>" purchased "hegrenade"
L 11/12/2018 - 20:01:04: "Dean<10><BOT><CT>" money change 2400-1500 = $900 (tracked) (purchase: weapon_mp7)
L 11/12/2018 - 20:01:04: "Dean<11><BOT><CT>" picked up "mp7"
L 11/12/2018 - 20:01:04: "Dean<11><BOT><CT>" purchased "mp7"
L 11/12/2018 - 20:01:04: "Dean<11><BOT><CT>" picked up "vest"
L 11/12/2018 - 20:01:04: "Dean<10><BOT><CT>" money change 900-650 = $250 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:01:04: "Dean<11><BOT><CT>" purchased "item_kevlar"
L 11/12/2018 - 20:01:05: "Orin<7><BOT><TERRORIST>" money change 4850-400 = $4450 (tracked) (purchase: weapon_molotov)
L 11/12/2018 - 20:01:05: "Orin<8><BOT><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:01:05: "Orin<8><BOT><TERRORIST>" purchased "molotov"
L 11/12/2018 - 20:01:05: "Wyatt<10><BOT><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:01:05: "Wyatt<9><BOT><TERRORIST>" money change 4850-650 = $4200 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:01:05: "Wyatt<10><BOT><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:01:05: "Ron<3><BOT><CT>" money change 2550-2000 = $550 (tracked) (purchase: weapon_xm1014)
L 11/12/2018 - 20:01:05: "Ron<4><BOT><CT>" picked up "xm1014"
L 11/12/2018 - 20:01:05: "Ron<4><BOT><CT>" purchased "xm1014"
L 11/12/2018 - 20:01:05: "Duffy<2><BOT><CT>" money change 2400-1700 = $700 (tracked) (purchase: weapon_ssg08)
L 11/12/2018 - 20:01:05: "Duffy<3><BOT><CT>" picked up "ssg08"
L 11/12/2018 - 20:01:05: "Duffy<3><BOT><CT>" purchased "ssg08"
L 11/12/2018 - 20:01:05: "Duffy<3><BOT><CT>" picked up "vest"
L 11/12/2018 - 20:01:05: "Duffy<2><BOT><CT>" money change 700-650 = $50 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:01:05: "Duffy<3><BOT><CT>" purchased "item_kevlar"
L 11/12/2018 - 20:01:06: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:01:06: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 4150-650 = $3500 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:01:06: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:01:07: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 3500-300 = $3200 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:01:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "hegrenade"
L 11/12/2018 - 20:01:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "hegrenade"
L 11/12/2018 - 20:01:20: World triggered "Round_Start"
L 11/12/2018 - 20:01:30: "Player<2><STEAM_1:1:0101011><TERRORIST>" [856 264 1614] attacked "Ron<4><BOT><CT>" [-285 81 1699] with "ak47" (damage "25") (damage_armor "0") (health "75") (armor "0") (hitgroup "left leg")
L 11/12/2018 - 20:01:31: "Player<2><STEAM_1:1:0101011><TERRORIST>" [858 249 1614] attacked "Ron<4><BOT><CT>" [-301 75 1662] with "ak47" (damage "34") (damage_armor "0") (health "41") (armor "0") (hitgroup "chest")
L 11/12/2018 - 20:01:32: "Player<2><STEAM_1:1:0101011><TERRORIST>" [858 249 1614] attacked "Ron<4><BOT><CT>" [-300 69 1662] with "ak47" (damage "34") (damage_armor "0") (health "7") (armor "0") (hitgroup "left arm")
L 11/12/2018 - 20:01:32: "Player<2><STEAM_1:1:0101011><TERRORIST>" [858 249 1614] attacked "Ron<4><BOT><CT>" [-301 65 1662] with "ak47" (damage "25") (damage_armor "0") (health "0") (armor "0") (hitgroup "right leg")
L 11/12/2018 - 20:01:32: "Ron<4><BOT><CT>" dropped "xm1014"
L 11/12/2018 - 20:01:32: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:01:32: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:01:32: "Player<2><STEAM_1:1:0101011><TERRORIST>" [858 249 1614] killed "Ron<4><BOT><CT>" [-301 65 1726] with "ak47"
L 11/12/2018 - 20:01:32: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 3200+300 = $3500 (tracked)
L 11/12/2018 - 20:01:37: "Player<2><STEAM_1:1:0101011><TERRORIST>" [480 -67 1782] attacked "Jon<9><BOT><CT>" [-134 362 1613] with "ak47" (damage "27") (damage_armor "3") (health "73") (armor "96") (hitgroup "chest")
L 11/12/2018 - 20:01:37: "Player<2><STEAM_1:1:0101011><TERRORIST>" [480 -67 1782] attacked "Jon<9><BOT><CT>" [-133 359 1613] with "ak47" (damage "27") (damage_armor "3") (health "46") (armor "92") (hitgroup "chest")
L 11/12/2018 - 20:01:37: "Player<2><STEAM_1:1:0101011><TERRORIST>" [480 -67 1782] attacked "Jon<9><BOT><CT>" [-135 353 1613] with "ak47" (damage "27") (damage_armor "3") (health "19") (armor "88") (hitgroup "chest")
L 11/12/2018 - 20:01:37: "Jon<9><BOT><CT>" dropped "hegrenade"
L 11/12/2018 - 20:01:37: "Player<2><STEAM_1:1:0101011><TERRORIST>" [471 -80 1783] attacked "Jon<9><BOT><CT>" [-139 336 1613] with "ak47" (damage "27") (damage_armor "3") (health "0") (armor "84") (hitgroup "chest")
L 11/12/2018 - 20:01:37: "Jon<9><BOT><CT>" dropped "bizon"
L 11/12/2018 - 20:01:37: "Jon<9><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:01:37: "Jon<9><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:01:37: "Jon<9><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:01:37: "Player<2><STEAM_1:1:0101011><TERRORIST>" [471 -80 1783] killed "Jon<9><BOT><CT>" [-139 336 1677] with "ak47"
L 11/12/2018 - 20:01:37: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 3500+300 = $3800 (tracked)
L 11/12/2018 - 20:01:39: "Jon<9><BOT><CT>" threw hegrenade [471 193 1636]
L 11/12/2018 - 20:01:48: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "flashbang"
L 11/12/2018 - 20:01:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw flashbang [-145 979 1689] flashbang entindex 124)
L 11/12/2018 - 20:01:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" blinded for 0.98 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:01:49: "Bill<6><BOT><TERRORIST>" blinded for 1.78 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:01:49: "Orin<8><BOT><TERRORIST>" blinded for 1.76 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:01:59: "Dean<11><BOT><CT>" [-65 1873 1687] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1695] with "mp7" (damage "19") (damage_armor "0") (health "81") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:01:59: "Dean<11><BOT><CT>" [-65 1873 1687] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1695] with "mp7" (damage "19") (damage_armor "0") (health "62") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:02:00: "Dean<11><BOT><CT>" [-65 1873 1687] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1695] with "mp7" (damage "19") (damage_armor "0") (health "43") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:02:01: "Dean<11><BOT><CT>" [-65 1873 1687] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1695] with "mp7" (damage "19") (damage_armor "0") (health "24") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:02:01: "Dean<11><BOT><CT>" [-65 1873 1687] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1695] with "mp7" (damage "19") (damage_armor "5") (health "5") (armor "94") (hitgroup "stomach")
L 11/12/2018 - 20:02:01: "Dean<11><BOT><CT>" [-65 1873 1687] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1695] with "mp7" (damage "19") (damage_armor "5") (health "0") (armor "88") (hitgroup "stomach")
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "ak47"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "vesthelm"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:02:01: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "hegrenade"
L 11/12/2018 - 20:02:01: "Dean<11><BOT><CT>" [-65 1873 1687] killed "Player<2><STEAM_1:1:0101011><TERRORIST>" [-387 1624 1741] with "mp7"
L 11/12/2018 - 20:02:01: "Dean<10><BOT><CT>" money change 250+600 = $850 (tracked)
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "p250"
L 11/12/2018 - 20:02:03: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "galilar"
L 11/12/2018 - 20:02:03: "Scott<5><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:02:03: "Scott<5><BOT><TERRORIST>" dropped "p250"
L 11/12/2018 - 20:02:03: "Scott<5><BOT><TERRORIST>" dropped "galilar"
L 11/12/2018 - 20:02:05: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-53 2037 1687] attacked "Dean<11><BOT><CT>" [-210 1777 1687] with "galilar" (damage "22") (damage_armor "3") (health "78") (armor "96") (hitgroup "chest")
L 11/12/2018 - 20:02:05: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-53 2037 1687] attacked "Dean<11><BOT><CT>" [-210 1777 1687] with "galilar" (damage "22") (damage_armor "3") (health "56") (armor "92") (hitgroup "right arm")
L 11/12/2018 - 20:02:05: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-53 2037 1687] attacked "Dean<11><BOT><CT>" [-210 1777 1687] with "galilar" (damage "22") (damage_armor "3") (health "34") (armor "88") (hitgroup "right arm")
L 11/12/2018 - 20:02:06: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-53 2037 1687] attacked "Dean<11><BOT><CT>" [-210 1777 1687] with "galilar" (damage "118") (damage_armor "0") (health "0") (armor "88") (hitgroup "head")
L 11/12/2018 - 20:02:06: "Dean<11><BOT><CT>" dropped "mp7"
L 11/12/2018 - 20:02:06: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:02:06: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:02:06: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-53 2037 1687] killed "Dean<11><BOT><CT>" [-210 1777 1751] with "galilar" (headshot)
L 11/12/2018 - 20:02:06: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 4550+300 = $4850 (tracked)
L 11/12/2018 - 20:02:08: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:02:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "galilar"
L 11/12/2018 - 20:02:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "ak47"
L 11/12/2018 - 20:02:12: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:02:12: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:02:18: "Bill<6><BOT><TERRORIST>" [-1003 1206 1687] attacked "Martin<7><BOT><CT>" [-863 246 1614] with "p90" (damage "16") (damage_armor "3") (health "84") (armor "96") (hitgroup "stomach")
L 11/12/2018 - 20:02:19: "Martin<7><BOT><CT>" [-863 246 1614] attacked "Bill<6><BOT><TERRORIST>" [-1003 1206 1687] with "hkp2000" (damage "14") (damage_armor "7") (health "86") (armor "92") (hitgroup "chest")
L 11/12/2018 - 20:02:19: "Martin<7><BOT><CT>" [-863 246 1614] attacked "Bill<6><BOT><TERRORIST>" [-1003 1206 1687] with "hkp2000" (damage "18") (damage_armor "9") (health "68") (armor "82") (hitgroup "stomach")
L 11/12/2018 - 20:02:19: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 4850+300 = $5150 (tracked)
L 11/12/2018 - 20:02:19: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Planted_The_Bomb"
L 11/12/2018 - 20:02:19: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:02:23: "Martin<7><BOT><CT>" [-872 235 1614] attacked "Bill<6><BOT><TERRORIST>" [-1003 1206 1687] with "hkp2000" (damage "14") (damage_armor "7") (health "54") (armor "74") (hitgroup "chest")
L 11/12/2018 - 20:02:31: "Wyatt<10><BOT><TERRORIST>" [-945 1063 1687] attacked "Martin<7><BOT><CT>" [-932 550 1627] with "galilar" (damage "22") (damage_armor "0") (health "62") (armor "96") (hitgroup "left leg")
L 11/12/2018 - 20:02:31: "Wyatt<10><BOT><TERRORIST>" [-945 1063 1687] attacked "Martin<7><BOT><CT>" [-927 554 1627] with "galilar" (damage "22") (damage_armor "0") (health "40") (armor "96") (hitgroup "right leg")
L 11/12/2018 - 20:02:31: "Wyatt<10><BOT><TERRORIST>" [-945 1063 1687] attacked "Martin<7><BOT><CT>" [-923 558 1628] with "galilar" (damage "28") (damage_armor "4") (health "12") (armor "91") (hitgroup "stomach")
L 11/12/2018 - 20:02:32: "Wyatt<10><BOT><TERRORIST>" [-945 1063 1687] attacked "Martin<7><BOT><CT>" [-900 579 1630] with "galilar" (damage "22") (damage_armor "3") (health "0") (armor "87") (hitgroup "chest")
L 11/12/2018 - 20:02:32: "Martin<7><BOT><CT>" dropped "xm1014"
L 11/12/2018 - 20:02:32: "Martin<7><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:02:32: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:02:32: "Wyatt<10><BOT><TERRORIST>" [-945 1063 1687] killed "Martin<7><BOT><CT>" [-900 579 1694] with "galilar"
L 11/12/2018 - 20:02:32: "Wyatt<9><BOT><TERRORIST>" money change 4200+300 = $4500 (tracked)
L 11/12/2018 - 20:02:54: "Orin<8><BOT><TERRORIST>" [-125 1914 1687] attacked "Duffy<3><BOT><CT>" [260 2031 1687] with "galilar" (damage "17") (damage_armor "2") (health "83") (armor "97") (hitgroup "chest")
L 11/12/2018 - 20:02:58: "Orin<8><BOT><TERRORIST>" [231 1979 1687] attacked "Duffy<3><BOT><CT>" [260 2031 1741] with "knife" (damage "33") (damage_armor "3") (health "50") (armor "94") (hitgroup "generic")
L 11/12/2018 - 20:02:59: "Orin<8><BOT><TERRORIST>" [260 1991 1687] attacked "Duffy<3><BOT><CT>" [260 2031 1702] with "knife" (damage "21") (damage_armor "1") (health "29") (armor "92") (hitgroup "generic")
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" [260 1990 1687] attacked "Duffy<3><BOT><CT>" [260 2031 1687] with "knife" (damage "21") (damage_armor "1") (health "8") (armor "90") (hitgroup "generic")
L 11/12/2018 - 20:03:00: Team "TERRORIST" triggered "SFUI_Notice_Target_Bombed" (CT "0") (T "3")
L 11/12/2018 - 20:03:00: Team "CT" scored "0" with "5" players
L 11/12/2018 - 20:03:00: Team "TERRORIST" scored "3" with "5" players
L 11/12/2018 - 20:03:00: World triggered "Round_End"
L 11/12/2018 - 20:03:00: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 5150+3500 = $8650 (tracked)
L 11/12/2018 - 20:03:00: "Bill<5><BOT><TERRORIST>" money change 5100+3500 = $8600 (tracked)
L 11/12/2018 - 20:03:00: "Orin<7><BOT><TERRORIST>" money change 4450+3500 = $7950 (tracked)
L 11/12/2018 - 20:03:00: "Wyatt<9><BOT><TERRORIST>" money change 4500+3500 = $8000 (tracked)
L 11/12/2018 - 20:03:00: "Duffy<2><BOT><CT>" money change 50+2900 = $2950 (tracked)
L 11/12/2018 - 20:03:00: "Ron<3><BOT><CT>" money change 550+2900 = $3450 (tracked)
L 11/12/2018 - 20:03:00: "Martin<6><BOT><CT>" money change 250+2900 = $3150 (tracked)
L 11/12/2018 - 20:03:00: "Jon<8><BOT><CT>" money change 150+2900 = $3050 (tracked)
L 11/12/2018 - 20:03:00: "Dean<10><BOT><CT>" money change 850+2900 = $3750 (tracked)
L 11/12/2018 - 20:03:00: "Duffy<3><BOT><CT>" dropped "ssg08"
L 11/12/2018 - 20:03:00: "Duffy<3><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:03:00: "Duffy<3><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:03:00: "Duffy<3><BOT><CT>" [260 2031 1769] was killed by the bomb.
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" dropped "galilar"
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" dropped "vesthelm"
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:03:00: "Orin<8><BOT><TERRORIST>" [260 1998 1751] was killed by the bomb.
L 11/12/2018 - 20:03:07: "Scott<5><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:03:07: "Scott<5><BOT><TERRORIST>" picked up "p250"
L 11/12/2018 - 20:03:07: "Scott<5><BOT><TERRORIST>" picked up "ak47"
L 11/12/2018 - 20:03:07: "Scott<5><BOT><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "p250"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "ak47"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:03:07: Starting Freeze period
L 11/12/2018 - 20:03:07: "Orin<8><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:03:07: "Orin<8><BOT><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:03:07: "Duffy<3><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:03:07: "Duffy<3><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:03:07: "Jon<9><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:03:07: "Jon<9><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:03:07: "Dean<11><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:03:07: "Dean<11><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:03:07: "Martin<7><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:03:07: "Martin<7><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:03:07: "Ron<4><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:03:07: "Ron<4><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:03:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:03:08: "Martin<6><BOT><CT>" money change 3150-1250 = $1900 (tracked) (purchase: weapon_mp9)
L 11/12/2018 - 20:03:08: "Martin<7><BOT><CT>" picked up "mp9"
L 11/12/2018 - 20:03:08: "Martin<7><BOT><CT>" purchased "mp9"
L 11/12/2018 - 20:03:08: "Martin<7><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:03:08: "Martin<6><BOT><CT>" money change 1900-1000 = $900 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:03:08: "Martin<7><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:03:08: "Jon<8><BOT><CT>" money change 3050-1800 = $1250 (tracked) (purchase: weapon_mag7)
L 11/12/2018 - 20:03:08: "Jon<9><BOT><CT>" picked up "mag7"
L 11/12/2018 - 20:03:08: "Jon<9><BOT><CT>" purchased "mag7"
L 11/12/2018 - 20:03:08: "Jon<9><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:03:08: "Jon<8><BOT><CT>" money change 1250-1000 = $250 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:03:08: "Jon<9><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:03:08: "Dean<10><BOT><CT>" money change 3750-3150 = $600 (tracked) (purchase: weapon_aug)
L 11/12/2018 - 20:03:08: "Dean<11><BOT><CT>" picked up "aug"
L 11/12/2018 - 20:03:08: "Dean<11><BOT><CT>" purchased "aug"
L 11/12/2018 - 20:03:08: "Ron<3><BOT><CT>" money change 3450-1200 = $2250 (tracked) (purchase: weapon_ump45)
L 11/12/2018 - 20:03:08: "Ron<4><BOT><CT>" picked up "ump45"
L 11/12/2018 - 20:03:08: "Ron<4><BOT><CT>" purchased "ump45"
L 11/12/2018 - 20:03:08: "Ron<4><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:03:08: "Ron<3><BOT><CT>" money change 2250-1000 = $1250 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:03:08: "Ron<4><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:03:08: "Bill<6><BOT><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:03:08: "Bill<5><BOT><TERRORIST>" money change 8600-650 = $7950 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:03:08: "Bill<6><BOT><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:03:08: "Orin<7><BOT><TERRORIST>" money change 7950-2750 = $5200 (tracked) (purchase: weapon_sg556)
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" picked up "sg556"
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" purchased "sg556"
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:03:08: "Orin<7><BOT><TERRORIST>" money change 5200-1000 = $4200 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:03:08: "Orin<7><BOT><TERRORIST>" money change 4200-300 = $3900 (tracked) (purchase: weapon_p250)
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" picked up "p250"
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" purchased "p250"
L 11/12/2018 - 20:03:08: "Orin<7><BOT><TERRORIST>" money change 3900-300 = $3600 (tracked) (purchase: weapon_smokegrenade)
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:03:08: "Orin<8><BOT><TERRORIST>" purchased "smokegrenade"
L 11/12/2018 - 20:03:08: "Duffy<2><BOT><CT>" money change 2950-1700 = $1250 (tracked) (purchase: weapon_ssg08)
L 11/12/2018 - 20:03:08: "Duffy<3><BOT><CT>" picked up "ssg08"
L 11/12/2018 - 20:03:08: "Duffy<3><BOT><CT>" purchased "ssg08"
L 11/12/2018 - 20:03:08: "Duffy<3><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:03:08: "Duffy<2><BOT><CT>" money change 1250-1000 = $250 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:03:08: "Duffy<3><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:03:09: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7300-300 = $7000 (tracked) (purchase: weapon_smokegrenade)
L 11/12/2018 - 20:03:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:03:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "smokegrenade"
L 11/12/2018 - 20:03:09: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7000-400 = $6600 (tracked) (purchase: weapon_molotov)
L 11/12/2018 - 20:03:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:03:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "molotov"
L 11/12/2018 - 20:03:10: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6600-300 = $6300 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:03:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "hegrenade"
L 11/12/2018 - 20:03:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "hegrenade"
L 11/12/2018 - 20:03:10: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6300-200 = $6100 (tracked) (purchase: weapon_flashbang)
L 11/12/2018 - 20:03:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "flashbang"
L 11/12/2018 - 20:03:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "flashbang"
L 11/12/2018 - 20:03:23: World triggered "Round_Start"
L 11/12/2018 - 20:03:34: Molotov projectile spawned at 820.962646 241.555161 1679.429443, velocity -655.046387 151.855316 58.984150
L 11/12/2018 - 20:03:34: "Scott<5><BOT><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:03:35: "Scott<5><BOT><TERRORIST>" threw molotov [267 370 1615]
L 11/12/2018 - 20:03:38: "Player<2><STEAM_1:1:0101011><TERRORIST>" [377 -676 1614] attacked "Martin<7><BOT><CT>" [-499 -908 1614] with "glock" (damage "42") (damage_armor "23") (health "58") (armor "76") (hitgroup "head")
L 11/12/2018 - 20:03:38: "Player<2><STEAM_1:1:0101011><TERRORIST>" [377 -676 1614] attacked "Martin<7><BOT><CT>" [-499 -908 1614] with "glock" (damage "42") (damage_armor "23") (health "16") (armor "52") (hitgroup "head")
L 11/12/2018 - 20:03:39: "Player<2><STEAM_1:1:0101011><TERRORIST>" [377 -676 1614] attacked "Martin<7><BOT><CT>" [-499 -908 1614] with "glock" (damage "42") (damage_armor "23") (health "0") (armor "28") (hitgroup "head")
L 11/12/2018 - 20:03:39: "Martin<7><BOT><CT>" dropped "mp9"
L 11/12/2018 - 20:03:39: "Martin<7><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:03:39: "Martin<7><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:03:39: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:03:39: "Player<2><STEAM_1:1:0101011><TERRORIST>" [377 -676 1614] killed "Martin<7><BOT><CT>" [-499 -908 1678] with "glock" (headshot)
L 11/12/2018 - 20:03:39: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6100+300 = $6400 (tracked)
L 11/12/2018 - 20:03:44: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-331 -812 1613] attacked "Dean<11><BOT><CT>" [-272 -1339 1659] with "glock" (damage "25") (damage_armor "0") (health "75") (armor "0") (hitgroup "chest")
L 11/12/2018 - 20:03:44: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-330 -812 1613] attacked "Dean<11><BOT><CT>" [-259 -1311 1659] with "glock" (damage "25") (damage_armor "0") (health "50") (armor "0") (hitgroup "chest")
L 11/12/2018 - 20:03:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "mp9"
L 11/12/2018 - 20:03:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-398 -1238 1613] attacked "Dean<11><BOT><CT>" [-144 -1220 1659] with "mp9" (damage "24") (damage_armor "0") (health "26") (armor "0") (hitgroup "chest")
L 11/12/2018 - 20:03:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-398 -1238 1613] attacked "Dean<11><BOT><CT>" [-143 -1220 1659] with "mp9" (damage "24") (damage_armor "0") (health "2") (armor "0") (hitgroup "right arm")
L 11/12/2018 - 20:03:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-398 -1238 1613] attacked "Dean<11><BOT><CT>" [-138 -1220 1659] with "mp9" (damage "24") (damage_armor "0") (health "0") (armor "0") (hitgroup "right arm")
L 11/12/2018 - 20:03:49: "Dean<11><BOT><CT>" dropped "aug"
L 11/12/2018 - 20:03:49: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:03:49: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:03:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-398 -1238 1613] killed "Dean<11><BOT><CT>" [-138 -1220 1723] with "mp9"
L 11/12/2018 - 20:03:49: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6400+600 = $7000 (tracked)
L 11/12/2018 - 20:03:54: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7000+300 = $7300 (tracked)
L 11/12/2018 - 20:03:54: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Planted_The_Bomb"
L 11/12/2018 - 20:03:54: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:03:55: "Orin<8><BOT><TERRORIST>" [-47 -19 1613] attacked "Ron<4><BOT><CT>" [-251 591 1635] with "sg556" (damage "29") (damage_armor "0") (health "71") (armor "100") (hitgroup "right arm")
L 11/12/2018 - 20:03:56: "Orin<8><BOT><TERRORIST>" [-105 63 1615] attacked "Ron<4><BOT><CT>" [-238 532 1626] with "sg556" (damage "22") (damage_armor "0") (health "49") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:03:56: "Ron<4><BOT><CT>" [-238 532 1626] attacked "Orin<8><BOT><TERRORIST>" [-105 63 1615] with "ump45" (damage "69") (damage_armor "18") (health "27") (armor "81") (hitgroup "head")
L 11/12/2018 - 20:03:56: "Ron<4><BOT><CT>" [-241 527 1625] attacked "Orin<8><BOT><TERRORIST>" [-102 60 1615] with "ump45" (damage "17") (damage_armor "4") (health "10") (armor "76") (hitgroup "chest")
L 11/12/2018 - 20:03:56: "Orin<8><BOT><TERRORIST>" [-86 57 1614] attacked "Ron<4><BOT><CT>" [-245 498 1621] with "sg556" (damage "22") (damage_armor "0") (health "27") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:03:58: "Scott<5><BOT><TERRORIST>" [-270 128 1653] attacked "Ron<4><BOT><CT>" [-283 373 1613] with "ak47" (damage "27") (damage_armor "4") (health "0") (armor "95") (hitgroup "left arm")
L 11/12/2018 - 20:03:58: "Ron<4><BOT><CT>" dropped "ump45"
L 11/12/2018 - 20:03:58: "Ron<4><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:03:58: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:03:58: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:03:58: "Scott<5><BOT><TERRORIST>" [-270 128 1653] killed "Ron<4><BOT><CT>" [-283 373 1677] with "ak47"
L 11/12/2018 - 20:03:58: "Orin<8><BOT><TERRORIST>" assisted killing "Ron<4><BOT><CT>"
L 11/12/2018 - 20:03:58: "Scott<4><BOT><TERRORIST>" money change 8650+300 = $8950 (tracked)
L 11/12/2018 - 20:04:00: "Duffy<3><BOT><CT>" [-266 1406 1687] attacked "Scott<5><BOT><TERRORIST>" [-201 48 1618] with "ssg08" (damage "62") (damage_armor "0") (health "38") (armor "100") (hitgroup "right leg")
L 11/12/2018 - 20:04:02: "Jon<9><BOT><CT>" [-203 1403 1687] attacked "Wyatt<10><BOT><TERRORIST>" [-259 383 1613] with "hkp2000" (damage "14") (damage_armor "7") (health "86") (armor "92") (hitgroup "chest")
L 11/12/2018 - 20:04:03: "Scott<5><BOT><TERRORIST>" [-202 4 1619] attacked "Jon<9><BOT><CT>" [-203 1403 1687] with "ak47" (damage "25") (damage_armor "0") (health "75") (armor "100") (hitgroup "right leg")
L 11/12/2018 - 20:04:04: Molotov projectile spawned at -502.158844 -543.403198 1799.924683, velocity 219.658356 -608.953369 191.183105
L 11/12/2018 - 20:04:04: "Wyatt<10><BOT><TERRORIST>" [-185 619 1639] attacked "Duffy<3><BOT><CT>" [-270 1401 1687] with "galilar" (damage "21") (damage_armor "0") (health "79") (armor "100") (hitgroup "left leg")
L 11/12/2018 - 20:04:04: "Wyatt<10><BOT><TERRORIST>" [-184 637 1642] attacked "Jon<9><BOT><CT>" [-203 1403 1687] with "galilar" (damage "28") (damage_armor "4") (health "47") (armor "95") (hitgroup "stomach")
L 11/12/2018 - 20:04:04: "Wyatt<10><BOT><TERRORIST>" [-183 675 1648] attacked "Jon<9><BOT><CT>" [-203 1403 1687] with "galilar" (damage "22") (damage_armor "3") (health "25") (armor "91") (hitgroup "chest")
L 11/12/2018 - 20:04:05: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" [-203 1403 1687] attacked "Wyatt<10><BOT><TERRORIST>" [-187 767 1662] with "hkp2000" (damage "19") (damage_armor "9") (health "67") (armor "82") (hitgroup "stomach")
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" [-203 1403 1687] attacked "Bill<6><BOT><TERRORIST>" [-175 458 1614] with "hkp2000" (damage "5") (damage_armor "2") (health "95") (armor "97") (hitgroup "chest")
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" [-203 1403 1687] attacked "Bill<6><BOT><TERRORIST>" [-161 476 1617] with "hkp2000" (damage "18") (damage_armor "9") (health "77") (armor "87") (hitgroup "stomach")
L 11/12/2018 - 20:04:05: "Bill<6><BOT><TERRORIST>" [-157 481 1618] attacked "Jon<9><BOT><CT>" [-203 1403 1687] with "p90" (damage "17") (damage_armor "3") (health "8") (armor "87") (hitgroup "stomach")
L 11/12/2018 - 20:04:05: "Bill<6><BOT><TERRORIST>" [-157 486 1618] attacked "Jon<9><BOT><CT>" [-203 1403 1687] with "p90" (damage "13") (damage_armor "3") (health "0") (armor "83") (hitgroup "chest")
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" dropped "mag7"
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:04:05: "Jon<9><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:04:05: "Bill<6><BOT><TERRORIST>" [-157 486 1618] killed "Jon<9><BOT><CT>" [-203 1403 1751] with "p90"
L 11/12/2018 - 20:04:05: "Wyatt<10><BOT><TERRORIST>" assisted killing "Jon<9><BOT><CT>"
L 11/12/2018 - 20:04:05: "Bill<5><BOT><TERRORIST>" money change 7950+300 = $8250 (tracked)
L 11/12/2018 - 20:04:06: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw molotov [-170 -1464 1723]
L 11/12/2018 - 20:04:07: "Wyatt<10><BOT><TERRORIST>" [-59 927 1685] attacked "Duffy<3><BOT><CT>" [-270 1401 1687] with "galilar" (damage "28") (damage_armor "4") (health "51") (armor "95") (hitgroup "stomach")
L 11/12/2018 - 20:04:08: "Wyatt<10><BOT><TERRORIST>" [-59 927 1685] attacked "Duffy<3><BOT><CT>" [-270 1401 1687] with "galilar" (damage "28") (damage_armor "4") (health "23") (armor "90") (hitgroup "stomach")
L 11/12/2018 - 20:04:08: "Wyatt<10><BOT><TERRORIST>" [-61 926 1685] attacked "Duffy<3><BOT><CT>" [-270 1401 1687] with "galilar" (damage "28") (damage_armor "4") (health "0") (armor "85") (hitgroup "stomach")
L 11/12/2018 - 20:04:08: "Duffy<3><BOT><CT>" dropped "ssg08"
L 11/12/2018 - 20:04:08: "Duffy<3><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:04:08: "Duffy<3><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:04:08: "Duffy<3><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:04:08: "Wyatt<10><BOT><TERRORIST>" [-61 926 1685] killed "Duffy<3><BOT><CT>" [-270 1401 1751] with "galilar"
L 11/12/2018 - 20:04:08: "Wyatt<9><BOT><TERRORIST>" money change 8000+300 = $8300 (tracked)
L 11/12/2018 - 20:04:08: Team "TERRORIST" triggered "SFUI_Notice_Terrorists_Win" (CT "0") (T "4")
L 11/12/2018 - 20:04:08: Team "CT" scored "0" with "5" players
L 11/12/2018 - 20:04:08: Team "TERRORIST" scored "4" with "5" players
L 11/12/2018 - 20:04:08: World triggered "Round_End"
L 11/12/2018 - 20:04:08: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7300+3250 = $10550 (tracked)
L 11/12/2018 - 20:04:08: "Scott<4><BOT><TERRORIST>" money change 8950+3250 = $12200 (tracked)
L 11/12/2018 - 20:04:08: "Bill<5><BOT><TERRORIST>" money change 8250+3250 = $11500 (tracked)
L 11/12/2018 - 20:04:08: "Orin<7><BOT><TERRORIST>" money change 3600+3250 = $6850 (tracked)
L 11/12/2018 - 20:04:08: "Wyatt<9><BOT><TERRORIST>" money change 8300+3250 = $11550 (tracked)
L 11/12/2018 - 20:04:08: "Duffy<2><BOT><CT>" money change 250+3400 = $3650 (tracked)
L 11/12/2018 - 20:04:08: "Ron<3><BOT><CT>" money change 1250+3400 = $4650 (tracked)
L 11/12/2018 - 20:04:08: "Martin<6><BOT><CT>" money change 900+3400 = $4300 (tracked)
L 11/12/2018 - 20:04:08: "Jon<8><BOT><CT>" money change 250+3400 = $3650 (tracked)
L 11/12/2018 - 20:04:08: "Dean<10><BOT><CT>" money change 600+3400 = $4000 (tracked)
L 11/12/2018 - 20:04:15: Starting Freeze period
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:04:15: "Dean<11><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:04:15: "Dean<11><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:04:15: "Ron<4><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:04:15: "Ron<4><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:04:15: "Jon<9><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:04:15: "Jon<9><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:04:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:04:15: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:04:15: "Bill<6><BOT><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:04:15: "Bill<5><BOT><TERRORIST>" money change 11500-650 = $10850 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:04:15: "Bill<6><BOT><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:04:15: "Bill<5><BOT><TERRORIST>" money change 10850-300 = $10550 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:04:15: "Bill<6><BOT><TERRORIST>" picked up "hegrenade"
L 11/12/2018 - 20:04:15: "Bill<6><BOT><TERRORIST>" purchased "hegrenade"
L 11/12/2018 - 20:04:15: "Orin<8><BOT><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:04:15: "Orin<7><BOT><TERRORIST>" money change 6850-650 = $6200 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:04:15: "Orin<8><BOT><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:04:15: "Wyatt<10><BOT><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:04:15: "Wyatt<9><BOT><TERRORIST>" money change 11550-650 = $10900 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:04:15: "Wyatt<10><BOT><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:04:15: "Martin<6><BOT><CT>" money change 4300-1200 = $3100 (tracked) (purchase: weapon_nova)
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" picked up "nova"
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" purchased "nova"
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:04:15: "Martin<6><BOT><CT>" money change 3100-1000 = $2100 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:04:15: "Martin<6><BOT><CT>" money change 2100-700 = $1400 (tracked) (purchase: weapon_deagle)
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" picked up "deagle"
L 11/12/2018 - 20:04:15: "Martin<7><BOT><CT>" purchased "deagle"
L 11/12/2018 - 20:04:15: "Dean<10><BOT><CT>" money change 4000-3150 = $850 (tracked) (purchase: weapon_aug)
L 11/12/2018 - 20:04:15: "Dean<11><BOT><CT>" picked up "aug"
L 11/12/2018 - 20:04:15: "Dean<11><BOT><CT>" purchased "aug"
L 11/12/2018 - 20:04:15: "Dean<11><BOT><CT>" picked up "vest"
L 11/12/2018 - 20:04:15: "Dean<10><BOT><CT>" money change 850-650 = $200 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:04:15: "Dean<11><BOT><CT>" purchased "item_kevlar"
L 11/12/2018 - 20:04:15: "Jon<8><BOT><CT>" money change 3650-2350 = $1300 (tracked) (purchase: weapon_p90)
L 11/12/2018 - 20:04:15: "Jon<9><BOT><CT>" picked up "p90"
L 11/12/2018 - 20:04:15: "Jon<9><BOT><CT>" purchased "p90"
L 11/12/2018 - 20:04:15: "Jon<9><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:04:15: "Jon<8><BOT><CT>" money change 1300-1000 = $300 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:04:15: "Jon<9><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:04:15: "Ron<3><BOT><CT>" money change 4650-3150 = $1500 (tracked) (purchase: weapon_aug)
L 11/12/2018 - 20:04:15: "Ron<4><BOT><CT>" picked up "aug"
L 11/12/2018 - 20:04:15: "Ron<4><BOT><CT>" purchased "aug"
L 11/12/2018 - 20:04:15: "Ron<4><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:04:15: "Ron<3><BOT><CT>" money change 1500-1000 = $500 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:04:15: "Ron<4><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:04:15: "Duffy<2><BOT><CT>" money change 3650-1700 = $1950 (tracked) (purchase: weapon_ssg08)
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" picked up "ssg08"
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" purchased "ssg08"
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:04:15: "Duffy<2><BOT><CT>" money change 1950-1000 = $950 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:04:15: "Duffy<2><BOT><CT>" money change 950-50 = $900 (tracked) (purchase: weapon_decoy)
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" picked up "decoy"
L 11/12/2018 - 20:04:15: "Duffy<3><BOT><CT>" purchased "decoy"
L 11/12/2018 - 20:04:17: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 10550-2750 = $7800 (tracked) (purchase: weapon_sg556)
L 11/12/2018 - 20:04:17: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "mp9"
L 11/12/2018 - 20:04:17: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "sg556"
L 11/12/2018 - 20:04:17: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "sg556"
L 11/12/2018 - 20:04:21: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7800-400 = $7400 (tracked) (purchase: weapon_molotov)
L 11/12/2018 - 20:04:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:04:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "molotov"
L 11/12/2018 - 20:04:30: World triggered "Round_Start"
L 11/12/2018 - 20:04:41: "Bill<6><BOT><TERRORIST>" dropped "hegrenade"
L 11/12/2018 - 20:04:42: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "flashbang"
L 11/12/2018 - 20:04:43: "Bill<6><BOT><TERRORIST>" threw hegrenade [161 464 1626]
L 11/12/2018 - 20:04:43: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw flashbang [590 -948 1619] flashbang entindex 168)
L 11/12/2018 - 20:04:43: "Player<2><STEAM_1:1:0101011><TERRORIST>" blinded for 1.71 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 168
L 11/12/2018 - 20:04:45: "Player<2><STEAM_1:1:0101011><TERRORIST>" [800 -1009 1614] attacked "Jon<9><BOT><CT>" [282 -688 1614] with "sg556" (damage "21") (damage_armor "0") (health "79") (armor "100") (hitgroup "right leg")
L 11/12/2018 - 20:04:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [791 -1008 1614] attacked "Jon<9><BOT><CT>" [294 -689 1614] with "sg556" (damage "29") (damage_armor "0") (health "50") (armor "100") (hitgroup "right arm")
L 11/12/2018 - 20:04:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [787 -1007 1614] attacked "Jon<9><BOT><CT>" [300 -691 1614] with "sg556" (damage "29") (damage_armor "0") (health "21") (armor "100") (hitgroup "chest")
L 11/12/2018 - 20:04:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [786 -1007 1614] attacked "Jon<9><BOT><CT>" [304 -693 1614] with "sg556" (damage "29") (damage_armor "0") (health "0") (armor "100") (hitgroup "chest")
L 11/12/2018 - 20:04:46: "Jon<9><BOT><CT>" dropped "p90"
L 11/12/2018 - 20:04:46: "Jon<9><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:04:46: "Jon<9><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:04:46: "Jon<9><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:04:46: "Player<2><STEAM_1:1:0101011><TERRORIST>" [786 -1007 1614] killed "Jon<9><BOT><CT>" [304 -693 1678] with "sg556"
L 11/12/2018 - 20:04:46: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7400+300 = $7700 (tracked)
L 11/12/2018 - 20:04:47: "Player<2><STEAM_1:1:0101011><TERRORIST>" [678 -945 1614] attacked "Duffy<3><BOT><CT>" [276 -653 1614] with "sg556" (damage "36") (damage_armor "0") (health "64") (armor "100") (hitgroup "stomach")
L 11/12/2018 - 20:04:47: "Player<2><STEAM_1:1:0101011><TERRORIST>" [678 -945 1614] attacked "Duffy<3><BOT><CT>" [281 -657 1614] with "sg556" (damage "29") (damage_armor "0") (health "35") (armor "100") (hitgroup "chest")
L 11/12/2018 - 20:04:48: "Player<2><STEAM_1:1:0101011><TERRORIST>" [678 -945 1614] attacked "Duffy<3><BOT><CT>" [282 -658 1614] with "sg556" (damage "36") (damage_armor "0") (health "0") (armor "100") (hitgroup "stomach")
L 11/12/2018 - 20:04:48: "Duffy<3><BOT><CT>" dropped "ssg08"
L 11/12/2018 - 20:04:48: "Duffy<3><BOT><CT>" dropped "decoy"
L 11/12/2018 - 20:04:48: "Duffy<3><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:04:48: "Duffy<3><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:04:48: "Duffy<3><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:04:48: "Player<2><STEAM_1:1:0101011><TERRORIST>" [678 -945 1614] killed "Duffy<3><BOT><CT>" [282 -658 1678] with "sg556"
L 11/12/2018 - 20:04:48: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7700+300 = $8000 (tracked)
L 11/12/2018 - 20:04:49: "Dean<11><BOT><CT>" [196 -688 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [683 -936 1614] with "aug" (damage "20") (damage_armor "0") (health "80") (armor "0") (hitgroup "right leg")
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" [683 -936 1614] attacked "Dean<11><BOT><CT>" [196 -688 1613] with "sg556" (damage "36") (damage_armor "0") (health "64") (armor "100") (hitgroup "stomach")
L 11/12/2018 - 20:04:49: "Dean<11><BOT><CT>" [196 -688 1613] attacked "Player<2><STEAM_1:1:0101011><TERRORIST>" [683 -936 1614] with "aug" (damage "109") (damage_armor "0") (health "0") (armor "0") (hitgroup "head")
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "sg556"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:04:49: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "hegrenade"
L 11/12/2018 - 20:04:49: "Dean<11><BOT><CT>" [196 -688 1613] killed "Player<2><STEAM_1:1:0101011><TERRORIST>" [683 -936 1678] with "aug" (headshot)
L 11/12/2018 - 20:04:49: "Dean<10><BOT><CT>" money change 200+300 = $500 (tracked)
L 11/12/2018 - 20:04:51: "Dean<11><BOT><CT>" picked up "decoy"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "glock"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "p250"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "sg556"
L 11/12/2018 - 20:04:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:04:52: "Orin<8><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:04:52: "Orin<8><BOT><TERRORIST>" dropped "p250"
L 11/12/2018 - 20:04:52: "Orin<8><BOT><TERRORIST>" dropped "sg556"
L 11/12/2018 - 20:04:52: "Orin<8><BOT><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:04:54: "Dean<11><BOT><CT>" picked up "molotov"
L 11/12/2018 - 20:04:56: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1060 -699 1614] attacked "Dean<11><BOT><CT>" [924 -886 1614] with "sg556" (damage "118") (damage_armor "0") (health "0") (armor "100") (hitgroup "head")
L 11/12/2018 - 20:04:56: "Dean<11><BOT><CT>" dropped "aug"
L 11/12/2018 - 20:04:56: "Dean<11><BOT><CT>" dropped "molotov"
L 11/12/2018 - 20:04:56: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:04:56: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:04:56: "Dean<11><BOT><CT>" dropped "decoy"
L 11/12/2018 - 20:04:56: "Player<2><STEAM_1:1:0101011><TERRORIST>" [1060 -699 1614] killed "Dean<11><BOT><CT>" [924 -886 1678] with "sg556" (headshot)
L 11/12/2018 - 20:04:56: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6200+300 = $6500 (tracked)
L 11/12/2018 - 20:04:58: "Player<2><STEAM_1:1:0101011><TERRORIST>" [920 -931 1614] attacked "Martin<7><BOT><CT>" [672 -1010 1614] with "sg556" (damage "29") (damage_armor "0") (health "71") (armor "100") (hitgroup "chest")
L 11/12/2018 - 20:04:58: "Player<2><STEAM_1:1:0101011><TERRORIST>" [919 -934 1614] attacked "Martin<7><BOT><CT>" [672 -1010 1614] with "sg556" (damage "118") (damage_armor "0") (health "0") (armor "100") (hitgroup "head")
L 11/12/2018 - 20:04:58: "Martin<7><BOT><CT>" dropped "nova"
L 11/12/2018 - 20:04:58: "Martin<7><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:04:58: "Martin<7><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:04:58: "Martin<7><BOT><CT>" dropped "deagle"
L 11/12/2018 - 20:04:58: "Player<2><STEAM_1:1:0101011><TERRORIST>" [919 -934 1614] killed "Martin<7><BOT><CT>" [672 -1010 1678] with "sg556" (headshot)
L 11/12/2018 - 20:04:58: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6500+300 = $6800 (tracked)
L 11/12/2018 - 20:05:00: "Bill<6><BOT><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:05:00: "Bill<6><BOT><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:05:11: "Bill<5><BOT><TERRORIST>" money change 10550+300 = $10850 (tracked)
L 11/12/2018 - 20:05:11: "Bill<6><BOT><TERRORIST>" triggered "Planted_The_Bomb"
L 11/12/2018 - 20:05:11: "Bill<6><BOT><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:05:14: "Ron<4><BOT><CT>" [-916 -78 1614] attacked "Wyatt<10><BOT><TERRORIST>" [-756 -668 1614] with "aug" (damage "30") (damage_armor "1") (health "70") (armor "98") (hitgroup "stomach")
L 11/12/2018 - 20:05:14: "Wyatt<10><BOT><TERRORIST>" [-756 -668 1614] attacked "Ron<4><BOT><CT>" [-916 -78 1614] with "galilar" (damage "28") (damage_armor "4") (health "72") (armor "95") (hitgroup "stomach")
L 11/12/2018 - 20:05:14: "Wyatt<10><BOT><TERRORIST>" [-756 -668 1614] attacked "Ron<4><BOT><CT>" [-916 -78 1614] with "galilar" (damage "28") (damage_armor "4") (health "44") (armor "90") (hitgroup "stomach")
L 11/12/2018 - 20:05:14: "Wyatt<10><BOT><TERRORIST>" [-756 -668 1614] attacked "Ron<4><BOT><CT>" [-916 -78 1614] with "galilar" (damage "22") (damage_armor "3") (health "22") (armor "86") (hitgroup "right arm")
L 11/12/2018 - 20:05:14: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-820 -715 1614] attacked "Ron<4><BOT><CT>" [-916 -78 1614] with "sg556" (damage "116") (damage_armor "0") (health "0") (armor "86") (hitgroup "head")
L 11/12/2018 - 20:05:14: "Ron<4><BOT><CT>" dropped "aug"
L 11/12/2018 - 20:05:14: "Ron<4><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:05:14: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:05:14: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:05:14: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-820 -715 1614] killed "Ron<4><BOT><CT>" [-916 -78 1678] with "sg556" (headshot)
L 11/12/2018 - 20:05:14: "Wyatt<10><BOT><TERRORIST>" assisted killing "Ron<4><BOT><CT>"
L 11/12/2018 - 20:05:14: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6800+300 = $7100 (tracked)
L 11/12/2018 - 20:05:14: Team "TERRORIST" triggered "SFUI_Notice_Terrorists_Win" (CT "0") (T "5")
L 11/12/2018 - 20:05:14: Team "CT" scored "0" with "5" players
L 11/12/2018 - 20:05:14: Team "TERRORIST" scored "5" with "5" players
L 11/12/2018 - 20:05:14: World triggered "Round_End"
L 11/12/2018 - 20:05:14: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7100+3250 = $10350 (tracked)
L 11/12/2018 - 20:05:14: "Scott<4><BOT><TERRORIST>" money change 12200+3250 = $15450 (tracked)
L 11/12/2018 - 20:05:14: "Bill<5><BOT><TERRORIST>" money change 10850+3250 = $14100 (tracked)
L 11/12/2018 - 20:05:14: "Wyatt<9><BOT><TERRORIST>" money change 10900+3250 = $14150 (tracked)
L 11/12/2018 - 20:05:14: "Duffy<2><BOT><CT>" money change 900+3400 = $4300 (tracked)
L 11/12/2018 - 20:05:14: "Ron<3><BOT><CT>" money change 500+3400 = $3900 (tracked)
L 11/12/2018 - 20:05:14: "Martin<6><BOT><CT>" money change 1400+3400 = $4800 (tracked)
L 11/12/2018 - 20:05:14: "Jon<8><BOT><CT>" money change 300+3400 = $3700 (tracked)
L 11/12/2018 - 20:05:14: "Dean<10><BOT><CT>" money change 500+3400 = $3900 (tracked)
L 11/12/2018 - 20:05:21: "Orin<8><BOT><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:05:21: "Orin<8><BOT><TERRORIST>" picked up "p250"
L 11/12/2018 - 20:05:21: "Orin<8><BOT><TERRORIST>" picked up "sg556"
L 11/12/2018 - 20:05:21: "Orin<8><BOT><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "p250"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "sg556"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:05:21: Starting Freeze period
L 11/12/2018 - 20:05:21: "Ron<4><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:05:21: "Ron<4><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:05:21: "Duffy<3><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:05:21: "Duffy<3><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:05:21: "Martin<7><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:05:21: "Martin<7><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:05:21: "Jon<9><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:05:21: "Jon<9><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "knife"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "glock"
L 11/12/2018 - 20:05:21: "Dean<11><BOT><CT>" picked up "knife"
L 11/12/2018 - 20:05:21: "Dean<11><BOT><CT>" picked up "hkp2000"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:05:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:05:22: "Martin<6><BOT><CT>" money change 4800-1250 = $3550 (tracked) (purchase: weapon_mp9)
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" picked up "mp9"
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" purchased "mp9"
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:05:22: "Martin<6><BOT><CT>" money change 3550-1000 = $2550 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:05:22: "Martin<6><BOT><CT>" money change 2550-700 = $1850 (tracked) (purchase: weapon_deagle)
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" picked up "deagle"
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" purchased "deagle"
L 11/12/2018 - 20:05:22: "Martin<6><BOT><CT>" money change 1850-300 = $1550 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" picked up "hegrenade"
L 11/12/2018 - 20:05:22: "Martin<7><BOT><CT>" purchased "hegrenade"
L 11/12/2018 - 20:05:22: "Jon<8><BOT><CT>" money change 3700-2000 = $1700 (tracked) (purchase: weapon_xm1014)
L 11/12/2018 - 20:05:22: "Jon<9><BOT><CT>" picked up "xm1014"
L 11/12/2018 - 20:05:22: "Jon<9><BOT><CT>" purchased "xm1014"
L 11/12/2018 - 20:05:22: "Jon<9><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:05:22: "Jon<8><BOT><CT>" money change 1700-1000 = $700 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:05:22: "Jon<9><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:05:22: "Dean<10><BOT><CT>" money change 3900-1250 = $2650 (tracked) (purchase: weapon_mp9)
L 11/12/2018 - 20:05:22: "Dean<11><BOT><CT>" picked up "mp9"
L 11/12/2018 - 20:05:22: "Dean<11><BOT><CT>" purchased "mp9"
L 11/12/2018 - 20:05:22: "Dean<11><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:05:22: "Dean<10><BOT><CT>" money change 2650-1000 = $1650 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:05:22: "Dean<11><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:05:22: "Dean<10><BOT><CT>" money change 1650-300 = $1350 (tracked) (purchase: weapon_smokegrenade)
L 11/12/2018 - 20:05:22: "Dean<11><BOT><CT>" picked up "smokegrenade"
L 11/12/2018 - 20:05:22: "Dean<11><BOT><CT>" purchased "smokegrenade"
L 11/12/2018 - 20:05:22: "Wyatt<10><BOT><TERRORIST>" picked up "vest"
L 11/12/2018 - 20:05:22: "Wyatt<9><BOT><TERRORIST>" money change 14150-650 = $13500 (tracked) (purchase: item_kevlar)
L 11/12/2018 - 20:05:22: "Wyatt<10><BOT><TERRORIST>" purchased "item_kevlar"
L 11/12/2018 - 20:05:22: "Ron<3><BOT><CT>" money change 3900-2000 = $1900 (tracked) (purchase: weapon_xm1014)
L 11/12/2018 - 20:05:22: "Ron<4><BOT><CT>" picked up "xm1014"
L 11/12/2018 - 20:05:22: "Ron<4><BOT><CT>" purchased "xm1014"
L 11/12/2018 - 20:05:22: "Ron<4><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:05:22: "Ron<3><BOT><CT>" money change 1900-1000 = $900 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:05:22: "Ron<4><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:05:22: "Duffy<2><BOT><CT>" money change 4300-1700 = $2600 (tracked) (purchase: weapon_ssg08)
L 11/12/2018 - 20:05:22: "Duffy<3><BOT><CT>" picked up "ssg08"
L 11/12/2018 - 20:05:22: "Duffy<3><BOT><CT>" purchased "ssg08"
L 11/12/2018 - 20:05:22: "Duffy<3><BOT><CT>" picked up "vesthelm"
L 11/12/2018 - 20:05:22: "Duffy<2><BOT><CT>" money change 2600-1000 = $1600 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:05:22: "Duffy<3><BOT><CT>" purchased "item_assaultsuit"
L 11/12/2018 - 20:05:23: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 11250-2700 = $8550 (tracked) (purchase: weapon_ak47)
L 11/12/2018 - 20:05:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "ak47"
L 11/12/2018 - 20:05:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "ak47"
L 11/12/2018 - 20:05:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "vesthelm"
L 11/12/2018 - 20:05:23: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 8550-1000 = $7550 (tracked) (purchase: item_assaultsuit)
L 11/12/2018 - 20:05:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "item_assaultsuit"
L 11/12/2018 - 20:05:24: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7550-300 = $7250 (tracked) (purchase: weapon_smokegrenade)
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "smokegrenade"
L 11/12/2018 - 20:05:24: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 7250-400 = $6850 (tracked) (purchase: weapon_molotov)
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "molotov"
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "molotov"
L 11/12/2018 - 20:05:24: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6850-300 = $6550 (tracked) (purchase: weapon_hegrenade)
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "hegrenade"
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "hegrenade"
L 11/12/2018 - 20:05:24: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6550-200 = $6350 (tracked) (purchase: weapon_flashbang)
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "flashbang"
L 11/12/2018 - 20:05:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" purchased "flashbang"
L 11/12/2018 - 20:05:28: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 20:05:28: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:05:37: World triggered "Round_Start"
L 11/12/2018 - 20:05:37: "Orin<8><BOT><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:05:37: "Orin<8><BOT><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:05:39: "Orin<8><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 20:05:39: "Orin<8><BOT><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:05:40: "Scott<5><BOT><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:05:40: "Scott<5><BOT><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:05:48: "Scott<5><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
L 11/12/2018 - 20:05:48: "Scott<5><BOT><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:05:48: "Scott<5><BOT><TERRORIST>" dropped "ak47"
L 11/12/2018 - 20:05:48: "Scott<5><BOT><TERRORIST>" dropped "vesthelm"
L 11/12/2018 - 20:05:48: "Scott<5><BOT><TERRORIST>" dropped "knife"
L 11/12/2018 - 20:05:48: "Scott<5><BOT><TERRORIST>" dropped "p250"
L 11/12/2018 - 20:05:48: "Player<2><STEAM_1:1:0101011><TERRORIST>" [2105 -627 1613] killed "Scott<5><BOT><TERRORIST>" [1483 -650 1678] with "ak47"
L 11/12/2018 - 20:05:48: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6350-300 = $6050 (tracked)
L 11/12/2018 - 20:05:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "c4"
L 11/12/2018 - 20:05:52: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Got_The_Bomb"
L 11/12/2018 - 20:05:59: "Player<2><STEAM_1:1:0101011><TERRORIST>" [171 -750 1613] attacked "Dean<11><BOT><CT>" [-131 -1425 1659] with "ak47" (damage "27") (damage_armor "3") (health "73") (armor "96") (hitgroup "chest")
L 11/12/2018 - 20:05:59: "Player<2><STEAM_1:1:0101011><TERRORIST>" [171 -750 1613] attacked "Dean<11><BOT><CT>" [-130 -1421 1659] with "ak47" (damage "27") (damage_armor "3") (health "46") (armor "92") (hitgroup "chest")
L 11/12/2018 - 20:05:59: "Player<2><STEAM_1:1:0101011><TERRORIST>" [171 -750 1613] attacked "Dean<11><BOT><CT>" [-129 -1419 1659] with "ak47" (damage "33") (damage_armor "4") (health "13") (armor "87") (hitgroup "stomach")
L 11/12/2018 - 20:06:00: "Player<2><STEAM_1:1:0101011><TERRORIST>" [171 -750 1613] attacked "Dean<11><BOT><CT>" [-128 -1418 1659] with "ak47" (damage "33") (damage_armor "4") (health "0") (armor "82") (hitgroup "stomach")
L 11/12/2018 - 20:06:00: "Dean<11><BOT><CT>" dropped "mp9"
L 11/12/2018 - 20:06:00: "Dean<11><BOT><CT>" dropped "smokegrenade"
L 11/12/2018 - 20:06:00: "Dean<11><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:06:00: "Dean<11><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:06:00: "Dean<11><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:06:00: "Player<2><STEAM_1:1:0101011><TERRORIST>" [171 -750 1613] killed "Dean<11><BOT><CT>" [-128 -1418 1705] with "ak47"
L 11/12/2018 - 20:06:00: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6050+300 = $6350 (tracked)
L 11/12/2018 - 20:06:07: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6350+300 = $6650 (tracked)
L 11/12/2018 - 20:06:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" triggered "Planted_The_Bomb"
L 11/12/2018 - 20:06:07: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "c4"
L 11/12/2018 - 20:06:09: Molotov projectile spawned at -137.079147 -1445.360840 1729.534546, velocity -225.351868 574.082092 274.356018
L 11/12/2018 - 20:06:09: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "molotov"
L 11/12/2018 - 20:06:10: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw molotov [-451 -723 1798]
L 11/12/2018 - 20:06:12: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:06:12: "Player<2><STEAM_1:1:0101011><TERRORIST>" picked up "smokegrenade"
L 11/12/2018 - 20:06:13: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw smokegrenade [-506 -881 1616]
L 11/12/2018 - 20:06:16: "Orin<8><BOT><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:06:17: "Orin<8><BOT><TERRORIST>" threw smokegrenade [230 1444 1727]
L 11/12/2018 - 20:06:19: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "smokegrenade"
L 11/12/2018 - 20:06:20: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw smokegrenade [-471 -735 1798]
L 11/12/2018 - 20:06:21: "Player<2><STEAM_1:1:0101011><TERRORIST>" dropped "flashbang"
L 11/12/2018 - 20:06:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" threw flashbang [-583 -919 1620] flashbang entindex 124)
L 11/12/2018 - 20:06:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" blinded for 1.04 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:06:23: "Duffy<3><BOT><CT>" blinded for 0.25 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:06:23: "Ron<4><BOT><CT>" blinded for 4.60 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:06:23: "Martin<7><BOT><CT>" blinded for 4.46 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:06:23: "Jon<9><BOT><CT>" blinded for 4.32 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:06:23: "Dean<11><BOT><CT>" blinded for 0.89 by "Player<2><STEAM_1:1:0101011><TERRORIST>" from flashbang entindex 124
L 11/12/2018 - 20:06:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Ron<4><BOT><CT>" [-925 -698 1616] with "ak47" (damage "34") (damage_armor "4") (health "66") (armor "95") (hitgroup "stomach")
L 11/12/2018 - 20:06:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Martin<7><BOT><CT>" [-954 -600 1614] with "ak47" (damage "21") (damage_armor "3") (health "79") (armor "96") (hitgroup "stomach")
L 11/12/2018 - 20:06:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Ron<4><BOT><CT>" [-923 -699 1616] with "ak47" (damage "34") (damage_armor "4") (health "32") (armor "90") (hitgroup "stomach")
L 11/12/2018 - 20:06:23: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Martin<7><BOT><CT>" [-953 -604 1614] with "ak47" (damage "21") (damage_armor "3") (health "58") (armor "92") (hitgroup "stomach")
L 11/12/2018 - 20:06:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Ron<4><BOT><CT>" [-923 -699 1616] with "ak47" (damage "27") (damage_armor "3") (health "5") (armor "86") (hitgroup "chest")
L 11/12/2018 - 20:06:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Martin<7><BOT><CT>" [-953 -604 1614] with "ak47" (damage "21") (damage_armor "3") (health "37") (armor "88") (hitgroup "stomach")
L 11/12/2018 - 20:06:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Martin<7><BOT><CT>" [-953 -604 1614] with "ak47" (damage "27") (damage_armor "3") (health "10") (armor "84") (hitgroup "chest")
L 11/12/2018 - 20:06:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Ron<4><BOT><CT>" [-923 -699 1616] with "ak47" (damage "27") (damage_armor "3") (health "0") (armor "82") (hitgroup "chest")
L 11/12/2018 - 20:06:24: "Ron<4><BOT><CT>" dropped "xm1014"
L 11/12/2018 - 20:06:24: "Ron<4><BOT><CT>" dropped "vesthelm"
L 11/12/2018 - 20:06:24: "Ron<4><BOT><CT>" dropped "knife"
L 11/12/2018 - 20:06:24: "Ron<4><BOT><CT>" dropped "hkp2000"
L 11/12/2018 - 20:06:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] killed "Ron<4><BOT><CT>" [-923 -699 1662] with "ak47"
L 11/12/2018 - 20:06:24: "Player<1><STEAM_1:1:0101011><TERRORIST>" money change 6650+300 = $6950 (tracked)
L 11/12/2018 - 20:06:24: "Player<2><STEAM_1:1:0101011><TERRORIST>" [-788 -1001 1614] attacked "Martin<7><BOT><CT>" [-953 -604 1614] with "ak47" (damage "17") (damage_armor "2") (health "0") (armor "81") (hitgroup "chest")
L 11/12/2018 - 20:06:24: "Martin<7><BOT><CT>" dropped "mp9"
L 11/12/2018 - 20:06:24: "Martin<7><BOT><CT>" dropped "hegrenade"