-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconsole_mp.log
4443 lines (4437 loc) · 187 KB
/
console_mp.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
Build 568 nightly Wed Jun 18 2008 04:48:38PM
logfile opened on Mon Mar 13 21:37:34 2017
sv_cheats is write protected.
dvar set sv_mapRotation map mp_backlot map mp_crash map mp_crossfire map mp_citystreets map mp_strike
dvar set sv_maxclients 21
dvar set sv_punkbuster 1
dvar set timescale 1
timescale is cheat protected.
dvar set ui_gametype 0
Hiding channel: error
Hiding channel: gamenotify
Hiding channel: boldgame
Hiding channel: subtitle
Hiding channel: obituary
Hiding channel: logfile_only
Hiding channel: console_only
Hiding channel: gfx
Hiding channel: sound
Hiding channel: files
Hiding channel: devgui
Hiding channel: profile
Hiding channel: ui
Hiding channel: client
Hiding channel: server
Hiding channel: system
Hiding channel: playerweap
Hiding channel: ai
Hiding channel: anim
Hiding channel: physics
Hiding channel: fx
Hiding channel: leaderboards
Hiding channel: parserscript
Hiding channel: script
No channels added or hidden
Adding channel: error
Adding channel: gamenotify
Adding channel: boldgame
Adding channel: subtitle
Adding channel: obituary
Adding channel: logfile_only
Adding channel: console_only
Adding channel: gfx
Adding channel: sound
Adding channel: files
Adding channel: devgui
Adding channel: profile
Adding channel: ui
Adding channel: client
Adding channel: server
Adding channel: system
Adding channel: playerweap
Adding channel: ai
Adding channel: anim
Adding channel: physics
Adding channel: fx
Adding channel: leaderboards
Adding channel: parserscript
Adding channel: script
dvar set dedicated dedicated internet server
dvar set dedicated dedicated internet server
dvar set masterServerName FrozenKiller_RuLeZ.com
dvar set authServerName FrozenKiller_RuLeZ.com
dvar set masterPort 20810
dvar set authPort 20800
dvar set com_timescale 1
dvar set timescale 1
dvar set fixedtime 0
dvar set sys_configureGHz 8.88183
dvar set sys_sysMB 1024
dvar set sys_gpu AMD Radeon R7 200 Series
dvar set sys_configSum 0
dvar set dedicated dedicated internet server
dedicated is read only.
dvar set fs_game Mods/wh_promod
fs_game is write protected.
dvar set sv_punkbuster 1
dvar set net_port 29082
dvar set g_gametype sd
dvar set r_fullscreen 0
dvar set r_ignorehwgamma 0
dvar set r_picmip_water 0
dvar set r_aaSamples 4
dvar set r_vsync 0
dvar set r_monitor 0
dvar set r_rendererPreference Default
dvar set r_aspectRatio auto
dvar set r_customMode
dvar set r_altModelLightingUpdate 0
dvar set r_preloadShaders 0
dvar set r_loadForRenderer 0
dvar set r_loadForRenderer 0
Loading fastfile code_post_gfx_mp
Loading fastfile localized_code_post_gfx_mp
Loading fastfile mod
Loaded zone 'code_post_gfx_mp'
Loaded zone 'localized_code_post_gfx_mp'
Loaded zone 'mod'
Loading fastfile common_mp
Loading fastfile localized_common_mp
Waiting for $init to finish. There may be assets missing from code_post_gfx.
dvar set version CoD4 MP 1.7 build 568 nightly Wed Jun 18 2008 04:48:38PM win-x86
CPU vendor is "AuthenticAMD"
CPU name is "AMD A6-3650 APU with Radeon(tm) HD Graphics"
4 logical CPUs reported
4 physical CPUs detected
Measured CPU speed is 2.68 GHz
Total CPU performance is estimated as 8.88 GHz
System memory is 1024 MB (capped at 1 GB)
Video card is "AMD Radeon R7 200 Series"
Streaming SIMD Extensions (SSE) supported
dvar set in_mouse 1
dvar set g_gametype sd
dvar set ui_maxclients 32
dvar set sv_maxclients 21
Winsock Initialized
dvar set net_noudp 0
dvar set net_noipx 0
dvar set net_socksEnabled 0
dvar set net_socksServer
dvar set net_socksPort 1080
dvar set net_socksUsername
dvar set net_socksPassword
dvar set net_noudp 0
dvar set net_noipx 0
dvar set net_socksEnabled 0
dvar set net_socksServer
dvar set net_socksPort 1080
dvar set net_socksUsername
dvar set net_socksPassword
dvar set net_port 29082
Opening IP socket: localhost:29082
dvar set net_port 29082
Hostname: domi-PC
IP: 192.168.0.100
dvar set net_port 29082
dvar set dedicated dedicated internet server
dedicated is read only.
dvar set fs_game Mods/wh_promod
fs_game is write protected.
dvar set sv_punkbuster 1
sv_punkbuster is write protected.
dvar set net_port 29082
dvar set g_gametype sd
Waited 104 ms for $init to finish.
end $init 2684 ms
--- Common Initialization Complete ---
=============================== DVAR DUMP ========================================
ai_corpseCount "10"
attach_allow_assault_none "1"
attach_allow_assault_silencer "1"
attach_allow_pistol_none "1"
attach_allow_pistol_silencer "1"
attach_allow_specops_none "1"
attach_allow_specops_silencer "1"
authPort "20800"
authServerName "FrozenKiller_RuLeZ.com "
bg_fallDamageMaxHeight "350"
bg_fallDamageMinHeight "140"
cg_blood "0"
cg_brass "0"
cg_chatHeight "8"
cg_chatTime "12000"
cg_connectionIconSize "0"
cg_crosshairAlpha "1"
cg_crosshairAlphaMin "0.5"
cg_crosshairDynamic "0"
cg_crosshairEnemyColor "0"
cg_cursorHints "4"
cg_debugInfoCornerOffset "0 0"
cg_descriptiveText "0"
cg_drawBreathHint "0"
cg_drawCrosshair "1"
cg_drawCrosshairNames "0"
cg_drawFPS "Simple"
cg_drawFPSLabels "1"
cg_drawLagometer "0"
cg_drawMantleHint "1"
cg_drawSnapshot "0"
cg_drawTurretCrosshair "1"
cg_fov "80"
cg_fovscale "1"
cg_gameBoldMessageWidth "390"
cg_gameMessageWidth "455"
cg_headiconminscreenradius "0.015"
cg_hintFadeTime "100"
cg_hudChatIntermissionPosition "5 110"
cg_hudChatPosition "5 204"
cg_hudDamageIconHeight "64"
cg_hudDamageIconInScope "0"
cg_hudDamageIconOffset "128"
cg_hudDamageIconTime "2000"
cg_hudDamageIconWidth "128"
cg_hudGrenadeIconEnabledFlash "0"
cg_hudGrenadeIconHeight "25"
cg_hudGrenadeIconInScope "0"
cg_hudGrenadeIconMaxHeight "104"
cg_hudGrenadeIconMaxRangeFrag "250"
cg_hudGrenadeIconOffset "50"
cg_hudGrenadeIconWidth "25"
cg_hudGrenadePointerHeight "12"
cg_hudGrenadePointerPivot "12 27"
cg_hudGrenadePointerWidth "25"
cg_hudlegacysplitscreenscale "2"
cg_hudMapBorderWidth "2"
cg_hudMapFriendlyHeight "15"
cg_hudMapFriendlyWidth "15"
cg_hudMapPlayerHeight "20"
cg_hudMapPlayerWidth "20"
cg_hudMapRadarLineThickness "0.15"
cg_hudObjectiveTextScale "0.3"
cg_hudProneY "-160"
cg_hudSayPosition "5 180"
cg_hudsplitscreencompassscale "1.5"
cg_hudsplitscreenstancescale "2"
cg_hudStanceHintPrints "0"
cg_hudVotePosition "5 220"
cg_invalidCmdHintBlinkInterval "600"
cg_invalidCmdHintDuration "1800"
cg_laserLight "0"
cg_mapLocationSelectionCursorSpeed "0.6"
cg_marks_ents_player_only "0"
cg_predictItems "1"
cg_ScoresPing_BgColor "0.25098 0.25098 0.25098 0.501961"
cg_ScoresPing_HighColor "0.8 0 0 1"
cg_ScoresPing_Interval "100"
cg_ScoresPing_LowColor "0 0.74902 0 1"
cg_ScoresPing_MaxBars "4"
cg_ScoresPing_MedColor "0.8 0.8 0 1"
cg_scriptIconSize "0"
cg_sprintMeterDisabledColor "0.8 0.1 0.1 0.2"
cg_sprintMeterEmptyColor "0.7 0.5 0.2 0.8"
cg_sprintMeterFullColor "0.8 0.8 0.8 0.8"
cg_subtitleMinTime "3"
cg_subtitles "1"
cg_subtitleWidthStandard "520"
cg_subtitleWidthWidescreen "520"
cg_teamChatsOnly "0"
cg_viewZSmoothingMax "16"
cg_viewZSmoothingMin "1"
cg_viewZSmoothingTime "0.1"
cg_voiceIconSize "0"
cg_weaponCycleDelay "0"
cg_weaponHintsCoD1Style "1"
cg_youInKillCamSize "6"
cl_allowDownload "1"
cl_autocmd "0"
cl_freelook "1"
cl_maxpackets "100"
cl_maxPing "800"
cl_maxppf "5"
cl_mouseAccel "0"
cl_packetdup "1"
cl_paused "0"
cl_pitchspeed "140"
cl_punkbuster "1"
cl_voice "1"
cl_wwwDownload "1"
cl_yawspeed "140"
class_assault_allowdrop "1"
class_assault_limit "64"
class_demolitions_allowdrop "0"
class_demolitions_limit "1"
class_sniper_allowdrop "0"
class_sniper_limit "1"
class_specops_allowdrop "1"
class_specops_limit "2"
clientSideEffects "1"
com_animCheck "0"
com_filter_output "0"
com_introPlayed "1"
com_maxfps "125"
com_maxFrameTime "100"
com_playerProfile "Domi"
com_recommendedSet "1"
com_statmon "0"
com_timescale "1"
compassClampIcons "1"
compassCoords "740 3590 400"
compassECoordCutoff "37"
compassFriendlyHeight "18.75"
compassFriendlyWidth "18.75"
compassMaxRange "2500"
compassMinRadius "0.0001"
compassMinRange "0.0001"
compassObjectiveArrowHeight "20"
compassObjectiveArrowOffset "2"
compassObjectiveArrowRotateDist "5"
compassObjectiveArrowWidth "20"
compassObjectiveDrawLines "1"
compassObjectiveHeight "20"
compassObjectiveIconHeight "16"
compassObjectiveIconWidth "16"
compassObjectiveMaxRange "2048"
compassObjectiveMinAlpha "1"
compassObjectiveNumRings "10"
compassObjectiveRingSize "80"
compassObjectiveRingTime "10000"
compassObjectiveTextHeight "18"
compassObjectiveTextScale "0.3"
compassObjectiveWidth "20"
compassPlayerHeight "18.75"
compassPlayerWidth "18.75"
compassRadarLineThickness "0.4"
compassRadarPingFadeTime "4"
compassRadarUpdateTime "4"
compassRotation "1"
compassSize "1"
compassSoundPingFadeTime "2"
compassTickertapeStretch "0.5"
con_default_console_filter "*"
con_errormessagetime "8"
con_gameMsgWindow0FadeInTime "0.25"
con_gameMsgWindow0FadeOutTime "0.5"
con_gameMsgWindow0Filter "gamenotify obituary"
con_gameMsgWindow0LineCount "4"
con_gameMsgWindow0MsgTime "5"
con_gameMsgWindow0ScrollTime "0.25"
con_gameMsgWindow0SplitscreenScale "1.5"
con_gameMsgWindow1FadeInTime "0.25"
con_gameMsgWindow1FadeOutTime "0.01"
con_gameMsgWindow1Filter "boldgame"
con_gameMsgWindow1LineCount "5"
con_gameMsgWindow1MsgTime "8"
con_gameMsgWindow1ScrollTime "0.25"
con_gameMsgWindow1SplitscreenScale "1.5"
con_gameMsgWindow2FadeInTime "0.75"
con_gameMsgWindow2FadeOutTime "0.5"
con_gameMsgWindow2Filter "subtitle"
con_gameMsgWindow2LineCount "7"
con_gameMsgWindow2MsgTime "5"
con_gameMsgWindow2ScrollTime "0.25"
con_gameMsgWindow2SplitscreenScale "1.5"
con_gameMsgWindow3FadeInTime "0.25"
con_gameMsgWindow3FadeOutTime "0.5"
con_gameMsgWindow3Filter ""
con_gameMsgWindow3LineCount "5"
con_gameMsgWindow3MsgTime "5"
con_gameMsgWindow3ScrollTime "0.25"
con_gameMsgWindow3SplitscreenScale "1.5"
con_inputBoxColor "0.25 0.25 0.2 1"
con_inputHintBoxColor "0.4 0.4 0.35 1"
con_matchPrefixOnly "1"
con_minicon "0"
con_miniconlines "5"
con_minicontime "4"
con_outputBarColor "1 1 0.95 0.6"
con_outputSliderColor "0.15 0.15 0.1 0.6"
con_outputWindowColor "0.35 0.35 0.3 0.75"
con_typewriterColorGlowCheckpoint "0.6 0.5 0.6 1"
con_typewriterColorGlowCompleted "0 0.3 0.8 1"
con_typewriterColorGlowFailed "0.8 0 0 1"
con_typewriterColorGlowUpdated "0 0.6 0.18 1"
con_typewriterDecayDuration "700"
con_typewriterDecayStartTime "6000"
con_typewriterPrintSpeed "50"
customclass1 "Custom Slot 1"
customclass2 "Custom Slot 2"
customclass3 "Custom Slot 3"
customclass4 "Custom Slot 4"
customclass5 "Custom Slot 5"
dedicated "dedicated internet server"
developer "0"
developer_script "0"
drew_notes "5"
dvar_msg "0"
dvar_msg1 "^1Szabályzat:"
dvar_msg2 "^7-Ne sértegesd a többieket."
dvar_msg3 "-Ne kempeld végig a mapot attackba."
dvar_msg4 "4.-Ha csalót,hibát találsz jelentsd:"
dvar_msg5 ""
dvar_msgWait "10"
dynEnt_active "0"
fixedtime "0"
fs_basegame ""
fs_basepath "C:\cod4 promod mod"
fs_cdpath ""
fs_copyfiles "0"
fs_debug "0"
fs_game "mods/wh_promod"
fs_homepath "C:\cod4 promod mod"
fs_ignoreLocalized "0"
fs_restrict "0"
fs_usedevdir "0"
fx_marks "1"
fx_marks_ents "1"
fx_marks_smodels "1"
g_allowvote "0"
g_antilag "1"
g_banIPs ""
g_clonePlayerMaxVelocity "80"
g_compassShowEnemies "0"
g_deadChat "1"
g_dropForwardSpeed "10"
g_dropHorzSpeedRand "100"
g_dropUpSpeedBase "10"
g_dropUpSpeedRand "5"
g_gametype "sd"
g_inactivity "0"
g_inactivityspectator ""
g_log "games_mp.log"
g_logSync "0"
g_maxDroppedWeapons "16"
g_no_script_spam "1"
g_oldVoting "1"
g_password ""
g_playerCollisionEjectSpeed "25"
g_redCrosshairs "1"
g_smoothClients "1"
g_useGear "1"
g_useholdspawndelay "500"
g_voiceChatTalkingDuration "500"
g_voteAbstainWeight "0.5"
hiDef "1"
hud_deathQuoteFadeTime "1000"
hud_enable "1"
hud_fade_ammodisplay "0"
hud_fade_compass "0"
hud_fade_healthbar "2"
hud_fade_offhand "0"
hud_fade_sprint "1.7"
hud_fade_stance "1.7"
hud_fadeout_speed "0.1"
hud_flash_period_offhand "0.5"
hud_flash_time_offhand "2"
hud_health_pulserate_critical "0.5"
hud_health_pulserate_injured "1"
hud_health_startpulse_critical "0.33"
hud_health_startpulse_injured "1"
in_mouse "1"
koth_autodestroytime "60"
koth_capturetime "20"
koth_delayPlayer "0"
koth_destroytime "10"
koth_kothmode "0"
koth_spawnDelay "60"
koth_spawntime "0"
loc_forceEnglish "0"
loc_language "0"
loc_translate "1"
loc_warnings "0"
loc_warningsAsErrors "0"
logfile "1"
m_filter "0"
m_forward "0.25"
m_pitch "0.022"
m_side "0.25"
m_yaw "0.022"
mapname ""
masterPort "20810"
masterServerName "FrozenKiller_RuLeZ.com "
monkeytoy "0"
msg_dumpEnts "0"
msg_hudelemspew "0"
msg_printEntityNums "0"
name "wH?! Domi"
net_ip "localhost"
net_lanauthorize "0"
net_noipx "0"
net_noudp "0"
net_port "29082"
net_profile "0"
net_showprofile "0"
net_socksEnabled "0"
net_socksPassword ""
net_socksPort "1080"
net_socksServer ""
net_socksUsername ""
nextmap ""
onlinegame "1"
packetDebug "0"
promod_allow_readyup "0"
promod_allow_strattime "10"
promod_enable_scorebot "0"
promod_hud_show_website "1"
promod_hud_website ""
promod_kniferound "1"
promod_mc_delay "45"
promod_mc_enable "1"
promod_mc_loopdelay "45"
promod_mc_maxmessages "3"
promod_mc_message_1 ""
promod_mc_message_2 ""
promod_mc_message_3 ""
promod_mc_message_4 "^1Bármilyen Csalás!!!^1||Bannal Jár ^1|| "
promod_mc_message_5 "<*nextmap*>"
promod_mc_messagedelay_1 "0"
promod_mc_rs_every_round "1"
promod_mode "custom_public"
protocol "6"
r_aaAlpha "dither (fast)"
r_aaSamples "4"
r_altModelLightingUpdate "0"
r_aspectRatio "auto"
r_autopriority "0"
r_blur "0"
r_brightness "0"
r_cacheModelLighting "1"
r_cacheSModelLighting "1"
r_clear "dev-only blink"
r_clearColor "0 0 0 0"
r_clearColor2 "0 0 0 0"
r_colorMap "Unchanged"
r_contrast "1"
r_customMode ""
r_debugLineWidth "1"
r_debugShader "none"
r_depthPrepass "0"
r_desaturation "1"
r_detail "1"
r_diffuseColorScale "1"
r_displayRefresh "60 Hz"
r_distortion "0"
r_dlightLimit "0"
r_dof_bias "0.5"
r_dof_enable "0"
r_dof_farBlur "1.8"
r_dof_farEnd "7000"
r_dof_farStart "1000"
r_dof_nearBlur "6"
r_dof_nearEnd "60"
r_dof_nearStart "10"
r_dof_tweak "0"
r_dof_viewModelEnd "8"
r_dof_viewModelStart "2"
r_drawDecals "0"
r_drawSun "0"
r_drawWater "1"
r_envMapExponent "5"
r_envMapMaxIntensity "0.5"
r_envMapMinIntensity "0.2"
r_envMapOverride "0"
r_envMapSpecular "1"
r_envMapSunIntensity "2"
r_fastSkin "0"
r_filmTweakBrightness "0"
r_filmTweakContrast "1.4"
r_filmTweakDarkTint "0.7 0.85 1"
r_filmTweakDesaturation "0.2"
r_filmTweakEnable "0"
r_filmTweakInvert "0"
r_filmTweakLightTint "1.1 1.05 0.85"
r_filmUseTweaks "0"
r_floatz "1"
r_fog "1"
r_forceLod "none"
r_fullbright "0"
r_fullscreen "0"
r_gamma "1.65575"
r_glow "1"
r_glow_allowed "0"
r_glow_allowed_script_forced "0"
r_glowTweakBloomCutoff "0.5"
r_glowTweakBloomDesaturation "0"
r_glowTweakBloomIntensity0 "1"
r_glowTweakEnable "0"
r_glowTweakRadius0 "5"
r_glowUseTweaks "0"
r_gpuSync "adaptive"
r_highLodDist "-1"
r_ignore "0"
r_ignorehwgamma "0"
r_inGameVideo "1"
r_lightMap "Unchanged"
r_lightTweakAmbient "0.1"
r_lightTweakAmbientColor "1 0 0 1"
r_lightTweakDiffuseFraction "0.5"
r_lightTweakSunColor "0 1 0 1"
r_lightTweakSunDiffuseColor "0 0 1 1"
r_lightTweakSunDirection "0 0 0"
r_lightTweakSunLight "1"
r_loadForRenderer "0"
r_lockPvs "0"
r_lodBiasRigid "0"
r_lodBiasSkinned "0"
r_lodScaleRigid "1"
r_lodScaleSkinned "1"
r_logFile "0"
r_lowestLodDist "-1"
r_lowLodDist "-1"
r_mediumLodDist "-1"
r_mode "1152x648"
r_modelVertColor "1"
r_monitor "0"
r_multiGpu "0"
r_norefresh "0"
r_normal "1"
r_normalMap "Unchanged"
r_outdoor "1"
r_outdoorAwayBias "32"
r_outdoorDownBias "0"
r_outdoorFeather "8"
r_picmip "0"
r_picmip_bump "0"
r_picmip_manual "0"
r_picmip_spec "0"
r_picmip_water "0"
r_polygonOffsetBias "-1"
r_polygonOffsetScale "-1"
r_portalBevels "0.7"
r_portalBevelsOnly "0"
r_portalMinClipArea "0.02"
r_portalMinRecurseDepth "2"
r_portalWalkLimit "0"
r_preloadShaders "0"
r_pretess "1"
r_reflectionProbeGenerate "0"
r_reflectionProbeGenerateExit "0"
r_reflectionProbeRegenerateAll "0"
r_rendererInUse "Default"
r_rendererPreference "Default"
r_resampleScene "1"
r_scaleViewport "1"
r_showFbColorDebug "None"
r_showFloatZDebug "0"
r_showLightGrid "0"
r_showMissingLightGrid "0"
r_showPixelCost "off"
r_showPortals "0"
r_singleCell "0"
r_skinCache "1"
r_skipPvs "0"
r_smc_enable "1"
r_smp_backend "1"
r_smp_worker "1"
r_smp_worker_thread0 "1"
r_smp_worker_thread1 "1"
r_specular "0"
r_specularColorScale "1"
r_specularMap "Unchanged"
r_spotLightBrightness "14"
r_spotLightEndRadius "196"
r_spotLightEntityShadows "1"
r_spotLightFovInnerFraction "0.7"
r_spotLightShadows "1"
r_spotLightSModelShadows "1"
r_spotLightStartRadius "36"
r_sse_skinning "1"
r_sun_from_dvars "0"
r_sun_fx_position "0 0 0"
r_sunblind_fadein "0.5"
r_sunblind_fadeout "3"
r_sunblind_max_angle "5"
r_sunblind_max_darken "0.75"
r_sunblind_min_angle "30"
r_sunflare_fadein "1"
r_sunflare_fadeout "1"
r_sunflare_max_alpha "1"
r_sunflare_max_angle "2"
r_sunflare_max_size "2500"
r_sunflare_min_angle "45"
r_sunflare_min_size "0"
r_sunflare_shader "sun_flare"
r_sunglare_fadein "0.5"
r_sunglare_fadeout "3"
r_sunglare_max_angle "5"
r_sunglare_max_lighten "0.75"
r_sunglare_min_angle "30"
r_sunsprite_shader "sun"
r_sunsprite_size "16"
r_texFilterAnisoMax "4"
r_texFilterAnisoMin "1"
r_texFilterDisable "0"
r_texFilterMipBias "0"
r_texFilterMipMode "Unchanged"
r_useLayeredMaterials "0"
r_vc_makelog "0"
r_vc_showlog "0"
r_vsync "0"
r_warningRepeatDelay "5"
r_zfar "0"
r_zFeather "0"
r_znear "4"
r_znear_depthhack "0.1"
ragdoll_enable "0"
ragdoll_max_simulating "16"
rate "25000"
rcon_password "wh.team.2k17"
sc_blur "2"
sc_count "24"
sc_debugCasterCount "24"
sc_debugReceiverCount "24"
sc_enable "0"
sc_fadeRange "0.25"
sc_length "400"
sc_offscreenCasterLodBias "0"
sc_offscreenCasterLodScale "20"
sc_shadowInRate "2"
sc_shadowOutRate "5"
sc_showDebug "0"
sc_showOverlay "0"
sc_wantCount "12"
sc_wantCountMargin "1"
scr_allow_testclients "1"
scr_ctf_numlives "0"
scr_ctf_playerrespawndelay "0"
scr_ctf_roundlimit "2"
scr_ctf_roundswitch "1"
scr_ctf_scorelimit "10"
scr_ctf_timelimit "5"
scr_ctf_waverespawndelay "15"
scr_dm_numlives "0"
scr_dm_playerrespawndelay "0"
scr_dm_roundlimit "1"
scr_dm_scorelimit "150"
scr_dm_timelimit "10"
scr_dm_waverespawndelay "0"
scr_dom_numlives "0"
scr_dom_playerrespawndelay "0"
scr_dom_roundlimit "1"
scr_dom_scorelimit "200"
scr_dom_timelimit "0"
scr_dom_waverespawndelay "0"
scr_drawfriend "1"
scr_enable_hiticon "2"
scr_enable_scoretext "1"
scr_game_allowkillcam "1"
scr_game_deathpointloss "0"
scr_game_forceuav "0"
scr_game_graceperiod "0"
scr_game_hardpoints "1"
scr_game_matchstarttime "10"
scr_game_onlyheadshots "0"
scr_game_perks "1"
scr_game_spectatetype "1"
scr_game_suicidepointloss "0"
scr_hardcore "0"
scr_hardpoint_allowartillery "1"
scr_hardpoint_allowhelicopter "1"
scr_hardpoint_allowuav "1"
scr_koth_numlives "0"
scr_koth_playerrespawndelay "0"
scr_koth_roundlimit "1"
scr_koth_roundswitch "1"
scr_koth_scorelimit "250"
scr_koth_timelimit "15"
scr_koth_waverespawndelay "0"
scr_motd "Jó Játékot"
scr_oldschool "0"
scr_player_forcerespawn "1"
scr_player_healthregentime "5"
scr_player_maxhealth "100"
scr_player_numlives "0"
scr_player_respawndelay "0"
scr_player_sprinttime "4"
scr_player_suicidespawndelay "0"
scr_sab_bombtimer "30"
scr_sab_defusetime "5"
scr_sab_hotpotato "0"
scr_sab_numlives "0"
scr_sab_planttime "2.5"
scr_sab_playerrespawndelay "7.5"
scr_sab_roundlimit "0"
scr_sab_roundswitch "1"
scr_sab_scorelimit "1"
scr_sab_timelimit "20"
scr_sab_waverespawndelay "0"
scr_sd_bombtimer "45"
scr_sd_defusetime "5"
scr_sd_multibomb "0"
scr_sd_numlives "1"
scr_sd_planttime "5"
scr_sd_playerrespawndelay "0"
scr_sd_roundlimit "0"
scr_sd_roundswitch "3"
scr_sd_scorelimit "4"
scr_sd_timelimit "2.5"
scr_sd_waverespawndelay "0"
scr_team_fftype "0"
scr_team_kickteamkillers "0"
scr_team_respawntime "0"
scr_team_teamkillpointloss "5"
scr_team_teamkillspawndelay "0"
scr_testclients "0"
scr_war_numlives "0"
scr_war_playerrespawndelay "0"
scr_war_roundlimit "1"
scr_war_scorelimit "750"
scr_war_timelimit "10"
scr_war_waverespawndelay "0"
scr_xpscale "1"
sensitivity "5"
server1 ""
server10 ""
server11 ""
server12 ""
server13 ""
server14 ""
server15 ""
server16 ""
server2 ""
server3 ""
server4 ""
server5 ""
server6 ""
server7 ""
server8 ""
server9 ""
shortversion "1.7"
showdrop "0"
showpackets "0"
sm_enable "0"
sm_fastSunShadow "1"
sm_lightScore_eyeProjectDist "64"
sm_lightScore_spotProjectFrac "0.125"
sm_maxLights "4"
sm_polygonOffsetBias "0.5"
sm_polygonOffsetScale "2"
sm_qualitySpotShadow "1"
sm_spotEnable "1"
sm_spotShadowFadeTime "1"
sm_strictCull "1"
sm_sunEnable "1"
sm_sunSampleSizeNear "0.25"
sm_sunShadowCenter "0 0 0"
sm_sunShadowScale "1"
snaps "30"
snd_cinematicVolumeScale "0.85"
snd_enableEq "1"
snd_errorOnMissing "0"
snd_khz "44"
snd_levelFadeTime "250"
snd_outputConfiguration "Windows default"
snd_slaveFadeTime "500"
snd_touchStreamFilesOnLoad "0"
snd_volume "0"
stat_version "10"
sv_allowAnonymous "1"
sv_allowDownload "1"
sv_allowedClan1 ""
sv_allowedClan2 ""
sv_botsPressAttackBtn "1"
sv_cheats "0"
sv_clientArchive "1"
sv_clientSideBullets "1"
sv_connectTimeout "45"
sv_debugRate "0"
sv_debugReliableCmds "0"
sv_disableClientConsole "0"
sv_FFCheckSums ""
sv_FFNames ""
sv_floodprotect "4"
sv_fps "20"
sv_gamespy "1"
sv_hostname "GameTrackerClaimServer"
sv_iwdNames ""
sv_iwds ""
sv_keywords ""
sv_kickBanTime "0"
sv_log_damage "1"
sv_mapRotation "map mp_backlot map mp_crash map mp_crossfire map mp_citystreets map mp_strike"
sv_mapRotationCurrent ""
sv_master1 "cod4master.activision.com"
sv_master2 "cod4authorize.activision.com"
sv_master3 "cod4master.infinityward.com"
sv_master4 "cod4update.activision.com"
sv_master5 "master.gamespy.com:28960"
sv_master6 "master0.gamespy.com"
sv_master7 "master1.gamespy.com"
sv_master8 "clanservers.net"
sv_maxclients "21"
sv_maxPing "0"
sv_maxRate "25000"
sv_minPing "0"
sv_packet_info "0"
sv_padPackets "0"
sv_paused "0"
sv_privateClients "0"
sv_privatePassword ""
sv_punkbuster "1"
sv_pure "1"
sv_reconnectlimit "3"
sv_referencedFFCheckSums ""
sv_referencedFFNames ""
sv_referencedIwdNames ""
sv_referencedIwds ""
sv_running "0"
sv_serverid "0"
sv_showAverageBPS "0"
sv_showCommands "0"
sv_timeout "240"
sv_voice "0"
sv_voiceQuality "3"
sv_wwwBaseURL "http://37.17.172.50/fast/user18/27085/"
sv_wwwDIDisconnected "1"
sv_wwwDlDisconnected "0"
sv_wwwDownload "1"
sv_zombietime "2"
sys_configSum "0"
sys_configureGHz "8.88183"
sys_cpuGHz "2.67766"
sys_cpuName "AMD A6-3650 APU with Radeon(tm) HD Graphics"
sys_gpu "AMD Radeon R7 200 Series"
sys_lockThreads "none"
sys_smp_allowed "1"
sys_SSE "1"
sys_sysMB "1024"
timescale "1"
ui_allow_controlschange "1"
ui_bigFont "0.4"
ui_borderLowLightScale "0.35"
ui_browserFriendlyfire "-1"
ui_browserHardcore "-1"
ui_browserKillcam "-1"
ui_browserMod "0"
ui_browserOldSchool "-1"
ui_browserShowDedicated "0"
ui_browserShowEmpty "1"
ui_browserShowFull "1"
ui_browserShowPassword "-1"
ui_browserShowPunkBuster "-1"
ui_browserShowPure "1"
ui_buildLocation "-60 460"
ui_currentMap "0"
ui_currentNetMap "0"
ui_dedicated "0"
ui_drawCrosshair "1"
ui_extraBigFont "0.55"
ui_gametype "0"
ui_hud_hardcore "0"
ui_hud_obituaries "1"
ui_hud_showobjicons "1"
ui_joinGametype "0"
ui_mapname "mp_backlot"
ui_maxclients "32"
ui_mousePitch "0"
ui_netGametype "0"
ui_netGametypeName "dm"
ui_netSource "1"
ui_playerProfileAlreadyChosen "0"
ui_serverStatusTimeOut "7000"
ui_showmap "1"
ui_smallFont "0.25"
useFastFile "1"
vehDriverViewHeightMax "50"
vehDriverViewHeightMin "-15"
version "CoD4 MP 1.7 build 568 nightly Wed Jun 18 2008 04:48:38PM win-x86"
vid_xpos "547"
vid_ypos "326"
voice_deadChat "1"
voice_global "1"
voice_localEcho "1"
waypointIconHeight "36"
waypointIconWidth "36"
waypointOffscreenPointerDistance "20"
weap_allow_ak47 "1"
weap_allow_ak74u "1"
weap_allow_beretta "1"
weap_allow_colt45 "1"
weap_allow_deserteagle "1"
weap_allow_deserteaglegold "1"
weap_allow_flash_grenade "1"
weap_allow_frag_grenade "1"
weap_allow_g3 "1"
weap_allow_g36c "1"
weap_allow_m1014 "1"
weap_allow_m14 "1"
weap_allow_m16 "1"
weap_allow_m4 "1"
weap_allow_m40a3 "1"
weap_allow_mp44 "1"
weap_allow_mp5 "1"
weap_allow_remington700 "1"
weap_allow_smoke_grenade "1"
weap_allow_usp "1"
weap_allow_uzi "1"
weap_allow_winchester1200 "1"
wideScreen "1"
winvoice_mic_mute "0"
winvoice_mic_reclevel "0"
winvoice_mic_scaler "1"
winvoice_save_voice "0"
824 total dvars
824 dvar indexes
=============================== END DVAR DUMP =====================================
dvar set dedicated dedicated internet server
dedicated is read only.
dvar set fs_game Mods/wh_promod
fs_game is write protected.
dvar set sv_punkbuster 1
sv_punkbuster is write protected.
Unknown command "selectStringTableEntryInDvar"
dvar set g_gametype sd
dvar set g_gametype sd
Loaded zone 'common_mp'
Loaded zone 'localized_common_mp'
dvar set mapname mp_crash
------ Server Initialization ------
Server: mp_crash
dvar set ui_maxclients 32
dvar set sv_maxclients 21
dvar set sv_running 1
Current language: english
Current search path:
C:\cod4 promod mod\mods\wh_promod\wh.iwd (52 files)
C:\cod4 promod mod/mods/wh_promod
C:\cod4 promod mod\main\iw_13.iwd (265 files)
C:\cod4 promod mod\main\iw_12.iwd (33 files)