-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnemesis.cfg
1061 lines (1061 loc) · 35.8 KB
/
nemesis.cfg
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
unbindall
bind TAB "+scores"
bind ESCAPE "togglemenu"
bind SPACE "+movedown"
bind 1 "say ^7|^5]^4*"
bind 2 "say_team ^4<<<< ^3ENEMIES, TAKE CARE"
bind 3 "say_team ^4<<<< ^3TAKEN"
bind 4 "say ^1Oh I'm sry, was that too fast for u? ^7:P"
bind 5 "messagemode2"
bind 6 "say_team ^4<<<< ^3POWERUP SOON ^4>>>>"
bind = "reconnect"
bind ` "toggleconsole"
bind a "+moveleft"
bind b "weapon 13"
bind c "weapon 6;cg_drawgun 0;echo ^0[^1LIGHTNINGGUN^0];cg_crosshairsize 50;cg_drawcrosshair 7;cg_crosshairhitstyle 2"
bind d "+moveright"
bind e "weapon 7;cg_drawgun 0;echo ^0[^1RAILGUN^0];cg_crosshairsize 45;cg_drawcrosshair 3;cg_crosshairhitstyle 0"
bind f "weapon 8;cg_drawgun 0;echo ^0[^1PLASMAGUN^0];cg_crosshairsize 45;cg_drawcrosshair 11#;cg_crosshairhitstyle 0"
bind g "dropweapon"
bind h "centerview"
bind i "say_team NEED A WEAPON"
bind m "droppowerup"
bind n "dropflag"
bind o "say ^1nu ^2mai ^3joc ^4sunt ^5obosit ^6am ^7fost ^8la ^9gradina"
bind q "+acc"
bind r "weapon 5;cg_drawgun 0;echo ^0[^1ROCKET_LAUNCHER^0];cg_crosshairsize 35;cg_drawcrosshair 13#;cg_crosshairhitstyle 0"
bind s "+back"
bind t "weapon 4;cg_drawgun 0;echo ^0[^1GRENADE_LAUNCHER^0];cg_crosshairsize 45;cg_drawcrosshair 3;cg_crosshairhitstyle 2"
bind v "say ^7Sorry :^1*"
bind w "+forward"
bind x "weapon 3;cg_drawgun 0;echo ^0[^1SHOTGUN^0];cg_crosshairsize 35;cg_drawcrosshair 11#;cg_crosshairhitstyle 0"
bind y "say ^3<<<<<< ^5MEGA SOON ^3>>>>>>"
bind z "weapon 9;cg_drawgun 2;echo ^0[^1BFG10K^0]"
bind CAPSLOCK "weapon 1"
bind UPARROW "vstr vup"
bind DOWNARROW "vstr vdn"
bind LEFTARROW "vstr vd"
bind RIGHTARROW "vstr vu"
bind ALT "+zoom"
bind SHIFT "+speed"
bind PGUP "callvote map hektik"
bind F1 "vote yes"
bind F2 "vote no"
bind F3 "readyup"
bind F4 "stoprecord"
bind F5 "screenshot"
bind F6 "screenshotSocial"
bind F10 "vid_restart"
bind F11 "toggle cg_chatbeep"
bind F12 "quit"
bind KP_HOME "callvote map aerowalk"
bind KP_LEFTARROW "callvote map hektik"
bind KP_END "callvote map lostworld"
bind KP_INS "callvote map toxicity"
bind KP_DEL "callvote map furiousheights"
bind MOUSE1 "+attack"
bind MOUSE2 "+moveup"
bind MWHEELDOWN "weapon 2;cg_drawgun 2;echo ^0[^1MACHINEGUN^0]"
bind MWHEELUP "+button2"
unaliasall
seta cg_zoomToggle "0"
seta cg_zoomSensitivity "1"
seta cg_zoomScaling "1"
seta cg_trueShotgun "0"
seta cg_teamColor ""
seta cg_teamChatsOnly "0"
seta cg_teamChatBeep "1"
seta cg_switchOnEmpty "1"
seta cg_stereoSeparation "0.4"
seta cg_stats "0"
seta cg_speedometer "0"
seta cg_smoothClients "0"
seta cg_smokeRadius_haste "8"
seta cg_smokeRadius_flight "8"
seta cg_smokeRadius_dust "24"
seta cg_showVoiceText "1"
seta cg_showmiss "0"
seta cg_selfOnTeamOverlay "0"
seta cg_screenDamage_Self "0x00000000"
seta cg_respawnTimerY "100"
seta cg_respawnTimerX "10"
seta ui_recordSPDemoName ""
seta cg_quadKillCounter "0"
seta cg_playVoiceChats "1"
seta cg_playTeamVO "1"
seta cg_playerNames "1"
seta cg_playerLean "1"
seta cg_nopredict "0"
seta cg_lowAmmoWarningPercentile "0.20"
seta cg_lightningImpactCap "192"
seta cg_hitBeep "2"
seta cg_gunZ "0"
seta cg_gunX "0"
seta cg_forceRedTeamModel ""
seta cg_forceEnemyWeaponColor "0"
seta cg_forceDrawCrosshair "0"
seta cg_forceBlueTeamModel ""
seta cg_enemyColor ""
seta cg_drawTeamOverlayY "0"
seta cg_drawTeamOverlayX "0"
seta cg_drawStatus "1"
seta cg_drawSnapshot "0"
seta cg_drawRewards "1"
seta cg_drawIcons "1"
seta cg_drawFriend "1"
seta cg_drawFragMessages "1"
seta cg_drawCrosshairTeamHealthSize "0.12f"
seta cg_drawCrosshairNamesOpacity "0.75"
seta cg_deferPlayers "1"
seta cg_deadBodyDarken "1"
seta cg_deadBodyColor "0x101010FF"
seta cg_customAspect_Y "0"
seta cg_customAspect_X "0"
seta cg_currentSelectedPlayerName ""
seta cg_currentSelectedPlayer "0"
seta cg_crosshairY "0"
seta cg_crosshairX "0"
seta cg_crosshairPulse "1"
seta cg_crosshairHitTime "200.0"
seta cg_crosshairHitColor "1"
seta cg_complaintWarning "1"
seta cg_clanOnTeamOverlay "0"
seta cg_chatHistoryLength "6"
seta cg_cameraOrbitDelay "50"
seta cg_buzzerSound "1"
seta cg_autoProjectileNudge "0"
seta cg_atmosphericEffects "1"
seta ui_bigFont "0.4"
seta ui_smallFont "0.25"
seta r_gl_reserved "1"
seta r_gl_renderer "GeForce 9800 GT/PCI/SSE2"
seta r_gl_vendor "NVIDIA Corporation"
seta r_teleporterFlash "1"
seta r_fastSkyColor "0x000000"
seta sex "male"
seta teamtask "0"
seta handicap "100"
seta cl_mouseAccelPower "2"
seta cl_mouseAccelOffset "0"
seta cl_autoTimeNudge "0"
seta com_maxfps "125"
seta z_on "vstr zoom13"
seta z_off "vstr weap13 set bind_weap set gun1 vstr weap1"
seta web_start_settings_9 "{}"
seta web_start_settings_5 "{}"
seta web_start_settings_4 "{}"
seta web_start_settings_3 "{}"
seta web_start_settings_1 "{}"
seta web_start_settings_0 "{}"
seta web_start_gametype "5"
seta web_practice_settings_5 "{}"
seta web_practice_settings_4 "{}"
seta web_practice_settings_3 "{}"
seta web_practice_settings_0 "{}"
seta web_practice_gametype "1"
seta web_home "home"
seta web_fboauth "62128223554%7C764e6f3dcc9b6f386e407850.1-100001645164217%7CYEnSDb4wb4fF_vCarJT_AuQRsZo"
seta web_chattimestamps "0"
seta web_advancedBrowser "0"
seta vup "vstr vol10"
seta vu "vstr g02"
seta vol_up "vstr vol_12"
seta vol_down "vstr vol_11"
seta vol10 "set s_volume 1.0;set vdn vstr vol09;set vup vstr vol10;play sound/misc/menu2.wav; echo ^5Volume ==========^1MAX"
seta vol09 "set s_volume 0.9;set vdn vstr vol08;set vup vstr vol10;play sound/misc/menu2.wav; echo ^2Volume =========^1*^2="
seta vol08 "set s_volume 0.8;set vdn vstr vol07;set vup vstr vol09;play sound/misc/menu2.wav; echo ^2Volume ========^1*^2=="
seta vol07 "set s_volume 0.7;set vdn vstr vol06;set vup vstr vol08;play sound/misc/menu2.wav; echo ^2Volume =======^1*^2==="
seta vol06 "set s_volume 0.6;set vdn vstr vol05;set vup vstr vol07;play sound/misc/menu2.wav; echo ^2Volume ======^1*^2===="
seta vol05 "set s_volume 0.5;set vdn vstr vol04;set vup vstr vol06;play sound/misc/menu2.wav; echo ^2Volume =====^1*^2====="
seta vol04 "set s_volume 0.4;set vdn vstr vol03;set vup vstr vol05;play sound/misc/menu2.wav; echo ^2Volume ====^1*^2======"
seta vol03 "set s_volume 0.3;set vdn vstr vol02;set vup vstr vol04;play sound/misc/menu2.wav; echo ^2Volume ===^1*^2======="
seta vol02 "set s_volume 0.2;set vdn vstr vol01;set vup vstr vol03;play sound/misc/menu2.wav; echo ^2Volume ==^1*^2========"
seta vol01 "set s_volume 0.1;set vdn vstr vol00;set vup vstr vol02;play sound/misc/menu2.wav; echo ^2Volume =^1*^2========="
seta vol00 "set s_volume 0.0;set vdn vstr vol00;set vup vstr vol01;play sound/misc/menu2.wav; echo ^5Volume ^1MIN^2=========="
seta vm_ui "2"
seta vm_game "2"
seta vm_cgame "2"
seta vid_ypos "0"
seta vid_xpos "0"
seta vdn "vstr vol09"
seta vd "vstr g01"
seta ui_teamArenaFirstRun "1"
seta ui_sdcDemos "1"
seta ui_3waveFont "1"
seta uhhh "wait;wait;wait;wait"
seta team_model "bitterman/blue"
seta team_headmodel "bitterman/blue"
seta sv_warmupReadyPercentage "0.51"
seta sv_strictAuth "1"
seta sv_ranked "0"
seta sv_punkbuster "0"
seta sv_master5 ""
seta sv_master4 ""
seta sv_master3 ""
seta sv_master2 ""
seta s_separation "0.5"
seta s_occlude "1"
seta s_occfactor "0.5"
seta snaps "20"
seta s_khz "22"
seta session1 "0 600 0 0 0 0 0 3 0 0 0 0"
seta session0 "3 411240 1 0 0 0 0 0 0 0 0 0"
seta session "1"
seta server_thrufloors "0"
seta server_promode "0"
seta server_lgcooldown "0"
seta server_instagib "0"
seta server_fastrail "0"
seta server_fallingdamage "1"
seta server_CPMA_armor "1"
seta server_chatfloodprotect "0"
seta server_armordamageteam "1"
seta server_armordamageself "0"
seta scr_conspeed "3"
seta s_ambient "0.000000"
seta s2 "say ^7hf;bind pgup vstr s1"
seta s1 "say ^7gl;bind pgup vstr s2"
seta r_subdivisions "4"
seta r_segmentlength "1"
seta r_preloadTextures "0"
seta roundtimelimit "180"
seta roundlimit "8"
seta rjump_2 "set cl_pitchspeed 140;-lookdown;set freelook 1;-attack;-moveup"
seta rjump_1 "set freelook 0;+lookdown;vstr uhhh;+attack;+moveup"
seta rjump "vstr rjump_1;vstr uhhh;vstr rjump_2;"
seta rj "centerview;cl_yawspeed 22500;cl_pitchspeed 4900;+left;+lookdown;+attack;+moveup;wait 2;-lookdown;-attack;-left;-moveup;wait 2;+left;wait 6;-left;centerview;cl_yawspeed 140;cl_pitchspeed 140"
seta r_ext_compress_textures "1"
seta rec "vstr r1 seta activeAction vstr zoom seta zoom +zoom"
seta r_dlightBacks "1"
seta r_customaspect "1"
seta r_ambientScale "100.000000"
seta prev-demo "vstr plEntry1"
seta plEntry9 "demo mouZcOOLLER(POV)-vs-EGDaHanG-ztntourney1-2010_07_03-16_26_25.dm_73; echo Playing entry #10 of 10 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry8 ; set nextdemo vstr playListEnd"
seta plEntry8 "demo mouzcOOLLER(POV)-vs-raZercYpheR-ztntourney1-2010_05_22-16_56_14.dm_73; echo Playing entry #9 of 9 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry7 ; set nextdemo vstr playListEnd"
seta plEntry7 "demo mouzcOOLLER(POV)-vs-raZercYpheR-qztourney9-2010_05_22-16_45_05.dm_73; echo Playing entry #8 of 9 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry6 ; set nextdemo vstr plEntry8"
seta plEntry6 "demo mouzcOOLLER(POV)-vs-agentJkezooR-qztourney9-2010_05_22-16_20_27.dm_73; echo Playing entry #7 of 9 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry5 ; set nextdemo vstr plEntry7"
seta plEntry5 "demo mouzcOOLLER(POV)-vs-evil-qzdm6-2010_05_22-15_58_30.dm_73; echo Playing entry #6 of 9 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry4 ; set nextdemo vstr plEntry6"
seta plEntry4 "demo mouzcOOLLER(POV)-vs-volgonike-qzdm6-2010_05_22-15_07_53.dm_73; echo Playing entry #5 of 9 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry3 ; set nextdemo vstr plEntry5"
seta plEntry3 "demo RUScOOLLER(POV)-vs-raZercYpheR-qzdm6-2010_05_22-14_46_47.dm_73; echo Playing entry #4 of 9 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry2 ; set nextdemo vstr plEntry4"
seta plEntry2 "demo CTF-qzctf8-2010_04_25-22_38_48.dm_73; echo Playing entry #3 of 3 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry1 ; set nextdemo vstr playListEnd"
seta plEntry1 "demo CTF-qzctf7-2010_04_25-22_07_07.dm_73; echo Playing entry #2 of 3 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry0 ; set nextdemo vstr plEntry2"
seta plEntry0 "demo CTF-qzctf2-2010_04_25-21_40_31.dm_73; echo Playing entry #1 of 3 ; set next-demo vstr nextdemo ; set prev-demo vstr plEntry0 ; set nextdemo vstr plEntry1"
seta playlistEnd ""
seta pb_system "1"
seta pb_SsSave "0"
seta pb_SsLog "1"
seta pb_Sleep "500"
seta pb_security "0"
seta pb_msgPrefix "[skipnotify]^5Punkbuster Client"
seta pb_cl_enable "1"
seta next-demo "vstr nextdemo"
seta nextdemo ""
seta net_noipx "0"
seta n3 "name ^0^xFFFFFFnemesis;bind * vstr n1"
seta n2 "name ^0^X3366ffnemesis;bind * vstr n3"
seta n1 "name ^0^Xff0000nemesis;bind * vstr n2"
seta m_yaw "0.024"
seta mercylimit "0"
seta m_cpi "0"
seta match_readypercent "51"
seta instagib_reload "1500"
seta in_logitechbug "0"
seta HUD_timer_size "1"
seta HUD_timer_align "2"
seta HUD_timer "635x3"
seta HUD_team_size "26"
seta HUD_teamborder "0"
seta HUD_scores_height "15"
seta HUD_scores_align "1"
seta HUD_scores "0x438"
seta HUD_powerup_size "2"
seta HUD_powerup_dir "0"
seta HUD_powerup "1x400"
seta HUD_health_size "2"
seta HUD_healthicon "248x436"
seta HUD_healthbar_size "150x16"
seta HUD_healthbar_dir "2"
seta HUD_healthbar "240x437"
seta HUD_health_align "2"
seta HUD_health "310x434"
seta HUD_flag_size "3"
seta HUD_flagicon "2x325"
seta HUD_armor_size "2"
seta HUD_armoricon "377x437"
seta HUD_armorbar_size "150x16"
seta HUD_armorbar_dir "1"
seta HUD_armorbar "400x437"
seta HUD_armor_align "0"
seta HUD_armor "330x434"
seta HUD_ammo_size "2"
seta HUD_ammoicon "3x358"
seta HUD_ammobar_size "0x42"
seta HUD_ammobar_dir "1"
seta HUD_ammobar "319x424"
seta HUD_ammo_align "0"
seta HUD_ammo "2x380"
seta headmodel "bitterman/blue"
seta g_voteFlags "0"
seta gun9 "vstr zoom9"
seta gun8 "vstr zoom8"
seta gun7 "vstr zoom7"
seta gun6 "vstr zoom6"
seta gun5 "vstr zoom5"
seta gun4 "vstr zoom4"
seta gun3 "vstr zoom3"
seta gun2 "vstr zoom2"
seta gun13 "vstr zoom13 set pluszoom vstr z_on"
seta gun12 "vstr zoom12"
seta gun11 "vstr zoom11"
seta g_truePing "1"
seta g_teamForceBalance "0"
seta g_teamAutoJoin "0"
seta g_stepwaypoint "200"
seta g_rl_speed "900"
seta g_rl_damage "100"
seta g_restarted "0"
seta g_redTeam "Stroggs"
seta g_nosuicide "0"
seta g_midair_splash "0"
seta g_midair_power "1"
seta g_midair_mega "2"
seta g_midair "0"
seta g_mercytime "0"
seta g_maxGameClients "0"
seta g_lowbandLG "1"
seta g_logSync "0"
seta g_log ""
seta g_levelStartTime "1313338022"
seta g_gameState "PRE_GAME"
seta g_friendlyfire "0"
seta g_filterBan "1"
seta g_drawBBox "0"
seta g_doWarmup "1"
seta g_delagHitscan "1"
seta g_complaintLimit "5"
seta g_complaintDamageThreshold "400"
seta g_chickglow "2"
seta g_blueTeam "Pagans"
seta g_bloodMarks "0"
seta g_bloodBody "0"
seta g_banIPs ""
seta g_allowVote "1"
seta g10 "set r_gamma 2.0;set vd vstr g09;set vu vstr g10; play sound/misc/menu2.wav; echo ^5Gamma =========^1MAX"
seta g09 "set r_gamma 1.9;set vd vstr g08;set vu vstr g10; play sound/misc/menu2.wav; echo ^2Gamma ========^1*^2="
seta g08 "set r_gamma 1.8;set vd vstr g07;set vu vstr g09; play sound/misc/menu2.wav; echo ^2Gamma =======^1*^2=="
seta g07 "set r_gamma 1.7;set vd vstr g06;set vu vstr g08; play sound/misc/menu2.wav; echo ^2Gamma ======^1*^2==="
seta g06 "set r_gamma 1.6;set vd vstr g05;set vu vstr g07; play sound/misc/menu2.wav; echo ^2Gamma =====^1*^2===="
seta g05 "set r_gamma 1.5;set vd vstr g04;set vu vstr g06; play sound/misc/menu2.wav; echo ^2Gamma ====^1*^2====="
seta g04 "set r_gamma 1.4;set vd vstr g03;set vu vstr g05; play sound/misc/menu2.wav; echo ^2Gamma ===^1*^2======"
seta g03 "set r_gamma 1.3;set vd vstr g02;set vu vstr g04; play sound/misc/menu2.wav; echo ^2Gamma ==^1*^2======="
seta g02 "set r_gamma 1.2;set vd vstr g01;set vu vstr g03; play sound/misc/menu2.wav; echo ^2Gamma =^1*^2========"
seta g01 "set r_gamma 1.1;set vd vstr g01;set vu vstr g02; play sound/misc/menu2.wav; echo ^5Gamma ^1MIN^2========="
seta freelook "1"
seta df_vote_voteDelay "30"
seta df_vote_passVoteOnRatio ".6"
seta df_vote_maxVotes "5"
seta df_vote_allowVotes "1"
seta df_vote_allow_promode "1"
seta df_vote_allow_nextmap "1"
seta df_vote_allow_mode "1"
seta df_vote_allow_map_restart "1"
seta df_vote_allow_map "1"
seta df_vote_allow_kick "1"
seta df_vote_allow_interference "0"
seta df_vote_allow_gametype "0"
seta df_vote_allow_clientkick "1"
seta df_varHelpers_DrawOutput "0"
seta df_unit "0"
seta df_ui_TextColorValue "1.00 0.00 0.00 1.00"
seta df_ui_TextColorMedium "0.00 0.00 1.00 1.00"
seta df_ui_TextColorLabel "1.00 1.00 0.00 1.00"
seta df_ui_TextColorHighlight "1.00 1.00 0.00 1.00"
seta df_ui_TextColorDisabled "0.50 0.50 0.50 1.00"
seta df_ui_TextColorBig "1.00 0.00 0.00 1.00"
seta df_ui_StatusColor "1.00 1.00 1.00 1.00"
seta df_ui_PulseColor "1.00 1.00 1.00 1.00"
seta df_ui_ListbarColor "1.00 0.00 0.00 0.30"
seta df_ui_DisplayCVarName "1"
seta df_ui_CustomMenu "2"
seta df_ui_CursorColor "0.50 0.80 1.00 1.00"
seta df_sv_script_idleDelay "50"
seta df_sv_script_idleCfg ""
seta df_sound_leadChanges "1"
seta df_sound_flagGrabbing "0"
seta df_script_onRespawn "0"
seta df_script_onMapLoad "0"
seta df_player_Sprites "1"
seta df_player_SmokeTrails "0.00"
seta df_ob_Fast "1"
seta df_ob_AllSlopes "0"
seta df_noEndOfRunStats "0"
seta df_name "frost"
seta df_mp_NoDrawRadius "200"
seta df_hud_videocapture_y "240"
seta df_hud_videocapture_x "320"
seta df_hud_videocapture_fontsize "16"
seta df_hud_videocapture_fontshadow "1"
seta df_hud_videocapture_fontjustify "0"
seta df_hud_videocapture_fontcolor "7"
seta df_hud_transparency "0.25"
seta df_hud_scoreboard_size "0"
seta df_hud_forceteamcolors "1"
seta df_hud_fontshadow "1"
seta df_hud_fontcolorRGB ""
seta df_hud_fontcolor "7"
seta df_hud_colorwarning "1"
seta df_hud_colorRGB ""
seta df_hud_color "4"
seta df_hud_cgaz "0"
seta df_hud_3DIcons "1"
seta df_hud "1"
seta df_ghosts_SpriteSize "8"
seta df_ghosts_SpriteInfo ""
seta df_ghosts_SelfMissilesOnly "1"
seta df_ghosts_NoDrawRadius "200"
seta df_ghosts_MiniviewSize "25"
seta df_ghosts_MiniviewOffsetY "-155"
seta df_ghosts_MiniviewOffsetX "235"
seta df_ghosts_MiniviewFOV "90"
seta df_ghosts_MiniviewDrawGun "1"
seta df_ghosts_MiniviewDraw "3"
seta df_ghosts_MiniviewCameraMode "1"
seta df_ghosts_MiniviewBorderSize "4"
seta df_ghosts_LiveAmmo "0"
seta df_ghosts_FileExtension ""
seta df_ghosts_DrawOutput "0"
seta df_ghosts_CheckPVS "1"
seta df_ghosts_AutoModeMP "0"
seta df_ghosts_AutoMode "4"
seta df_ghost2_RecordView "0"
seta df_ghost2_RecordInterval "50"
seta df_ghost2_RecordFileFormat "2"
seta df_ghost2_PlayTimescale "1.0"
seta df_ghost2_PlayLoop "0"
seta df_ghost2_PlayDrawPlayer "3"
seta df_ghost2_PlayDrawMissiles "2"
seta df_ghost2_PlayCameraMode "0"
seta df_ghost1_RecordView "0"
seta df_ghost1_RecordInterval "50"
seta df_ghost1_RecordFileFormat "2"
seta df_ghost1_PlayTimescale "1.0"
seta df_ghost1_PlayLoop "0"
seta df_ghost1_PlayDrawPlayer "3"
seta df_ghost1_PlayDrawMissiles "2"
seta df_ghost1_PlayCameraMode "0"
seta df_drawSpeed "1"
seta df_drawJumpmeters "0"
seta df_drawCheckpointStats "1"
seta df_drawCheckpointEvents "1"
seta df_drawBesttime "1"
seta df_demos_validation "0"
seta df_demos_UnlockThirdPersonPitch "0"
seta df_demos_UICompatibility "0"
seta df_demos_ReplayMode "1"
seta df_demos_ReplayFilename "$demoname"
seta df_demos_ReplayDrawMask "32767"
seta df_demos_HidePacketEntities "0"
seta df_demos_HideLocalEntities "0"
seta df_demos_CameraTransitionSpeed "50"
seta df_demos_CameraMode "0"
seta df_country "CountryHere"
seta df_cl_alwaysDrawItems "1"
seta df_chs_UsePredicted "0"
seta df_chs2_OffsetY "100"
seta df_chs2_OffsetX "-300"
seta df_chs2_LabelType "1"
seta df_chs2_LabelColor "7"
seta df_chs2_Info8 "0"
seta df_chs2_Info7 "0"
seta df_chs2_Info6 "0"
seta df_chs2_Info5 "0"
seta df_chs2_Info4 "0"
seta df_chs2_Info3 "0"
seta df_chs2_Info2 "0"
seta df_chs2_Info1 "0"
seta df_chs2_FontTransparency "1.00"
seta df_chs2_FontSize "8"
seta df_chs2_FontShadow "1"
seta df_chs2_FontColor "7"
seta df_chs2_EnableCombos "0"
seta df_chs2_Draw "0"
seta df_chs2_DisplayType "1"
seta df_chs2_ComboSeparator "/"
seta df_chs1_OffsetY "0"
seta df_chs1_OffsetX "0"
seta df_chs1_LabelType "0"
seta df_chs1_LabelColor "7"
seta df_chs1_Info8 "0"
seta df_chs1_Info7 "0"
seta df_chs1_Info6 "0"
seta df_chs1_Info5 "0"
seta df_chs1_Info4 "0"
seta df_chs1_Info3 "0"
seta df_chs1_Info2 "0"
seta df_chs1_Info1 "0"
seta df_chs1_FontTransparency "1.00"
seta df_chs1_FontSize "10"
seta df_chs1_FontShadow "1"
seta df_chs1_FontColor "7"
seta df_chs1_EnableCombos "0"
seta df_chs1_Draw "0"
seta df_chs1_DisplayType "0"
seta df_chs1_ComboSeparator "/"
seta df_chs0_OffsetY "0"
seta df_chs0_OffsetX "0"
seta df_chs0_LabelColor "7"
seta df_chs0_FontTransparency "1.00"
seta df_chs0_FontSize "8"
seta df_chs0_FontShadow "0"
seta df_chs0_FontColor "7"
seta df_chs0_Draw "0"
seta df_chs0_DisplayType "0"
seta df_checkpoints "2"
seta df_autorecord "3"
seta df_ar_stopdelay "3000"
seta df_ar_speedcapture_format "0"
seta df_ar_format "$map.$-route[$gt.$phys.$-mode]$m.$-s.$-ms($pl.$plc)"
seta df_accel_Scale "-1.2"
seta df_accel_Output "0"
seta df_accel_OffsetY "0"
seta df_accel_OffsetX "0"
seta df_accel_Mode "0"
seta df_accel_HistoryResetSpeed "100"
seta df_accel_FontSize "7"
seta df_accel_Draw "0"
seta df_accel_AdjustMaxSpeed "1"
seta creepCam_smoothFactor "2.5"
seta creepCam "0"
seta con_speed "1000"
seta con_scale "1"
seta con_opacity "0.5"
seta con_height "0.5"
seta con_background "0"
seta com_errorMessage "Server Disconnected - Dropped due to inactivity"
seta com_allowConsole "1"
seta color "7nna"
seta cl_punkbuster "1"
seta cl_mouseAccel "0.4"
seta cl_maxpackets "125"
seta cl_downloadTime "866360"
seta cl_downloadSize "1668848"
seta cl_downloadCount "1668848"
seta cl_demoRecordMessage "0.000000"
seta cl_currentServerAddress "80.97.209.254:27038"
seta cl_contimestamps "1"
seta clan ""
seta cl_allowConsoleChat "1"
seta ch_Weaponswitch "8"
seta ch_weaponListSeparator "74"
seta ch_weaponListFlash "1"
seta ch_weaponListDrawAll "0"
seta ch_weaponListBackground "1"
seta ch_weaponList "0 48 1 2"
seta ch_Teamoverlay "p12n h/aw l"
seta ch_TeamCrosshairHealth "1"
seta ch_TeamchatOnly "0"
seta ch_TeamBackground "0"
seta ch_statusbarStyle "1"
seta ch_StatusbarFormat "1"
seta ch_skinScores "0"
seta ch_recordMessage "1"
seta ch_Pickupitem "1"
seta ch_Obituaries "1"
seta ch_InverseTeamChat "0"
seta chickmenu "0"
seta ch_graphs "1"
seta ch_fragMessage "1"
seta ch_FilterLocationsTeamchat "1"
seta ch_drawWeaponSelect "1"
seta ch_drawWarmup "0"
seta ch_drawSpeed "0"
seta ch_drawPickup "1"
seta ch_drawHealthMeters "0"
seta ch_drawHead "1"
seta ch_drawFollow "1"
seta ch_drawFlagNames "2"
seta ch_crosshairTeamInfo "1"
seta ch_CrosshairNamesLeft "0"
seta ch_CrosshairColor "White"
seta ch_ColorLocations "1"
seta ch_3waveFont "0"
seta cg_zoomOutOnDeath "0"
seta cg_zoomfov "35"
seta cg_xerpclients "1"
seta cg_weaponcolorstyle "0"
seta cg_weaponColor_grenade "0xFFFFFFFF"
seta cg_weaponcolor "0x00FF0000"
seta cg_weaponBar "1"
seta cg_waterWarp "0.000000"
seta cg_useScreenShotJPEG "1"
seta cg_trueLightning "1"
seta cg_teamUpperColor "0x404040ff"
seta cg_teamRails "0"
seta cg_teamLowerColor "0x404040ff"
seta cg_teamHeadColor "0x404040ff"
seta cg_teamChatTime "3000"
seta cg_teamChatHeight "0"
seta cg_switchToEmpty "1"
seta cg_swapSkins "0"
seta cg_statScrollTime "0.15"
seta cg_Sounds ""
seta cg_smoke_SG "0.000000"
seta cg_smokeRadius_RL "0.000000"
seta cg_smokeRadius_NG "0.000000"
seta cg_smokeRadius_GL "0.000000"
seta cg_smokegrowth_rl "1"
seta cg_smokegrowth_gl "1"
seta cg_simpleItemsRadius "15"
seta cg_simpleItemsMask "1"
seta cg_simpleItems "1"
seta cg_showPlayerLean "1"
seta cg_shadows "0"
seta cg_screenshot "0"
seta cg_screenDamage_Team "0x404040ff"
seta cg_screenDamageAlpha_Team "0.000000"
seta cg_screenDamageAlpha "0.000000"
seta cg_screenDamage "0x404040ff"
seta cg_scoreTransparency "1.0"
seta cg_runroll "0.005"
seta cg_runpitch "0.002"
seta cg_rocketStyle "1"
seta cg_railTrailTime "1000"
seta cg_railStyle "2"
seta cg_q3compScoreboard "1"
seta cg_predictItems "1"
seta cg_pmove_fixed "1"
seta cg_plasmaStyle "1"
seta cg_oversampleMouse "0"
seta cg_optimizePrediction "1"
seta cg_oldRocket "1"
seta cg_oldRail "1"
seta cg_oldPlasma "1"
seta cg_oldCTFSounds "1"
seta cg_noVoiceText "0"
seta cg_noVoiceChats "0"
seta cg_noteamchatbeep "0"
seta cg_noTaunt "0"
seta cg_noProjectileTrail "0"
seta cg_NoMOTDDisplayDuringDemo "0"
seta cg_nomipRockets "0"
seta cg_nomip "184"
seta cg_nochatbeep "0"
seta cg_noAmmoChange "1"
seta cg_newweaponbar "1"
seta cg_muzzleFlash "0.000000"
seta cg_muteWeapons "0"
seta cg_MaxlocationWidth "16"
seta cg_marks "0.000000"
seta cg_lowAmmoWeaponBarWarning "2.000000"
seta cg_lowAmmoWarningSound "1.000000"
seta cg_lightningStyle "5"
seta cg_lightningImpact "1"
seta cg_levelTimerDirection "0"
seta cg_lagometer_y "1"
seta cg_lagometer_x "1"
seta cg_lagometer "0"
seta cg_killBeep "0"
seta cg_kickScale "0.000000"
seta cg_itemFx "7"
seta cg_impactSparksVelocity "96"
seta cg_impactSparksSize "8"
seta cg_impactSparksLifetime "500.000000"
seta cg_impactSparks "1.000000"
seta cg_impactMarkTime "10000.000000"
seta cg_hudFiles "ui/nem.cfg"
seta cg_gunY "0"
seta cg_gibs "15"
seta cg_forceTeamWeaponColor "0"
seta cg_forceTeamColor "23"
seta cg_forceModel "0"
seta cg_forceEnemyColor "2"
seta cg_forceColors "1"
seta cg_followviewcam "1"
seta cg_float "0"
seta cg_fallKick "1"
seta cg_execVstr ""
seta cg_enhancedHUD "0"
seta cg_enemyUpperColor "0x1b8000ff"
seta cg_enemySounds ""
seta cg_enemyRailTrailTime "400"
seta cg_enemyModel "keel"
seta cg_enemyLowerColor "0x2b8000ff"
seta cg_enemyHeadColor "0x248000ff"
seta cg_enemyColorsOSPStyle "1"
seta cg_enemyColors "iiii"
seta cg_enableOSPHUD "1"
seta cg_drawTimer "0"
seta cg_drawTeamOverlayOpacity "0.33"
seta cg_drawtargetnames "1"
seta cg_drawPing "0"
seta cg_drawItemPickups "3"
seta cg_drawGun "0"
seta cg_drawFullWeaponBar "0"
seta cg_drawFPS "1"
seta cg_drawDecals "1"
seta cg_drawDamage "1"
seta cg_drawCrosshairTeamHealth "2"
seta cg_drawBBox "0"
seta cg_drawAttacker "1"
seta cg_drawAmmoWarning "2.000000"
seta cg_draw3dIcons "1"
seta cg_draw2D "1"
seta cg_delag "1"
seta cg_deadBodyFilter "0"
seta cg_damageKick "1"
seta cg_damageDraw "1"
seta cg_Customloc "0"
seta cg_crosshairSize "35"
seta cg_CrosshairNamesOSPStyle "0"
seta cg_crosshairHitStyle "0"
seta cg_crosshairHealth "0"
seta cg_crosshairColor "25"
seta cg_crosshairBrightness "1"
seta cg_ColorWeaponName "0"
seta cg_cmdTimeNudge "0"
seta cg_clientLog "0"
seta cg_chatbeep "1"
seta cg_bubbleTrails "0"
seta cg_bubbleTrail "0"
seta cg_bobup "0.005"
seta cg_bobroll "0.002"
seta cg_bobpitch "0.002"
seta cg_bob "0.000000"
seta cg_bloodMarks "0"
seta cg_bloodBody "0"
seta cg_blinkImpact "1"
seta cg_autoAction "1"
seta cg_ammoCheck "0"
seta cg_altTimer "1"
seta cg_altPlasma "0"
seta cg_altLightning "1"
seta cg_altGrenades "1"
seta cg_allowTaunt "0"
seta cg_3WaveFont "0"
seta cf_WeaponSwitch "10x10"
seta cf_WeaponName "10x10"
seta cf_Vote "10x14"
seta cf_Teamoverlay "9x8"
seta cf_TeamCrosshairHealth "12x12"
seta cf_Teamchat "1x1"
seta cf_Statusbar "25x25"
seta cf_Scores "12x12"
seta cf_Pickupstring "10x14"
seta cf_Fragmsg "12x12"
seta cf_Following "15x15"
seta cf_CrosshairNames "8x8"
seta cf_AmmoStatusbar "8x8"
seta c9 "color1 4;color2 4;bind kp_slash vstr c1"
seta c8 "color1 9;color2 9;bind kp_slash vstr c9"
seta c7 "color1 8;color2 8;bind kp_slash vstr c8"
seta c6 "color1 7;color2 7;bind kp_slash vstr c7"
seta c5 "color1 6;color2 6;bind kp_slash vstr c6"
seta c4 "color1 5;color2 5;bind kp_slash vstr c5"
seta c3 "color1 3;color2 3;bind kp_slash vstr c4"
seta c2 "color1 2;color2 2;bind kp_slash vstr c3"
seta c1 "color1 1;color2 1;bind kp_slash vstr c2"
seta bot_rj "1"
seta bot_nbg "400"
seta bot_ext_chooseweapon "0"
seta bot_enemyacc "0.9"
seta bot_delayweapon "1.5"
seta bot_chase "40"
seta amf_debug "0"
seta rate "25000"
seta r_fullbright "0"
seta r_vertexlight "1.000000"
seta r_inBrowserMode "5"
seta r_picmip "6"
seta cg_fov "90"
seta web_configVersion "8"
seta cl_run "1"
seta cg_drawCrosshair "13#"
seta m_pitch "0.03"
seta cl_freelook "1"
seta cg_drawTeamOverlay "1"
seta r_fastsky "0"
seta cg_drawCrosshairNames "1"
seta r_dynamiclight "1"
seta cg_brassTime "0.000000"
seta cg_scorePlums "1"
seta cg_autoswitch "0"
seta color2 "7"
seta color1 "7"
seta cg_forceTeamModel "bitterman"
seta cg_forceEnemyModel "keel/bright"
seta model "bitterman/blue"
seta name "^7blvd"
seta activeAction ""
seta cg_compmode "0"
seta cg_followKiller "1"
seta cg_followPowerup "1"
seta sv_fps "100"
seta cg_compHud "1"
seta cg_enableRespawnTimer "1"
seta cg_lastmsg "<QUAKE LIVE> ^5teh_stryder^7 has gone offline."
seta ui_voteactive "0"
seta cg_specOnly "2"
seta cg_premium "1"
seta cg_gameInfo6 " "
seta cg_gameInfo5 "If the time limit is hit and there is a tie a Sudden Death round begins."
seta cg_gameInfo4 "If time runs out, the team with the highest score wins."
seta cg_gameInfo3 "First team to reach the Frag Limit wins."
seta cg_gameInfo2 "Shoot anyone on the other team!"
seta cg_gameInfo1 "This is a Team Deathmatch game"
seta cg_gametype "3"
seta r_lightmap "0"
seta r_smp "0"
seta net_socksPassword ""
seta net_socksUsername ""
seta net_socksPort "1080"
seta net_socksServer ""
seta net_socksEnabled "0"
seta net_noudp "0"
seta gt_master ""
seta ui_lightingModelPreset ""
seta ui_lowAmmoPreset "Yes (Small)"
seta ui_forceEnemyModel ""
seta ui_forceTeamModel ""
seta ui_bloomPreset "Default"
seta ui_enemyColor "0"
seta ui_teamColor "0"
seta ui_serverStatusTimeOut "7000"
seta g_warmup "10"
seta ui_recordSPDemo "0"
seta ui_q3model "0"
seta ui_findPlayer "Sarge"
seta ui_scoreShutoutBonus "0"
seta ui_scoreSkillBonus "0"
seta ui_scoreTimeBonus "0"
seta ui_scoreTime "00:00"
seta ui_scoreBase "0"
seta ui_scoreTeam "0 to 0"
seta ui_scorePerfect "0"
seta ui_scoreScore "0"
seta ui_scoreGauntlets "0"
seta ui_scoreAssists "0"
seta ui_scoreDefends "0"
seta ui_scoreCaptures "0"
seta ui_scoreExcellents "0"
seta ui_scoreImpressives "0"
seta ui_scoreAccuracy "0%"
seta ui_lastServerRefresh_3 ""
seta ui_lastServerRefresh_2 ""
seta ui_lastServerRefresh_1 ""
seta ui_lastServerRefresh_0 ""
seta ui_currentOpponent "0"
seta ui_mapIndex "10"
seta ui_currentNetMap "12"
seta ui_currentMap "0"
seta ui_currentTier "0"
seta ui_menuFiles "ui/menus.txt"
seta ui_netSource "0"
seta ui_blueteam5 "0"
seta ui_blueteam4 "0"
seta ui_blueteam3 "0"
seta ui_blueteam2 "0"
seta ui_blueteam1 "0"
seta ui_redteam5 "0"
seta ui_redteam4 "0"
seta ui_redteam3 "0"
seta ui_redteam2 "0"
seta ui_redteam1 "0"
seta ui_actualNetGametype "3"
seta ui_netGametype "3"
seta ui_joinGametype "0"
seta ui_gametype "3"
seta ui_dedicated "0"
seta ui_blueteam "Stroggs"
seta ui_redteam "Pagans"
seta ui_opponentName "Stroggs"
seta ui_teamName "Pagans"
seta server16 ""
seta server15 ""
seta server14 ""
seta server13 ""
seta server12 ""
seta server11 ""
seta server10 ""
seta server9 ""
seta server8 ""
seta server7 ""
seta server6 ""
seta server5 ""
seta server4 ""
seta server3 ""
seta server2 ""
seta server1 ""
seta ui_browserShowEmpty "1"
seta ui_browserShowFull "1"
seta ui_browserSortKey "4"
seta ui_browserGameType "0"
seta ui_browserMaster "0"
seta g_spVideos ""
seta g_spAwards ""
seta g_spScores5 ""
seta g_spScores4 ""
seta g_spScores3 ""
seta g_spScores2 ""
seta g_spScores1 ""
seta ui_ctf_friendly "0"
seta ui_ctf_timelimit "30"
seta ui_ctf_capturelimit "8"
seta ui_team_friendly "1"
seta ui_team_timelimit "20"
seta ui_team_fraglimit "0"
seta ui_tourney_timelimit "15"
seta ui_tourney_fraglimit "0"
seta ui_ffa_timelimit "0"
seta ui_ffa_fraglimit "20"
seta com_soundMegs "16"
seta s_mixPreStep "0.05"
seta s_mixahead "0.140"
seta r_lastValidRenderer "GeForce 9800 GT/PCI/SSE2"
seta r_contrast "1.0"
seta r_floatingPointFBOs "0"
seta r_aspectRatio "0"
seta r_noFastRestart "0"
seta r_primitives "0"
seta r_facePlaneCull "1"
seta r_swapInterval "0"
seta r_finish "0"
seta r_drawSun "0"
seta r_drawskyfloor "1"
seta r_ignoreGLErrors "1"
seta r_flares "0"
seta r_intensity "1"
seta r_ignoreFastPath "1"
seta r_simpleMipMaps "1"
seta r_customheight "1024"
seta r_customwidth "1600"
seta r_ignorehwgamma "0"
seta r_overBrightBits "0.99"
seta r_depthbits "0"
seta r_stencilbits "0"
seta r_stereo "0"
seta r_colorbits "32"
seta r_detailtextures "1"
seta r_roundImagesDown "1"
seta r_ext_texture_env_add "1"
seta r_ext_compiled_vertex_array "1"
seta r_ext_multitexture "1"
seta r_ext_gamma_control "1"
seta r_allowExtensions "1"
seta r_glDriver "opengl32"
seta cg_viewsize "100"
seta cl_viewAccel "1.7"
seta cl_anonymous "0"
seta cl_maxPing "800"
seta r_inGameVideo "1"
seta cl_mouseSensCap "0"
seta cl_packetdup "1"
seta sv_wwwFallbackURL ""
seta sv_wwwDlDisconnected "0"
seta sv_wwwBaseURL ""
seta sv_wwwDownload "0"
seta sv_lanForceRate "1"
seta sv_floodProtect "1"
seta sv_maxPing "0"
seta sv_minPing "0"
seta sv_maxRate "0"
seta sv_hostname "noname"
seta in_joyVertMoveDeadzone "0.15"
seta in_joyHorizMoveDeadzone "0.50"
seta in_joyVertViewDeadzone "0.15"
seta in_joyHorizViewDeadzone "0.15"
seta in_joyVertViewSensitivity "15.0"
seta in_joyHorizViewSensitivity "20.0"
seta joy_threshold "0.15"
seta in_joystick_inverted "0"
seta in_joystick "0"
seta in_mouse "2"
seta in_mididevice "0"
seta in_midichannel "1"
seta in_midiport "1"
seta in_midi "0"
seta com_introplayed "0"
seta com_blood "1"
seta com_configVersion "16"
seta sv_killserver "0"
seta cg_ignoreMouseInput "0"
seta sv_referencedPakNames "baseq3/pak50 baseq3/pak22 baseq3/pak21 baseq3/pak20 baseq3/pak19 baseq3/pak18 baseq3/pak17 baseq3/pak16 baseq3/pak15 baseq3/pak14 baseq3/pak13 baseq3/pak12 baseq3/pak11 baseq3/pak10 baseq3/pak06 baseq3/pak05 baseq3/pak04 baseq3/pak03 baseq3/pak02 baseq3/pak01 baseq3/pak00 baseq3/bin baseq3/almostlost "
seta sv_referencedPaks "157421765 -1196123317 -1137473305 -806822167 1021046915 -2074384363 -89265510 -1006801183 -1322173994 1064500263 -507711290 -353764469 1159172379 -1433290572 -512489275 434256533 -1301986720 1649036883 -654205621 -1818367552 806566999 147176714 2081552980 "
seta sv_pakNames "windowpain wargrounds vortexportal verticalvengeance troubledwaters trinity toxicity tornado thunderstruck threestory theatreofpain terminalheights stronghold stonekeep spillway spacectf spacechamber sorrow somewhatdamaged solid skyward siberia shiningforces scornforge sacellum revolver retribution rebound realmofsteelrats quarantine purgatory provinggrounds powerstation phrantic pak50 pak22 pak21 pak20 pak19 pak18 pak17 pak16 pak15 pak14 pak13 pak12 pak11 pak10 pak06 pak05 pak04 pak03 pak02 pak01 pak00 overlord overkill namelessplace lostworld longestyard leviathan japanesecastles ironworks intervention innersanctums industrialaccident houseofdecay hiddenfortress heroskeep hellsgateredux hellsgate hektik hearth grimdungeons gothicrage furiousheights forgotten focalpoint finnegans fatalinstinct falloutbunker evolution eviscerated duelingkeeps dredwerkz dreadfulplace doubleimpact distantscreams dismemberment diesirae devilish demonkeep deepinside courtyard concretepalace coldwar cobaltstation chemicalreaction cannedheat campgrounds brimstoneabbey bloodrun bloodlust blackcathedral bin beyondreality battleforged basesiege asylum arenagate almostlost aerowalk"
seta sv_paks "-1733916271 1408855694 2011649336 813379359 -848278981 201966803 -1452355969 1570323925 -1635034174 -893296915 52601972 360478406 -222096041 751100820 319315848 -415972664 1771604483 -1879261458 1529471103 207162257 -1316429886 -1572884313 -593284930 1254585560 -1561717417 -1389905404 -1334476026 -1667264713 1193530012 438813781 -1888822365 482523077 636258880 -606788490 157421765 -1196123317 -1137473305 -806822167 1021046915 -2074384363 -89265510 -1006801183 -1322173994 1064500263 -507711290 -353764469 1159172379 -1433290572 -512489275 434256533 -1301986720 1649036883 -654205621 -1818367552 806566999 1347520189 -2118072543 -250358636 -179267263 -930576260 1471533445 77855756 335038156 266033143 710387612 -1716352177 -1057040959 -666055595 -370091068 316210893 -185919474 -988605464 628412348 487745488 1221827998 -1472543943 -1690626719 -2030979285 -358419282 1857693359 1715801672 -221948664 414871187 212170294 1834941766 483675323 1887566054 825457949 8883630 -1583927614 -481128386 -303798673 512930643 1018685446 -337080719 96068805 -449025 686619880 1010271708 -216451442 1643460201 1071084918 -1979890624 493006178 147176714 245630404 1720576583 -840100620 -1888410565 -1497166283 2081552980 1586823135 "
seta sv_serverid "55458980"
seta r_railSegmentLength "1"
seta r_railWidth "0"
seta r_railCoreWidth "0"
seta cg_selectedPlayer "1"
seta in_mouseMode "win32(Raw)"
seta cl_running "1"
seta sv_running "0"
seta sv_paused "0"
seta cl_paused "0"
seta password "9"
seta ui_singlePlayerActive "0"
seta cg_selectedPlayerName "eekie"
seta sv_allowDownload "1"
seta cl_motd "0"
seta ui_enemyLowerColor "26.781248"