forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chivalry-medieval-warfareudkgame.ini
1287 lines (1121 loc) · 38.8 KB
/
chivalry-medieval-warfareudkgame.ini
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
[Engine.GameInfo]
DefaultGame=AOC.AOCGame
DefaultServerGame=AOC.AOCGame
bAdminCanPause=false
MaxPlayers=32
GameDifficulty=1.000000
bChangeLevels=True
MaxSpectators=0
MaxIdleTime=0.000000
MaxTimeMargin=0.000000
TimeMarginSlack=1.350000
MinTimeMargin=-1.000000
TotalNetBandwidth=32000
MaxDynamicBandwidth=7000
MinDynamicBandwidth=4000
PlayerControllerClassName=AOC.AOCPlayerController
DefaultGameType=AOC.AOCGame
DefaultMapPrefixes=(Prefix="AOCFFA",bUsesCommonPackage=False,GameType="AOC.AOCFFA")
DefaultMapPrefixes=(Prefix="AOCTUT",bUsesCommonPackage=False,GameType="AOC.AOCTUT")
DefaultMapPrefixes=(Prefix="AOCDUEL",bUsesCommonPackage=False,GameType="AOC.AOCDUEL")
DefaultMapPrefixes=(Prefix="AOCLTS",bUsesCommonPackage=False,GameType="AOC.AOCLTS")
DefaultMapPrefixes=(Prefix="AOC",bUsesCommonPackage=FALSE,GameType="AOC.AOCEntry")
DefaultMapPrefixes=(Prefix="AOCKOTH",bUsesCommonPackage=FALSE,GameType="AOC.AOCKOTH")
DefaultMapPrefixes=(Prefix="AOCTO",bUsesCommonPackage=FALSE,GameType="AOC.AOCTeamObjective")
DefaultMapPrefixes=(Prefix="AOCSURV",bUsesCommonPackage=FALSE,GameType="AOC.AOCSurvival")
DefaultMapPrefixes=(Prefix="AOCCTL",bUsesCommonPackage=FALSE,GameType="AOC.AOCCTL")
DefaultMapPrefixes=(Prefix="AOCMOV",bUsesCommonPackage=FALSE,GameType="AOC.AOCTrailerGame")
DefaultMapPrefixes=(Prefix="AOCTD",bUsesCommonPackage=FALSE,GameType="AOC.AOCTD")
DefaultMapPrefixes=(Prefix="AOCCTF",bUsesCommonPackage=FALSE,GameType="AOC.AOCCTF")
DefaultMapPrefixes=(Prefix="DUEL",bUsesCommonPackage=FALSE,GameType="AOC.CDWDUEL")
bIsStandbyCheckingEnabled=false
bKickLiveIdlers=False
ArbitrationHandshakeTimeout=0.000000
GoreLevel=0
[Engine.AccessControl]
IPPolicies=ACCEPT;*
bAuthenticateClients=True
bAuthenticateServer=True
bAuthenticateListenHost=True
MaxAuthRetryCount=8
AuthRetryDelay=8
GamePassword=
AdminPassword=
[DefaultPlayer]
Name=Player
Team=255
[Engine.HUD]
bMessageBeep=true
HudCanvasScale=0.95
ConsoleMessageCount=4
ConsoleFontSize=5
MessageFontOffset=0
bShowHUD=true
bShowDirectorInfoDebug=false
bShowDirectorInfoHUD=false
DebugDisplay=AI
[Engine.PlayerController]
bAimingHelp=false
InteractDistance=512
bCheckRelevancyThroughPortals=false
MaxConcurrentHearSounds=32
bLogHearSoundOverflow=FALSE
bShowKismetDrawText=True
fMaxComplexRelevancyDistanceSquared=9000000
[Engine.Weapon]
Priority=-1.0
[Engine.WorldInfo]
DefaultGravityZ=-520.0
RBPhysicsGravityScaling=2.0
MaxPhysicsSubsteps=5
SquintModeKernelSize=128.0
EmitterPoolClassPath=UDKBase.UDKEmitterPool
DecalManagerClassPath=UTGame.UTDecalManager
FractureManagerClassPath=Engine.FractureManager
FracturedMeshWeaponDamage=5.0
ChanceOfPhysicsChunkOverride=1.0
bEnableChanceOfPhysicsChunkOverride=FALSE
FractureExplosionVelScale=1.0
DefaultAmbientZoneSettings=(bIsWorldInfo=true)
bPersistPostProcessToNextLevel=TRUE
bAllowHostMigration=FALSE
HostMigrationTimeout=15
bAllowTemporalAA=True
bNoMobileMapWarnings=False
DefaultPostProcessSettings=(Bloom_Scale=0.2,DOF_BlurKernelSize=12.0,DOF_MaxNearBlurAmount=0.0,DOF_MaxNearBlurAmount=0.0,DOF_FocusInnerRadius=2000.0,DOF_FocusDistance=0.0,)
[Engine.AutoTestManager]
NumMinutesPerMap=50
#CommandsToRunAtEachTravelTheWorldNode=MemLeakCheck
#CommandsToRunAtEachTravelTheWorldNode=SNAPSHOTMEMORY
NumAutomatedMapTestingCycles=0
AutomatedMapTestingList=CTF-Hydrosis
AutomatedMapTestingList=DM-Defiance
AutomatedMapTestingList=VCTF-Kargo
AutomatedMapTestingList=WAR-Avalanche
AutomatedMapTestingList=WAR-Torlan
[Engine.DecalManager]
DecalLifeSpan=30.0
[Engine.UIDataStore_GameResource]
ElementProviderTypes=(ProviderTag="GameTypes",ProviderClassName="Engine.UIGameInfoSummary")
[GameFramework.GameCheatManager]
DebugCameraControllerClassName=GameFramework.DebugCameraController
[GameFramework.MobileHud]
bShowMobileHud=true
bShowGameHud=true
bForceMobileHUD=false
[GameFramework.MobileInputZone]
RenderColor=(R=255,G=255,B=255,A=255)
InactiveAlpha=0.5
SizeX=100
SizeY=100
VertMultiplier=1.0
HorizMultiplier=1.0
bUseGentleTransitions=true
ResetCenterAfterInactivityTime=3.0
ActivateTime=0.6
DeactivateTime=0.2
TapDistanceConstraint=5
bApplyGlobalScaleToActiveSizes=true
AuthoredGlobalScale=2.0
[GameFramework.FrameworkGame]
RequiredMobileInputConfigs=(GroupName="DebugGroup",RequireZoneNames=("DebugStickMoveZone","DebugStickLookZone","DebugLookZone"))
[DebugLookZone MobileInputZone]
InputKey=MouseY
HorizontalInputKey=MouseX
TapInputKey=MOBILE_Fire
Type=ZoneType_Trackball
bRelativeSizeX=true
bRelativeSizeY=true
X=0
Y=0
SizeX=1.0
SizeY=1.0
VertMultiplier=-0.0007
HorizMultiplier=0.001
Acceleration=12.0
Smoothing=1.0
EscapeVelocityStrength=0.85
bIsInvisible=1
TapDistanceConstraint=32
[DebugStickMoveZone MobileInputZone]
InputKey=MOBILE_AForward
HorizontalInputKey=MOBILE_AStrafe
Type=ZoneType_Joystick
bRelativeX=true
bRelativeY=true
bRelativeSizeX=true
bRelativeSizeY=true
X=0.05
Y=-0.4
SizeX=0.1965
SizeY=1.0
bSizeYFromSizeX=true
VertMultiplier=-1.0
HorizMultiplier=1.0
bScalePawnMovement=true
RenderColor=(R=255,G=255,B=255,A=255)
InactiveAlpha=0.25
bUseGentleTransitions=true
ResetCenterAfterInactivityTime=3.0
ActivateTime=0.6
DeactivateTime=0.2
TapDistanceConstraint=5
[DebugStickLookZone MobileInputZone]
InputKey=MOBILE_ALookUp
HorizontalInputKey=MOBILE_ATurn
Type=ZoneType_Joystick
bRelativeX=true
bRelativeY=true
bRelativeSizeX=true
bRelativeSizeY=true
VertMultiplier=-0.5
HorizMultiplier=0.35
X=-0.2465
Y=-0.4
SizeX=0.1965
SizeY=1.0
bSizeYFromSizeX=true
RenderColor=(R=255,G=255,B=255,A=255)
InactiveAlpha=0.25
bUseGentleTransitions=true
ResetCenterAfterInactivityTime=3.0
ActivateTime=0.6
DeactivateTime=0.2
TapDistanceConstraint=5
[Configuration]
[Engine.GameReplicationInfo]
ServerName=AMP Powered Chivalry: Medieval Warfare Server
MessageOfTheDay=Welcome to my server!
[Engine.EmitterPool]
bLogPoolOverflow=true
[UTGame.UTGib]
bUseUnrealPhysics=true
[UDKBase.UDKUIDataStore_StringAliasBindingMap]
FakePlatform=1
MenuInputMapArray=(FieldName="None",MappedText="")
MenuInputMapArray=(FieldName="GBA_MoveForward")
MenuInputMapArray=(FieldName="GBA_Backward")
MenuInputMapArray=(FieldName="GBA_StrafeLeft")
MenuInputMapArray=(FieldName="GBA_StrafeRight")
MenuInputMapArray=(FieldName="GBA_TurnLeft")
MenuInputMapArray=(FieldName="GBA_TurnRight")
MenuInputMapArray=(FieldName="GBA_Jump")
MenuInputMapArray=(FieldName="GBA_Duck")
MenuInputMapArray=(FieldName="GBA_Fire")
MenuInputMapArray=(FieldName="GBA_AltFire")
MenuInputMapArray=(FieldName="GBA_Use")
MenuInputMapArray=(FieldName="GBA_FeignDeath")
MenuInputMapArray=(FieldName="GBA_SwitchToBestWeapon")
MenuInputMapArray=(FieldName="GBA_PrevWeapon")
MenuInputMapArray=(FieldName="GBA_NextWeapon")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon1")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon2")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon3")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon4")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon5")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon6")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon7")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon8")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon9")
MenuInputMapArray=(FieldName="GBA_SwitchWeapon10")
MenuInputMapArray=(FieldName="GBA_ToggleTranslocator")
MenuInputMapArray=(FieldName="GBA_ToggleSpeaking")
MenuInputMapArray=(FieldName="GBA_Talk")
MenuInputMapArray=(FieldName="GBA_TeamTalk")
MenuInputMapArray=(FieldName="GBA_Taunt1")
MenuInputMapArray=(FieldName="GBA_Taunt2")
MenuInputMapArray=(FieldName="GBA_Horn")
MenuInputMapArray=(FieldName="GBA_ShowMenu")
MenuInputMapArray=(FieldName="GBA_ShowCommandMenu")
MenuInputMapArray=(FieldName="GBA_ShowScores")
MenuInputMapArray=(FieldName="GBA_ShowMap")
MenuInputMapArray=(FieldName="GBA_ToggleMinimap")
MenuInputMapArray=(FieldName="GBA_GrowHud")
MenuInputMapArray=(FieldName="GBA_ShrinkHud")
MenuInputMapArray=(FieldName="GBA_ToggleMelee")
MenuInputMapArray=(FieldName="GBA_WeaponPicker")
MenuInputMapArray=(FieldName="GBA_Jump_Gamepad")
MenuInputMapArray=(FieldName="GBA_MoveForward_Gamepad")
MenuInputMapArray=(FieldName="GBA_TurnLeft_Gamepad")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_A",XBoxMapping="Xenon_A",PS3Mapping="PS3_X")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_B",XBoxMapping="Xenon_B",PS3Mapping="PS3_Circle")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_X",XBoxMapping="Xenon_X",PS3Mapping="PS3_Square")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_Y",XBoxMapping="Xenon_Y",PS3Mapping="PS3_Triangle")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_Start",XBoxMapping="Xenon_Start",PS3Mapping="PS3_Start")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_Back",XBoxMapping="Xenon_Back",PS3Mapping="PS3_Select")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_LeftShoulder",XBoxMapping="Xenon_LeftBumper",PS3Mapping="PS3_L1")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_RightShoulder",XBoxMapping="Xenon_RightBumper",PS3Mapping="PS3_R1")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_LeftTrigger",XBoxMapping="Xenon_LeftTrigger",PS3Mapping="PS3_L2")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_RightTrigger",XBoxMapping="Xenon_RightTrigger",PS3Mapping="PS3_R2")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_DPad_Up",XBoxMapping="Xenon_DPadUp",PS3Mapping="PS3_DPadUp")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_DPad_Down",XBoxMapping="Xenon_DPadDown",PS3Mapping="PS3_DPadDown")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_DPad_Left",XBoxMapping="Xenon_DPadLeft",PS3Mapping="PS3_DPadLeft")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_DPad_Right",XBoxMapping="Xenon_DPadRight",PS3Mapping="PS3_DPadRight")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_LeftThumbstick",XBoxMapping="Xenon_LeftStickButton",PS3Mapping="PS3_LeftStickButton")
ControllerMapArray=(KeyName="GMS_XBoxTypeS_RightThumbstick",XBoxMapping="Xenon_RightStickButton",PS3Mapping="PS3_RightStickButton")
ControllerMapArray=(KeyName="GMS_XboxTypeS_LeftX",XBoxMapping="Xenon_LeftStick",PS3Mapping="PS3_LeftStick")
ControllerMapArray=(KeyName="GMS_XboxTypeS_LeftY",XBoxMapping="Xenon_LeftStick",PS3Mapping="PS3_LeftStick")
ControllerMapArray=(KeyName="GMS_XboxTypeS_RightX",XBoxMapping="Xenon_RightStick",PS3Mapping="PS3_RightStick")
ControllerMapArray=(KeyName="GMS_XboxTypeS_RightY",XBoxMapping="Xenon_RightStick",PS3Mapping="PS3_RightStick")
[GameFramework.MobilePlayerInput]
MobileDoubleTapTime=0.33
MobileTapRepeatTime=0.1
MobileMinHoldForTap=0.5
ZoneTimeout=2.0
bFakeMobileTouches=False
[UDKBase.SimpleGame]
RequiredMobileInputConfigs=(GroupName="UberGroup",RequireZoneNames=("UberStickMoveZone","UberStickLookZone","UberLookZone"))
RequiredMobileInputConfigs=(GroupName="InitialFlybyGroup")
[UDKBase.CastleGame]
RequiredMobileInputConfigs=(GroupName="UberGroup",RequireZoneNames=("MenuSlider","UberStickMoveZone","UberStickLookZone","UberLookZone"))
RequiredMobileInputConfigs=(bIsAttractModeGroup=true,GroupName="AttractGroup",RequireZoneNames=("MenuSlider","ExitAttractModeZone"))
RequiredMobileInputConfigs=(GroupName="InitialFlybyGroup")
RequiredMobileInputConfigs=(GroupName="TapTutorialGroup",RequireZoneNames=("MenuSlider","TapTutorialZone"))
RequiredMobileInputConfigs=(GroupName="SwipeTutorialGroup",RequireZoneNames=("MenuSlider","SwipeTutorialZone"))
bAllowAttractMode=true
[UDKBase.SimplePawn]
CastlePawnSpeed=440
CastlePawnAccel=2048
[UDKBase.SimplePC]
ServerCommandline=EpicCitadel?listen
RotationSmoothingFactor=5.0
bSmoothRotation=false
bSuppressSplash=false
DefaultInputGroup=1
[MenuSlider MobileInputZone]
Type=ZoneType_Slider
X=0.5
bRelativeX=true
bCenterX=true
Y=0
bRelativeSizeX=true
bRelativeSizeY=true
SizeX=0.165625
SizeY=1.0
ActiveSizeX=0.165625
ActiveSizeY=0.4
bActiveSizeYFromX=true
SlideType=ZoneSlide_UpDown
RenderColor=(R=255,G=255,B=255,A=255)
InactiveAlpha=1.0
bUseGentleTransitions=true
ActivateTime=0.0
DeactivateTime=0.33
TapDistanceConstraint=32
[ExitAttractModeZone MobileInputZone]
Type=ZoneType_Button
bRelativeX=true
bRelativeY=true
X=0
Y=0
bRelativeSizeX=true
bRelativeSizeY=true
SizeX=1.0
SizeY=1.0
bIsInvisible=true
TapDistanceConstraint=32
[DebugZone MobileInputZone]
InputKey=MOBILE_ShowDebugMenu
Type=ZoneType_Button
bRelativeX=true
bRelativeY=true
X=-0.062
Y=-0.5
bRelativeSizeX=true
bRelativeSizeY=true
SizeX=0.0625
SizeY=0.0938
Caption=*
RenderColor=(R=0,G=128,B=255,A=255)
InactiveAlpha=0.8
[UberLookZone UDKMobileInputZone]
InputKey=MouseY
HorizontalInputKey=MouseX
TapInputKey=MOBILE_Fire
Type=ZoneType_Trackball
bRelativeSizeX=true
bRelativeSizeY=true
X=0
Y=0
SizeX=1.0
SizeY=1.0
VertMultiplier=-0.0007
HorizMultiplier=0.001
Acceleration=12.0
Smoothing=1.0
EscapeVelocityStrength=0.85
bIsInvisible=1
TapDistanceConstraint=32
[TapTutorialZone MobileInputZone]
InputKey=
HorizontalInputKey=
Type=ZoneType_Trackball
bRelativeSizeX=true
bRelativeSizeY=true
X=0
Y=0
SizeX=1.0
SizeY=1.0
bIsInvisible=1
TapDistanceConstraint=32
[SwipeTutorialZone MobileInputZone]
InputKey=MouseY
HorizontalInputKey=MouseX
Type=ZoneType_Trackball
bRelativeSizeX=true
bRelativeSizeY=true
X=0
Y=0
SizeX=1.0
SizeY=1.0
VertMultiplier=-0.0007
HorizMultiplier=0.001
Acceleration=12.0
Smoothing=1.0
EscapeVelocityStrength=0.85
bIsInvisible=1
TapDistanceConstraint=32
[UberStickMoveZone MobileInputZone]
InputKey=MOBILE_AForward
HorizontalInputKey=MOBILE_AStrafe
Type=ZoneType_Joystick
bRelativeX=true
bRelativeY=true
bRelativeSizeX=true
bRelativeSizeY=true
X=0.05
Y=-0.4
SizeX=0.1965
SizeY=1.0
bSizeYFromSizeX=true
VertMultiplier=-1.0
HorizMultiplier=1.0
bScalePawnMovement=true
RenderColor=(R=255,G=255,B=255,A=255)
InactiveAlpha=0.25
bUseGentleTransitions=true
ResetCenterAfterInactivityTime=3.0
ActivateTime=0.6
DeactivateTime=0.2
TapDistanceConstraint=5
[UberStickLookZone MobileInputZone]
InputKey=MOBILE_ALookUp
HorizontalInputKey=MOBILE_ATurn
Type=ZoneType_Joystick
bRelativeX=true
bRelativeY=true
bRelativeSizeX=true
bRelativeSizeY=true
VertMultiplier=-0.5
HorizMultiplier=0.35
X=-0.2465
Y=-0.4
SizeX=0.1965
SizeY=1.0
bSizeYFromSizeX=true
RenderColor=(R=255,G=255,B=255,A=255)
InactiveAlpha=0.25
bUseGentleTransitions=true
ResetCenterAfterInactivityTime=3.0
ActivateTime=0.6
DeactivateTime=0.2
TapDistanceConstraint=5
[AOC.AOCGame]
bLogGameplayEvents=false
GameplayEventsWriterClassName=Engine.GameplayEventsWriter
GameplayEventsHeartbeat=1.000000
bForceRespawn=True
bAllowNonTeamChat=True
Maplist=AOCTO-Hillside_P
Maplist=AOCTO-Battlegrounds_v3_P
Maplist=AOCLTS-Arena3_p
Maplist=AOCTO-Darkforest_p
Maplist=AOCTO-Stoneshill_P
Maplist=AOCLTS-Moor_p
Maplist=AOCFFA-ThroneRoomXL_P
Maplist=AOCKOTH-Arena3_p
Maplist=AOCTD-StoneshillVillage_P
Maplist=AOCFFA-Moor_p
Maplist=AOCLTS-ThroneRoom_P
Maplist=AOCTD-Ruins_P
Maplist=AOCLTS-StoneshillVillage_P
Maplist=AOCKOTH-Moor_p
Maplist=AOCFFA-StoneshillVillage_P
Maplist=AOCLTS-Ruins_P
Maplist=AOCFFA-Ruins_P
Maplist=AOCKOTH-Hillside_P
Maplist=AOCTD-ThroneRoom_P
Maplist=AOCFFA-Arena3_p
PerspectiveLock=PLOCK_None
fServerTeamDamagePercent=0.500000
fTimeDilation=1.000000
bEnableVoteKick=true
bEnableVoteChangeMap=true
bEnableVoteResetMap=true
bOnlyAdminsCanInitiateVotes=false
bOnlyAdminsCanVote=false
bOnlyTeammatesCanVoteKick=false
bOnlyTeammatesAbstainsCountAgainstMinimum=false
fVoteMinAmountNonAbstainers=0.400000
fVoteSuccessThreshold=0.550000
fVoteDurationSeconds=30.000000
fVoteTallyUpdates=2.000000
fVoteEnactDelaySeconds=10.000000
fVoteTimeBetweenVoteKicksAgainstSamePlayer=60.000000
fVoteTimeBetweenVotesFromOnePlayer=60.000000
fVoteKickBanDurationSeconds=300.000000
bForceTeamVOIP=false
bRankedServer=true
bAutoBalance=false
fAutoBalanceInterval=30.000000
bAlwaysShowTeamMarkers=false
bAllowFriendNotification=False
bAllowFriendMarkers=False
bDeathBasedAutoBalance=False
bUseMaxPingLimit=False
bAnyUserCanGetSteamID=False
bOverrideRoundTime=False
bDisallowFists=False
bDisallowFreelookSpectator=False
bUseArcherLimit=False
bUseVanguardLimit=False
bUseKnightLimit=False
bUseMaaLimit=False
bUseRankLimits=False
bDoSpeedHackDetection=False
bUseCustomSpeedhackCountThreshold=False
MapListIndex=0
fMaxPing=0.000000
iPingThresholdHitBeforeKick=0
iSecondsToKickForPingLimit=0
RoundTimeOverride=0
iArcherLimit=0
iVanguardLimit=0
iKnightLimit=0
iMaaLimit=0
iMinRank=0
iMaxRank=0
iSpeedhackCountThreshold=0
;If true: don't add SDK maps to the maplist automatically
bDontAddSdkMapsToList=false
;MOTD URL to navigate the MOTD box to (optional; if not present, MOTD screen just won't show)
MessageOfTheDayDisplayURL=
;URL to link to with the link button (optional; if not present, link button won't show under MOTD box. Requires MessageOfTheDayDisplayURL be set.)
MessageOfTheDayLinkURL=
[AOC.AOCLTS]
bCustomEnemyMarkerSettings=True
fShowEnemyMarkersTimeLeftSeconds=60.0
fShowEnemyMarkersPortionPlayersAlive=0.1
[UTGame.UTPawn]
Bob=0.010
bWeaponBob=true
[UTGame.UTPlayerController]
bAutoTaunt=false
bLandingShake=true
PawnShadowMode=SHADOW_All
AutoObjectivePreference=AOP_NoPreference
bUseVehicleRotationOnPossess=true
bFirstPersonWeaponsSelfShadow=true
[UTGame.UTConsolePlayerController]
bTargetAdhesionEnabled=TRUE
bDebugTargetAdhesion=FALSE
[UTGame.DemoRecSpectator]
bLockRotationToViewTarget=false
bAutoSwitchPlayers=false
AutoSwitchPlayerInterval=0
[UTGame.UTDeathMessage]
bNoConsoleDeathMessages=false
[UTGame.UTTeamDeathMessage]
bNoConsoleDeathMessages=true
[UTGame.UTAnnouncer]
AnnouncerLevel=2
[UTGame.UTMusicManager]
MusicVolume=0.36
StingerVolumeMultiplier=1.1
[UTGame.UTGame]
BotRatio=1.000000
GoalScore=25
bTournament=false
bPlayersMustBeReady=false
NetWait=15
ClientProcessingTimeout=30
RestartWait=30
MinNetPlayers=1
bWaitForNetPlayers=true
LateEntryLives=1
TimeLimit=20
GameDifficulty=+5.0
EndTimeDelay=4.000000
GameSpecificMapCycles=(GameClassName="UTVehicleCTFGame_Content",Maps=("VCTF-Necropolis","VCTF-SandStorm"))
bLogGameplayEvents=false
bForceRespawn=False
ServerSkillLevel=0
MapCycleIndex=-1
[UTGame.UTTeamGame]
GoalScore=60
bPlayersBalanceTeams=true
bWeaponStay=true
MaxLives=0
[UTGame.UTCTFGame]
GoalScore=3
bWeaponStay=true
[UTGame.UTHUDBase]
ConsoleIconFontClassName=UI_Fonts.Fonts.UI_Fonts_Xbox18
[UTGame.UTHUD]
ConsoleMessageCount=16
SafeRegionPct=1.0
bShowMap=true
MapDefaultSize=220
bShowClock=false
bShowDoll=true
bShowAmmo=true
bShowPowerups=true
PowerupDims=(X=48,Y=52);
bShowScoring=true
bShowLeaderboard=true
bShowVehicle=true
bShowDamage=true
DamageIndicatorSize=384
bShowMobileHud=true
bShowVehicleArmorCount=True
[UTGame.UTInventoryManager]
bAutoSwitchWeaponOnPickup=true
[UTGame.UTMutator_Arena]
ArenaWeaponClassPath=UTGame.UTWeap_ShockRifle
[UTGame.UTUIScene_COptions]
FirstCinematicMapName=UTCin-Intro
[UTGame.UTUIFrontEnd_LoginScreen]
bSavePassword=True
[UTGame.UTUIDataStore_StringList]
StringData=(Tag="ServerType",DefaultValueIndex=1)
StringData=(Tag="ServerType360",DefaultValueIndex=1)
StringData=(Tag="MatchType",DefaultValueIndex=1)
StringData=(Tag="MatchType360",DefaultValueIndex=1)
StringData=(Tag="BotTeams",DefaultValueIndex=0)
StringData=(Tag="RecordDemo",DefaultValueIndex=0)
StringData=(Tag="PlayerName",DefaultValueIndex=0)
[UTGame.UTUIDataStore_MenuItems]
ElementProviderTypes=(ProviderTag="MultiplayerMenu",ProviderClassName="UTGame.UTUIDataProvider_MultiplayerMenuItem")
ElementProviderTypes=(ProviderTag="GameModes",ProviderClassName="UTGame.UTUIDataProvider_GameModeInfo")
ElementProviderTypes=(ProviderTag="Maps",ProviderClassName="UTGame.UTUIDataProvider_MapInfo")
ElementProviderTypes=(ProviderTag="Mutators",ProviderClassName="UTGame.UTUIDataProvider_Mutator")
ElementProviderTypes=(ProviderTag="Weapons",ProviderClassName="UTGame.UTUIDataProvider_Weapon")
ElementProviderTypes=(ProviderTag="DropDownWeapons",ProviderClassName="UTGame.UTUIDataProvider_Weapon")
[UTWeap_RocketLauncher UTUIDataProvider_Weapon]
ClassName=UTGameContent.UTWeap_RocketLauncher_Content
AmmoClassPath=UTGame.UTAmmo_RocketLauncher
[UTWeap_LinkGun UTUIDataProvider_Weapon]
ClassName=UTGame.UTWeap_LinkGun
AmmoClassPath=UTGame.UTAmmo_LinkGun
[UTWeap_ShockRifle UTUIDataProvider_Weapon]
ClassName=UTGameContent.UTWeap_ShockRifle
AmmoClassPath=UTGame.UTAmmo_ShockRifle
[MoveForward UTUIDataProvider_KeyBinding]
Command=GBA_MoveForward
bIsCrucialBind=true
[MoveBackward UTUIDataProvider_KeyBinding]
Command=GBA_Backward
bIsCrucialBind=true
[StrafeLeft UTUIDataProvider_KeyBinding]
Command=GBA_StrafeLeft
bIsCrucialBind=true
[StrafeRight UTUIDataProvider_KeyBinding]
Command=GBA_StrafeRight
bIsCrucialBind=true
[TurnLeft UTUIDataProvider_KeyBinding]
Command=GBA_TurnLeft
[TurnRight UTUIDataProvider_KeyBinding]
Command=GBA_TurnRight
[Jump UTUIDataProvider_KeyBinding]
Command=GBA_Jump
bIsCrucialBind=true
[Duck UTUIDataProvider_KeyBinding]
Command=GBA_Duck
bRemoveOnPS3=1
bRemoveOn360=1
bIsCrucialBind=true
[Fire UTUIDataProvider_KeyBinding]
Command=GBA_Fire
bIsCrucialBind=true
[AltFire UTUIDataProvider_KeyBinding]
Command=GBA_AltFire
bIsCrucialBind=true
[Use UTUIDataProvider_KeyBinding]
Command=GBA_Use
bIsCrucialBind=true
[FeignDeath UTUIDataProvider_KeyBinding]
Command=GBA_FeignDeath
[SwitchToBestWeapon UTUIDataProvider_KeyBinding]
Command=GBA_SwitchToBestWeapon
[PreviousWeapon UTUIDataProvider_KeyBinding]
Command=GBA_PrevWeapon
[NextWeapon UTUIDataProvider_KeyBinding]
Command=GBA_NextWeapon
[SwitchWeapon1 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon1
[SwitchWeapon2 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon2
[SwitchWeapon3 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon3
[SwitchWeapon4 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon4
[SwitchWeapon5 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon5
[SwitchWeapon6 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon6
[SwitchWeapon7 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon7
[SwitchWeapon8 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon8
[SwitchWeapon9 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon9
[SwitchWeapon10 UTUIDataProvider_KeyBinding]
Command=GBA_SwitchWeapon10
[ToggleTranslocator UTUIDataProvider_KeyBinding]
Command=GBA_ToggleTranslocator
bIsCrucialBind=true
[TransmitVoice UTUIDataProvider_KeyBinding]
Command=GBA_ToggleSpeaking
[Talk UTUIDataProvider_KeyBinding]
Command=GBA_Talk
bRemoveOnPS3=True
bRemoveOn360=1
[TeamTalk UTUIDataProvider_KeyBinding]
Command=GBA_TeamTalk
bRemoveOnPS3=True
bRemoveOn360=1
[Taunt1 UTUIDataProvider_KeyBinding]
Command=GBA_Taunt1
[Taunt2 UTUIDataProvider_KeyBinding]
Command=GBA_Taunt2
[Horn UTUIDataProvider_KeyBinding]
Command=GBA_Horn
[ShowMenu UTUIDataProvider_KeyBinding]
Command=GBA_ShowMenu
bIsCrucialBind=true
[ShowCommandMenu UTUIDataProvider_KeyBinding]
Command=GBA_ShowCommandMenu
[ShowScores UTUIDataProvider_KeyBinding]
Command=GBA_ShowScores
[ShowMap UTUIDataProvider_KeyBinding]
Command=GBA_ShowMap
[ToggleMinimap UTUIDataProvider_KeyBinding]
Command=GBA_ToggleMinimap
[JoinGame UTUIDataProvider_MultiplayerMenuItem]
bRemoveOnPC=0
bRemoveOn360=0
bRemoveOnPS3=0
[HostGame UTUIDataProvider_MultiplayerMenuItem]
bRemoveOnPC=0
bRemoveOn360=0
bRemoveOnPS3=0
[UTMutator_SlowTimeKills UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_SlowTimeKills
GroupNames=GAMESPEED
bStandaloneOnly=1
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_BigHead UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_BigHead
GroupNames=BIGHEAD
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_FriendlyFire UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_FriendlyFire
GroupNames=FRIENDLYFIRE
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_Handicap UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_Handicap
GroupNames=HANDICAP
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_LowGrav UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_LowGrav
GroupNames=JUMPING
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_NoPowerups UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_NoPowerups
GroupNames=POWERUPS
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_Slomo UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_Slomo
GroupNames=GAMESPEED
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_SpeedFreak UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_SpeedFreak
GroupNames=GAMESPEED
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_SuperBerserk UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_SuperBerserk
GroupNames=FIRINGSPEED
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_WeaponsRespawn UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_WeaponsRespawn
GroupNames=WEAPONRESPAWN
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTMutator_Survival UTUIDataProvider_Mutator]
ClassName=UTGame.UTMutator_Survival
GroupNames=
UIConfigScene=
bRemoveOn360=False
bRemoveOnPC=False
bRemoveOnPS3=False
[UTDeathmatch UTUIDataProvider_GameModeInfo]
GameMode=UTGame.UTDeathmatch
GameSettingsClass=UTgameSettingsDM
GameSearchClass=UTGameSearchDM
PreviewImageMarkup=UI_FrontEnd_Art.GameTypes.___Deathmatch
DefaultMap=DM-Deck
Prefixes=DM
OptionSet=DM
IconImage=UI_HUD.HUD.UI_HUD_BaseD
IconU=442
IconV=76
IconUL=129
IconVL=104
[UTTeamGame UTUIDataProvider_GameModeInfo]
GameMode=UTGame.UTTeamGame
GameSettingsClass=UTGameSettingsTDM
GameSearchClass=UTGameSearchTDM
PreviewImageMarkup=UI_FrontEnd_Art.GameTypes.___TeamDeathmatch
DefaultMap=DM-Deck
Prefixes=DM
OptionSet=TDM
IconImage=UI_HUD.HUD.UI_HUD_BaseD
IconU=571
IconV=76
IconUL=149
IconVL=105
[UTVehicleCTFGame_Content UTUIDataProvider_GameModeInfo]
GameMode=UTGameContent.UTVehicleCTFGame_Content
GameSettingsClass=UTGameSettingsVCTF
GameSearchClass=UTGameSearchVCTF
PreviewImageMarkup=UI_FrontEnd_Art.GameTypes.___VCTF
DefaultMap=VCTF-Necropolis
Prefixes=VCTF
OptionSet=VCTF
IconImage=UI_HUD.HUD.UI_HUD_BaseD
IconU=230
IconV=76
IconUL=104
IconVL=113
[vCTF-Necropolis UTUIDataProvider_MapInfo]
MapName=vCTF-NECROPOLIS
PreviewImageMarkup=UI_FrontEnd_Art.MapPics.___Map-Pic-vCTF-Necropolis
Description=<Strings:UTGAMEUI.CampaignBriefing.BriefDesc38>
[vCTF-Sandstorm UTUIDataProvider_MapInfo]
MapName=vCTF-SANDSTORM
PreviewImageMarkup=UI_FrontEnd_Art.MapPics.___Map-Pic-vCTF-Sandstorm
Description=<Strings:UTGAMEUI.CampaignBriefing.BriefDesc35>
[DM-Deck UTUIDataProvider_MapInfo]
MapName=DM-DECK
PreviewImageMarkup=UI_FrontEnd_Art.MapPics.___Map-Pic-DM-Deck
Description=<Strings:UTGAMEUI.CampaignBriefing.BriefDesc139>
[DM-Sanctuary UTUIDataProvider_MapInfo]
MapName=DM-SANCTUARY
PreviewImageMarkup=UI_FrontEnd_Art.MapPics.___Map-Pic-DM-Sanctuary
Description=<Strings:UTGAMEUI.CampaignBriefing.BriefDesc36>
[UTGame.UTUIDataStore_Options]
ElementProviderTypes=(ProviderTag="OptionSets",ProviderClassName="UTGame.UTUIDataProvider_MenuOption")
[BotSkill_Common UTUIDataProvider_MenuOption]
OptionSet=Common
DataStoreMarkup=<UTGameSettings:BotSkill>
bReadOnlyCombo=1
[NumBots_Common UTUIDataProvider_MenuOption]
OptionSet=Common
DataStoreMarkup=<UTGameSettings:NumBots>
OptionType=UTOT_Slider
RangeData=(MinValue=0.0,MaxValue=15.0,bIntRange=1,NudgeValue=1.0,CurrentValue=4.0)
[GoalScore_Common UTUIDataProvider_MenuOption]
OptionSet=Common
DataStoreMarkup=<UTGameSettings:GoalScore>
bEditableCombo=1
bNumericCombo=1
[TimeLimit_Common UTUIDataProvider_MenuOption]
OptionSet=Common
DataStoreMarkup=<UTGameSettings:TimeLimit>
bEditableCombo=1
bNumericCombo=1
[BotTeam_Common UTUIDataProvider_MenuOption]
OptionSet=Common
DataStoreMarkup=<UTStringList:BotTeams>
bRemoveOn360=1
bRemoveOnPC=1
bRemoveOnPS3=1
[BotSkill_DM UTUIDataProvider_MenuOption]
OptionSet=DM
OptionSet=TDM
OptionSet=VCTF
DataStoreMarkup=<UTGameSettings:BotSkill>
[NumBots_DM UTUIDataProvider_MenuOption]
OptionSet=DM
OptionSet=TDM
OptionSet=VCTF
DataStoreMarkup=<UTGameSettings:NumBots>
OptionType=UTOT_Slider
RangeData=(MinValue=0.0,MaxValue=15.0,bIntRange=1,NudgeValue=1.0,CurrentValue=0.0)