-
Notifications
You must be signed in to change notification settings - Fork 0
/
cba_settings.sqf
803 lines (727 loc) · 30.1 KB
/
cba_settings.sqf
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
// ACE Advanced Ballistics
force ace_advanced_ballistics_ammoTemperatureEnabled = true;
force ace_advanced_ballistics_barrelLengthInfluenceEnabled = true;
force ace_advanced_ballistics_bulletTraceEnabled = true;
force ace_advanced_ballistics_enabled = true;
force ace_advanced_ballistics_muzzleVelocityVariationEnabled = true;
force ace_advanced_ballistics_simulationInterval = 0.05;
// ACE Advanced Fatigue
force ace_advanced_fatigue_enabled = true;
force ace_advanced_fatigue_enableStaminaBar = true;
force ace_advanced_fatigue_loadFactor = 0.75;
force ace_advanced_fatigue_performanceFactor = 5;
force ace_advanced_fatigue_recoveryFactor = 5;
force ace_advanced_fatigue_swayFactor = 0.75;
force ace_advanced_fatigue_terrainGradientFactor = 0.75;
// ACE Advanced Throwing
force ace_advanced_throwing_enabled = true;
force ace_advanced_throwing_enablePickUp = true;
force ace_advanced_throwing_enablePickUpAttached = true;
force ace_advanced_throwing_showMouseControls = true;
force ace_advanced_throwing_showThrowArc = true;
// ACE Arsenal
force ace_arsenal_allowDefaultLoadouts = false;
force ace_arsenal_allowSharedLoadouts = true;
ace_arsenal_camInverted = false;
force ace_arsenal_enableIdentityTabs = false;
ace_arsenal_enableModIcons = true;
ace_arsenal_EnableRPTLog = false;
ace_arsenal_fontHeight = 4.5;
// ACE Captives
force ace_captives_allowHandcuffOwnSide = true;
force ace_captives_allowSurrender = true;
force ace_captives_requireSurrender = 2;
force ace_captives_requireSurrenderAi = false;
// ACE Common
force ace_common_allowFadeMusic = true;
force ace_common_checkPBOsAction = 0;
force ace_common_checkPBOsCheckAll = false;
force ace_common_checkPBOsWhitelist = "[]";
ace_common_displayTextColor = [0,0,0,0.1];
ace_common_displayTextFontColor = [1,1,1,1];
ace_common_settingFeedbackIcons = 1;
ace_common_settingProgressBarLocation = 0;
force ace_noradio_enabled = true;
ace_parachute_hideAltimeter = true;
// ACE Cook off
force ace_cookoff_ammoCookoffDuration = 1;
force ace_cookoff_enable = true;
force ace_cookoff_enableAmmobox = true;
force ace_cookoff_enableAmmoCookoff = true;
force ace_cookoff_probabilityCoef = 1;
// ACE Explosives
force ace_explosives_explodeOnDefuse = true;
force ace_explosives_punishNonSpecialists = true;
force ace_explosives_requireSpecialist = true;
// ACE Fragmentation Simulation
force ace_frag_enabled = true;
force ace_frag_maxTrack = 10;
force ace_frag_maxTrackPerFrame = 10;
force ace_frag_reflectionsEnabled = true;
force ace_frag_spallEnabled = true;
// ACE Goggles
ace_goggles_effects = 2;
ace_goggles_showInThirdPerson = false;
// ACE Hearing
force ace_hearing_autoAddEarplugsToUnits = false;
ace_hearing_disableEarRinging = false;
force ace_hearing_earplugsVolume = 0.696672;
force ace_hearing_enableCombatDeafness = true;
force ace_hearing_enabledForZeusUnits = true;
force ace_hearing_unconsciousnessVolume = 0.4;
// ACE Interaction
force ace_interaction_disableNegativeRating = true;
ace_interaction_enableMagazinePassing = true;
force ace_interaction_enableTeamManagement = true;
// ACE Interaction Menu
ace_gestures_showOnInteractionMenu = 2;
ace_interact_menu_actionOnKeyRelease = true;
force ace_interact_menu_addBuildingActions = true;
ace_interact_menu_alwaysUseCursorInteraction = false;
force ace_interact_menu_alwaysUseCursorSelfInteraction = true;
ace_interact_menu_colorShadowMax = [0,0,0,1];
ace_interact_menu_colorShadowMin = [0,0,0,0.25];
ace_interact_menu_colorTextMax = [1,1,1,1];
ace_interact_menu_colorTextMin = [1,1,1,0.25];
ace_interact_menu_cursorKeepCentered = false;
ace_interact_menu_menuAnimationSpeed = 0;
ace_interact_menu_menuBackground = 0;
ace_interact_menu_selectorColor = [1,0,0];
ace_interact_menu_shadowSetting = 2;
ace_interact_menu_textSize = 2;
ace_interact_menu_useListMenu = false;
// ACE Logistics
force ace_cargo_enable = true;
force ace_cargo_loadTimeCoefficient = 5;
force ace_cargo_paradropTimeCoefficent = 2.5;
force ace_rearm_level = 0;
force ace_rearm_supply = 0;
force ace_refuel_hoseLength = 12;
force ace_refuel_rate = 1;
force ace_repair_addSpareParts = true;
force ace_repair_autoShutOffEngineWhenStartingRepair = true;
force ace_repair_consumeItem_toolKit = 0;
force ace_repair_displayTextOnRepair = true;
force ace_repair_engineerSetting_fullRepair = 2;
force ace_repair_engineerSetting_repair = 1;
force ace_repair_engineerSetting_wheel = 0;
force ace_repair_fullRepairLocation = 2;
force ace_repair_repairDamageThreshold = 0.6;
force ace_repair_repairDamageThreshold_engineer = 0.4;
force ace_repair_wheelRepairRequiredItems = 1;
// ACE Magazine Repack
force ace_magazinerepack_timePerAmmo = 1.5;
force ace_magazinerepack_timePerBeltLink = 8;
force ace_magazinerepack_timePerMagazine = 2;
// ACE Map
force ace_map_BFT_Enabled = false;
force ace_map_BFT_HideAiGroups = false;
force ace_map_BFT_Interval = 1;
force ace_map_BFT_ShowPlayerNames = false;
force ace_map_DefaultChannel = -1;
force ace_map_mapGlow = true;
force ace_map_mapIllumination = true;
force ace_map_mapLimitZoom = false;
force ace_map_mapShake = true;
force ace_map_mapShowCursorCoordinates = false;
force ace_markers_moveRestriction = 2;
// ACE Map Gestures
ace_map_gestures_defaultColor = [1,0.88,0,0.7];
ace_map_gestures_defaultLeadColor = [1,0.88,0,0.95];
force ace_map_gestures_enabled = true;
force ace_map_gestures_interval = 0.03;
force ace_map_gestures_maxRange = 7;
ace_map_gestures_nameTextColor = [0.2,0.2,0.2,0.3];
// ACE Map Tools
force ace_maptools_drawStraightLines = true;
force ace_maptools_rotateModifierKey = 1;
// ACE Medical
force ace_medical_ai_enabledFor = 2;
force ace_medical_AIDamageThreshold = 1;
force ace_medical_allowLitterCreation = true;
force ace_medical_allowUnconsciousAnimationOnTreatment = false;
force ace_medical_amountOfReviveLives = -1;
force ace_medical_bleedingCoefficient = 1;
force ace_medical_blood_enabledFor = 2;
force ace_medical_consumeItem_PAK = 1;
force ace_medical_consumeItem_SurgicalKit = 0;
force ace_medical_convertItems = 0;
force ace_medical_delayUnconCaptive = 3;
force ace_medical_enableAdvancedWounds = true;
force ace_medical_enableFor = 1;
force ace_medical_enableOverdosing = true;
force ace_medical_enableRevive = 0;
force ace_medical_enableScreams = true;
force force ace_medical_enableUnconsciousnessAI = 2;
force ace_medical_enableVehicleCrashes = true;
force ace_medical_healHitPointAfterAdvBandage = false;
force ace_medical_increaseTrainingInLocations = true;
force ace_medical_keepLocalSettingsSynced = true;
force ace_medical_level = 2;
force ace_medical_litterCleanUpDelay = 0;
force ace_medical_litterSimulationDetail = 3;
force ace_medical_maxReviveTime = 120;
force ace_medical_medicSetting = 2;
force ace_medical_medicSetting_basicEpi = 1;
force ace_medical_medicSetting_PAK = 2;
force ace_medical_medicSetting_SurgicalKit = 1;
force ace_medical_menu_allow = 1;
force ace_medical_menu_maxRange = 3;
ace_medical_menu_openAfterTreatment = true;
force ace_medical_menu_useMenu = 1;
force ace_medical_menuTypeStyle = 0;
ace_medical_menuTypeStyleSelf = true;
force ace_medical_moveUnitsFromGroupOnUnconscious = false;
force ace_medical_painCoefficient = 1;
ace_medical_painEffectType = 0;
force ace_medical_painIsOnlySuppressed = true;
force ace_medical_playerDamageThreshold = 1;
force force ace_medical_preventInstaDeath = false;
force ace_medical_remoteControlledAI = true;
force ace_medical_useCondition_PAK = 1;
force ace_medical_useCondition_SurgicalKit = 1;
force ace_medical_useLocation_basicEpi = 0;
force ace_medical_useLocation_PAK = 3;
force ace_medical_useLocation_SurgicalKit = 0;
// ACE Mk6 Mortar
force ace_mk6mortar_airResistanceEnabled = true;
force ace_mk6mortar_allowCompass = true;
force ace_mk6mortar_allowComputerRangefinder = true;
force ace_mk6mortar_useAmmoHandling = true;
// ACE Name Tags
ace_nametags_defaultNametagColor = [0.77,0.51,0.08,1];
ace_nametags_nametagColorBlue = [0.67,0.67,1,1];
ace_nametags_nametagColorGreen = [0.67,1,0.67,1];
ace_nametags_nametagColorMain = [1,1,1,1];
ace_nametags_nametagColorRed = [1,0.67,0.67,1];
ace_nametags_nametagColorYellow = [1,1,0.67,1];
force ace_nametags_playerNamesMaxAlpha = 0.8;
force ace_nametags_playerNamesViewDistance = 5;
force ace_nametags_showCursorTagForVehicles = false;
ace_nametags_showNamesForAI = false;
force ace_nametags_showPlayerNames = 1;
ace_nametags_showPlayerRanks = true;
ace_nametags_showSoundWaves = 1;
ace_nametags_showVehicleCrewInfo = true;
force ace_nametags_tagSize = 1;
// ACE Nightvision
force ace_nightvision_aimDownSightsBlur = 0.282446;
force ace_nightvision_disableNVGsWithSights = false;
force ace_nightvision_effectScaling = 0.31746;
force ace_nightvision_fogScaling = 0.329131;
force ace_nightvision_noiseScaling = 0.282446;
ace_nightvision_shutterEffects = false;
// ACE Overheating
force ace_overheating_displayTextOnJam = true;
force ace_overheating_enabled = true;
force ace_overheating_overheatingDispersion = true;
force ace_overheating_showParticleEffects = true;
force ace_overheating_showParticleEffectsForEveryone = true;
force ace_overheating_unJamFailChance = 0.1;
force ace_overheating_unJamOnreload = false;
// ACE Pointing
force ace_finger_enabled = true;
ace_finger_indicatorColor = [0.83,0.68,0.21,0.75];
ace_finger_indicatorForSelf = true;
force ace_finger_maxRange = 4;
// ACE Pylons
force ace_pylons_enabledForZeus = true;
force ace_pylons_enabledFromAmmoTrucks = true;
force ace_pylons_rearmNewPylons = true;
force ace_pylons_requireEngineer = true;
force ace_pylons_requireToolkit = true;
force ace_pylons_searchDistance = 15;
force ace_pylons_timePerPylon = 5;
// ACE Quick Mount
force ace_quickmount_distance = 3;
force ace_quickmount_enabled = false;
force ace_quickmount_enableMenu = 3;
force ace_quickmount_priority = 3;
force ace_quickmount_speed = 18;
// ACE Respawn
force ace_respawn_removeDeadBodiesDisconnected = true;
force ace_respawn_savePreDeathGear = false;
// ACE Scopes
force ace_scopes_correctZeroing = true;
force ace_scopes_deduceBarometricPressureFromTerrainAltitude = true;
force ace_scopes_defaultZeroRange = 100;
force ace_scopes_enabled = true;
force ace_scopes_forceUseOfAdjustmentTurrets = true;
force ace_scopes_overwriteZeroRange = true;
force ace_scopes_simplifiedZeroing = false;
force ace_scopes_useLegacyUI = false;
force ace_scopes_zeroReferenceBarometricPressure = 1013.25;
force ace_scopes_zeroReferenceHumidity = 0;
force ace_scopes_zeroReferenceTemperature = 15;
// ACE Spectator
force ace_spectator_enableAI = false;
force ace_spectator_restrictModes = 0;
force ace_spectator_restrictVisions = 0;
// ACE Switch Units
force ace_switchunits_enableSafeZone = false;
force ace_switchunits_enableSwitchUnits = false;
force ace_switchunits_safeZoneRadius = 100;
force ace_switchunits_switchToCivilian = false;
force ace_switchunits_switchToEast = false;
force ace_switchunits_switchToIndependent = false;
force ace_switchunits_switchToWest = false;
// ACE Tagging
force ace_tagging_quickTag = 2;
// ACE Uncategorized
force ace_fastroping_requireRopeItems = true;
force ace_gforces_enabledFor = 2;
force ace_hitreactions_minDamageToTrigger = 0.1;
ace_inventory_inventoryDisplaySize = 0;
force ace_laser_dispersionCount = 2;
force ace_microdagr_mapDataAvailable = 1;
force ace_microdagr_waypointPrecision = 3;
ace_optionsmenu_showNewsOnMainMenu = true;
force ace_overpressure_distanceCoefficient = 1;
// ACE User Interface
force ace_ui_allowSelectiveUI = true;
force ace_ui_ammoCount = false;
force ace_ui_ammoType = false;
force ace_ui_commandMenu = true;
force ace_ui_firingMode = false;
force ace_ui_groupBar = false;
force ace_ui_gunnerAmmoCount = true;
force ace_ui_gunnerAmmoType = true;
force ace_ui_gunnerFiringMode = true;
force ace_ui_gunnerLaunchableCount = true;
force ace_ui_gunnerLaunchableName = true;
force ace_ui_gunnerMagCount = true;
force ace_ui_gunnerWeaponLowerInfoBackground = true;
force ace_ui_gunnerWeaponName = true;
force ace_ui_gunnerWeaponNameBackground = true;
force ace_ui_gunnerZeroing = true;
force ace_ui_magCount = false;
force ace_ui_soldierVehicleWeaponInfo = true;
force ace_ui_staminaBar = false;
force ace_ui_stance = false;
force ace_ui_throwableCount = false;
force ace_ui_throwableName = true;
force ace_ui_vehicleAltitude = true;
force ace_ui_vehicleCompass = true;
force ace_ui_vehicleDamage = true;
force ace_ui_vehicleFuelBar = true;
force ace_ui_vehicleInfoBackground = true;
force ace_ui_vehicleName = false;
force ace_ui_vehicleNameBackground = false;
force ace_ui_vehicleRadar = true;
force ace_ui_vehicleSpeed = true;
force ace_ui_weaponLowerInfoBackground = false;
force ace_ui_weaponName = false;
force ace_ui_weaponNameBackground = false;
force ace_ui_zeroing = true;
// ACE Vehicle Lock
force ace_vehiclelock_defaultLockpickStrength = 10;
force ace_vehiclelock_lockVehicleInventory = true;
force ace_vehiclelock_vehicleStartingLockState = -1;
// ACE View Distance Limiter
force ace_viewdistance_enabled = true;
force ace_viewdistance_limitViewDistance = 12000;
ace_viewdistance_objectViewDistanceCoeff = 0;
ace_viewdistance_viewDistanceAirVehicle = 0;
ace_viewdistance_viewDistanceLandVehicle = 0;
ace_viewdistance_viewDistanceOnFoot = 0;
// ACE Weapons
force ace_common_persistentLaserEnabled = true;
force ace_laserpointer_enabled = true;
force ace_reload_displayText = true;
force ace_weaponselect_displayText = true;
// ACE Weather
force ace_weather_enabled = true;
force ace_weather_updateInterval = 60;
force ace_weather_windSimulation = true;
// ACE Wind Deflection
force ace_winddeflection_enabled = true;
force ace_winddeflection_simulationInterval = 0.05;
force ace_winddeflection_vehicleEnabled = true;
// ACE Zeus
force ace_zeus_autoAddObjects = false;
force ace_zeus_canCreateZeus = -1;
force ace_zeus_radioOrdnance = false;
force ace_zeus_remoteWind = false;
force ace_zeus_revealMines = 0;
force ace_zeus_zeusAscension = false;
force ace_zeus_zeusBird = false;
// ACEX Field Rations
force acex_field_rations_affectAdvancedFatigue = true;
force acex_field_rations_enabled = true;
force acex_field_rations_hudShowLevel = 0;
force acex_field_rations_hudTransparency = -1;
force acex_field_rations_hudType = 0;
force acex_field_rations_hungerSatiated = 2;
force acex_field_rations_thirstQuenched = 2;
force acex_field_rations_timeWithoutFood = 6;
force acex_field_rations_timeWithoutWater = 3;
// ACEX Fortify
acex_fortify_settingHint = 2;
// ACEX Headless
force acex_headless_delay = 15;
force acex_headless_enabled = false;
force acex_headless_endMission = 0;
force acex_headless_log = false;
force acex_headless_transferLoadout = 0;
// ACEX Sitting
force acex_sitting_enable = true;
// ACEX View Restriction
force acex_viewrestriction_mode = 0;
force acex_viewrestriction_modeSelectiveAir = 0;
force acex_viewrestriction_modeSelectiveFoot = 0;
force acex_viewrestriction_modeSelectiveLand = 0;
force acex_viewrestriction_modeSelectiveSea = 0;
acex_viewrestriction_preserveView = false;
// ACEX Volume
acex_volume_enabled = false;
acex_volume_fadeDelay = 1;
acex_volume_lowerInVehicles = false;
acex_volume_reduction = 5;
acex_volume_remindIfLowered = false;
acex_volume_showNotification = true;
// ADV - ACE CPR
force adv_aceCPR_addTime = 20;
force adv_aceCPR_AED_stationType = "Land_Defibrillator_F";
force adv_aceCPR_chance_0 = 5;
force adv_aceCPR_chance_1 = 15;
force adv_aceCPR_chance_2 = 40;
force adv_aceCPR_chance_aed = 85;
force adv_aceCPR_enable = true;
force adv_aceCPR_maxTime = 1200;
force adv_aceCPR_useLocation_AED = 0;
// ADV - ACE Splint
force adv_aceSplint_enable = true;
force adv_aceSplint_patientCondition = 1;
force adv_aceSplint_reopenChance_medic = 0;
force adv_aceSplint_reopenChance_regular = 30;
force adv_aceSplint_reopenTime = 600;
force adv_aceSplint_reuseChance = 80;
// CBA UI
cba_ui_notifyLifetime = 4;
cba_ui_StorePasswords = 1;
// CBA Weapons
force cba_disposable_dropUsedLauncher = 2;
force cba_disposable_replaceDisposableLauncher = true;
cba_events_repetitionMode = 1;
cba_optics_usePipOptics = true;
// KNB
force KNB_book_aceAction = true;
// MRH_Milsim Tools - RHS CBPS
force MRH_MT_RHSCBPS_globalComp = "MRH_defaultCBPS_medical_simple";
force MRH_MT_RHSCBPS_useGlobal = false;
// MRH_MilsimTools - CAS Suppport
force MRH_MilsimTools_CAS_DelayBetween = 600;
force MRH_MilsimTools_FireSupport_CAS_ConditionIsFormLeader = true;
force MRH_MilsimTools_FireSupport_CAS_CustomCondition = "";
force MRH_MilsimTools_FireSupport_CAS_isCustomConditionSet = false;
force MRH_MilsimTools_FireSupport_CASPlanesBluFor = "RHS_A10,rhsusf_f22,B_T_VTOL_01_armed_F,";
force MRH_MilsimTools_FireSupport_CASPlanesInde = "I_Plane_Fighter_04_F,I_Plane_Fighter_03_dynamicLoadout_F";
force MRH_MilsimTools_FireSupport_CASPlanesOpFor = "O_Plane_Fighter_02_F,O_UAV_02_dynamicLoadout_F,O_Plane_CAS_02_dynamicLoadout_F";
force MRH_MilsimTools_FireSupport_CASShots = "-1";
force MRH_MilsimTools_FireSupport_useCASSupport = false;
// MRH_MilsimTools - Core settings
force MRH_MilsimTools_AdminCasualtiesCap = 0;
force MRH_MilsimTools_AllowAdminForZeus = false;
force MRH_MilsimTools_AllowDeadReco = true;
force MRH_MilsimTools_Core_ApplyMedicPatch = false;
force MRH_MilsimTools_Delete_disconnected_body = false;
force MRH_MilsimTools_hideAceMyLoadOuts = false;
force MRH_MilsimTools_LD_loadoutDisplaySize = 100;
force MRH_MilsimTools_LD_ShowLoadOutInBrief = false;
force MRH_MilsimTools_PlayIntro_ToPlayer = false;
force MRH_MilsimTools_ResetHasDiedOnRespawn = false;
force MRH_MilsimTools_Rmv_map_nolead = false;
force MRH_MilsimTools_ShowAdminDeadHint = false;
// MRH_MilsimTools - Debug Mode
force MRH_MilsimTools_DebugTools_DoLogDebugMode = true;
force MRH_MilsimTools_DebugTools_isDebugMode = false;
// MRH_MilsimTools - Deployable Fobs
force MRH_MilsimTools_CAMP_composition = "MRH_SmallCamp_default";
force MRH_MilsimTools_FOB_BIG_composition = "MRH_FieldHQSmall_default";
force MRH_MilsimTools_MiscItems_CAMP_DeployTime = 10;
force MRH_MilsimTools_MiscItems_CAMP_GRepackRadius = 10;
force MRH_MilsimTools_MiscItems_CAMP_GRepackTime = 10;
force MRH_MilsimTools_MiscItems_FOB_BIGDeployTime = 20;
force MRH_MilsimTools_MiscItems_FOB_BIGRepackRadius = 50;
force MRH_MilsimTools_MiscItems_FOB_BIGRepackTime = 20;
// MRH_MilsimTools - Enhanced Map
force MRH_MilsimTools_Map_FoldUseAceLight = true;
force MRH_MilsimTools_Map_ReplaceVanillaMap = false;
force MRH_MilsimTools_Map_ZoomRatio = 0.3;
// MRH_MilsimTools - Fire Suppport
force MRH_MilsimTools_Arty_DelayBetween = 600;
force MRH_MilsimTools_FireSupport_ArtyMagazines = "32Rnd_155mm_Mo_shells,6Rnd_155mm_Mo_smoke,6Rnd_155mm_Mo_mine,2Rnd_155mm_Mo_Cluster,4Rnd_155mm_Mo_guided,magazine_Missiles_Cruise_01_x18,";
force MRH_MilsimTools_FireSupport_ArtyShots = "-10";
force MRH_MilsimTools_FireSupport_ConditionIsFormLeader = true;
force MRH_MilsimTools_FireSupport_CustomCondition = "";
force MRH_MilsimTools_FireSupport_isCustomConditionSet = false;
force MRH_MilsimTools_FireSupport_useFireSupport = true;
// MRH_MilsimTools - Hacking settings
force MRH_MilsimTools_RequireHackingTool = true;
// MRH_MilsimTools - Halo Jumps
force MRH_MilsimTools_HaloGear_AADDefaultOpeningAltitude = "700";
force MRH_MilsimTools_HaloGear_allowManualAADSetting = true;
force MRH_MilsimTools_HaloGear_disableMaskHud = true;
force MRH_MilsimTools_HaloGear_disableMaskHudAltimeter = true;
force MRH_MilsimTools_HaloGear_disableMaskHudCompass = true;
force MRH_MilsimTools_HaloGear_disableMaskHudVelocity = true;
force MRH_MilsimTools_HaloGear_haloMaskBreakingChancePerc = 10;
force MRH_MilsimTools_HaloGear_hypoxiaAltitude = 4600;
force MRH_MilsimTools_HaloGear_hypoxiaUse = true;
force MRH_MilsimTools_HaloGear_missionConfiguredProtectiveGear = "MRH_HaloMask";
force MRH_MilsimTools_HaloGear_playRebreatherSounds = false;
// MRH_MilsimTools - Heli Taxi
force MRH_MilsimTools_BluForCivs = "C_Heli_Light_01_civil_F";
force MRH_MilsimTools_BluForHelis = "RHS_UH60M_d";
force MRH_MilsimTools_BluForInde = "I_Heli_Transport_02_F,I_Heli_light_03_unarmed_F";
force MRH_MilsimTools_BluForOpFor = "O_Heli_Transport_04_bench_F,O_Heli_Light_02_unarmed_F,O_Heli_Transport_04_covered_F";
force MRH_MilsimTools_Heli_ConditionIsFormLeader = true;
force MRH_MilsimTools_Heli_CustomCondition = "(isFormationLeader player) && ([player, 'mpx_daysack9'] call acre_api_fnc_hasKindOfRadio)";
force MRH_MilsimTools_Heli_isCustomConditionSet = false;
force MRH_MilsimTools_Heli_NumberSimulTPerSide = "6";
force MRH_MilsimTools_Heli_UseHeliTaxiInMission = false;
// MRH_MilsimTools - Insertion Handler
force MRH_MilsimTools_InsertionHandler_allowHALO = true;
force MRH_MilsimTools_InsertionHandler_allowStatic = true;
force MRH_MilsimTools_InsertionHandler_allowSub = false;
force MRH_MilsimTools_InsertionHandler_SupplyPlanesBluFor = "RHS_C130J";
force MRH_MilsimTools_InsertionHandler_SupplyPlanesInde = "";
force MRH_MilsimTools_InsertionHandler_SupplyPlanesOpFor = "";
// MRH_MilsimTools - JIP settings
force MRH_MilsimTools_Jip_Menu_sideOnly = false;
force MRH_MilsimTools_Jip_MenuAllow = false;
force MRH_MilsimTools_Jip_MenuIncludeAI = false;
// MRH_MilsimTools - MEDEVAC
force MRH_MilsimTools_MEDEVAC_BluFor = "RHS_UH60M_MEV2_d";
force MRH_MilsimTools_MEDEVAC_Civs = "";
force MRH_MilsimTools_MEDEVAC_ConditionIsFormLeader = true;
force MRH_MilsimTools_MEDEVAC_CustomCondition = "";
force MRH_MilsimTools_MEDEVAC_DelayBetween = 300;
force MRH_MilsimTools_MEDEVAC_ESCORT_BluFor = "RHS_AH64D";
force MRH_MilsimTools_MEDEVAC_ESCORT_BluForCivs = "";
force MRH_MilsimTools_MEDEVAC_ESCORT_Inde = "";
force MRH_MilsimTools_MEDEVAC_ESCORT_OpFor = "";
force MRH_MilsimTools_MEDEVAC_Inde = "";
force MRH_MilsimTools_MEDEVAC_isCustomConditionSet = false;
force MRH_MilsimTools_MEDEVAC_MEDICCLASS_BluFor = "FGN_CAG_MedSergeant";
force MRH_MilsimTools_MEDEVAC_MEDICCLASS_Civs = "";
force MRH_MilsimTools_MEDEVAC_MEDICCLASS_Inde = "";
force MRH_MilsimTools_MEDEVAC_MEDICCLASS_ItemsCall = "ACE_HandFlare_Red,SmokeShellOrange,SmokeShellRed,SmokeShellBlue,SmokeShellYellow,SmokeShellGreen,";
force MRH_MilsimTools_MEDEVAC_MEDICCLASS_OpFor = "";
force MRH_MilsimTools_MEDEVAC_OpFor = "";
force MRH_MilsimTools_MEDEVAC_timeToReachLZ = 600;
force MRH_MilsimTools_MEDEVAC_UseMedEVACInMission = true;
// MRH_MilsimTools - Medical Tent
force MRH_MilsimTools_MiscItems_FieldMedicalTentDeployTime = 20;
force MRH_MilsimTools_MiscItems_FieldMedicalTentRepackTime = 10;
// MRH_MilsimTools - Roster settings
force MRH_MilsimTools_Roster_AllowAllSides = false;
force MRH_MilsimTools_Roster_ColorBF = [0.259,0.525,0.957,1];
force MRH_MilsimTools_Roster_ColorCiv = [0.686,0.141,0.588,1];
force MRH_MilsimTools_Roster_ColorInd = [0.212,0.847,0.286,1];
force MRH_MilsimTools_Roster_ColorOp = [0.929,0.063,0.063,1];
force MRH_MilsimTools_Roster_ColorUnknown = [0.929,0.82,0.118,1];
force MRH_MilsimTools_Roster_ShowAIgroups = false;
force MRH_MilsimTools_Roster_ShowAiWithinGrps = false;
// MRH_MilsimTools - Supply drops
force MRH_MilsimTools_FireSupport_NumberOfSuppliesDrops = "-1";
force MRH_MilsimTools_FireSupport_Supplies_ConditionIsFormLeader = true;
force MRH_MilsimTools_FireSupport_Supplies_CustomCondition = "";
force MRH_MilsimTools_FireSupport_Supplies_DistanceForAircraft = "5000";
force MRH_MilsimTools_FireSupport_Supplies_isCustomConditionSet = false;
force MRH_MilsimTools_FireSupport_Supplies_ListOfAvailableSupplies = "UK3CB_BAF_Box_762_Ammo,UK3CB_BAF_Box_L111A1_Ammo,UK3CB_BAF_Box_L16_Ammo_HE,UK3CB_BAF_Box_L16_Ammo_Illumination,UK3CB_BAF_Box_L16_Ammo_Mixed,UK3CB_BAF_Box_L16_Ammo_Smoke,UK3CB_BAF_Box_L16_Ammo_WPSmoke,UK3CB_BAF_Box_L7A2_Ammo,ACE_medicalSupplyCrate_advanced,rhsusf_mags_crate,rhsusf_launcher_crate,rhsusf_mrzr4_d,MRH_AcexFoodSuppliesCrate";
force MRH_MilsimTools_FireSupport_Supplies_useSupplyDrops = true;
force MRH_MilsimTools_FireSupport_SupplyPlanesBluFor = "RHS_C130J";
force MRH_MilsimTools_FireSupport_SupplyPlanesInde = "";
force MRH_MilsimTools_FireSupport_SupplyPlanesOpFor = "";
force MRH_MilsimTools_SupplyDrop_DelayBetween = 1200;
// MRH_MilsimTools - Tablet settings
force MRH_MilsimTools_AllowMapTablet = false;
force MRH_MilsimTools_ST_BriefingRemote_overlay = "\MRHMilsimTools\Paa\cnn_news_ca.paa";
force MRH_MilsimTools_ST_BriefingRemote_videosToPlay = "\a3\missions_f_bootcamp\video\vr_generictransition_1.ogv,\a3\missions_f_epa\video\a_in_intro.ogv";
// MRH_MilsimTools - Zeus
MRH_MilsimTools_Zeus_hideWaterMark = false;
MRH_MilsimTools_Zeus_waterMark = "UseVanilla";
MRH_MilsimTools_Zeus_waterMarkCustomImg = "\MRHMilsimTools\Paa\zeusicon.paa";
// MRHSatellite Options
force MRH_SAT_allowFullscreen = true;
force MRH_SAT_allowLasering = true;
force MRH_SAT_allowTargetDetection = true;
force MRH_SAT_allowTargetTracking = true;
force MRH_SAT_MaxSatAltitude = 300;
// MRHSpawner Allowed DLCs
force Enoch = false;
force Expansion = false;
force Heli = false;
force Jets = false;
force Kart = false;
force ORANGE = false;
force RHS_AFRF = false;
force RHS_GREF = false;
force RHS_SAF = false;
force RHS_USAF = false;
force Tank = false;
force UK3CB_BAF_Vehicles = false;
force UK3CB_Factions = false;
force Vanilla = false;
// MRHSpawner Allowed Factions
force BLU_CTRG_F = false;
force BLU_F = false;
force BLU_G_F = false;
force BLU_GEN_F = false;
force BLU_T_F = false;
force CIV_F = false;
force CIV_IDAP_F = false;
force IND_C_F = false;
force IND_E_F = false;
force IND_F = false;
force IND_G_F = false;
force OPF_F = false;
force OPF_G_F = false;
force OPF_T_F = false;
force rhs_faction_msv = false;
force rhs_faction_rva = false;
force rhs_faction_socom = false;
force rhs_faction_tv = false;
force rhs_faction_usaf = false;
force rhs_faction_usarmy_d = false;
force rhs_faction_usarmy_wd = false;
force rhs_faction_usmc_d = false;
force rhs_faction_usmc_wd = false;
force rhs_faction_vdv = false;
force rhs_faction_vmf = false;
force rhs_faction_vpvo = false;
force rhs_faction_vv = false;
force rhs_faction_vvs = false;
force rhs_faction_vvs_c = false;
force rhsgref_faction_cdf_air = false;
force rhsgref_faction_cdf_air_b = false;
force rhsgref_faction_cdf_ground = false;
force rhsgref_faction_cdf_ground_b = false;
force rhsgref_faction_cdf_ng = false;
force rhsgref_faction_cdf_ng_b = false;
force rhsgref_faction_chdkz = false;
force rhsgref_faction_chdkz_g = false;
force rhsgref_faction_hidf = false;
force rhsgref_faction_nationalist = false;
force rhsgref_faction_tla = false;
force rhsgref_faction_un = false;
force rhssaf_faction_airforce = false;
force rhssaf_faction_airforce_opfor = false;
force rhssaf_faction_army = false;
force rhssaf_faction_army_opfor = false;
force rhssaf_faction_un = false;
force UK3CB_ANA_B = false;
force UK3CB_ANP_B = false;
force UK3CB_CCM_B = false;
force UK3CB_CCM_I = false;
force UK3CB_CCM_O = false;
force UK3CB_CHC_B = false;
force UK3CB_CHC_C = false;
force UK3CB_CHC_I = false;
force UK3CB_CHC_O = false;
force UK3CB_CPD_B = false;
force UK3CB_CPD_I = false;
force UK3CB_CPD_O = false;
force UK3CB_CW_SOV_O_EARLY = false;
force UK3CB_CW_SOV_O_LATE = false;
force UK3CB_CW_US_B_EARLY = false;
force UK3CB_CW_US_B_LATE = false;
force UK3CB_TKA_B = false;
force UK3CB_TKA_I = false;
force UK3CB_TKA_O = false;
force UK3CB_TKC_B = false;
force UK3CB_TKC_C = false;
force UK3CB_TKC_I = false;
force UK3CB_TKC_O = false;
force UK3CB_TKM_B = false;
force UK3CB_TKM_I = false;
force UK3CB_TKM_O = false;
force UK3CB_TKP_B = false;
force UK3CB_TKP_I = false;
force UK3CB_TKP_O = false;
force UK3CB_UN_B = false;
force UK3CB_UN_I = false;
force UK_ARMED_FORCES = false;
// NIArms
force niarms_accswitch = true;
force niarms_magSwitch = true;
// PRAE Modules
force force PRAE_EnhanceCIV = true;
force force PRAE_evacBluforCIV = true;
force force PRAE_HUMRATS = true;
// PRAE Modules - Field HQ
force force PRAE_fieldHQ_Add = "";
force force PRAE_fieldHQ_Enable = false;
force force PRAE_fieldHQ_Limit = 1;
// TFAR - Clientside settings
TFAR_default_radioVolume = 6;
TFAR_intercomDucking = 0.2;
TFAR_intercomVolume = 0.1;
TFAR_moveWhileTabbedOut = false;
TFAR_oldVolumeHint = false;
TFAR_pluginTimeout = 4;
TFAR_PosUpdateMode = 0.1;
TFAR_showChannelChangedHint = true;
TFAR_ShowDiaryRecord = true;
TFAR_showTransmittingHint = true;
TFAR_ShowVolumeHUD = false;
TFAR_tangentReleaseDelay = 0;
TFAR_VolumeHudTransparency = 0;
TFAR_volumeModifier_forceSpeech = false;
// TFAR - Global settings
force TFAR_AICanHearPlayer = true;
force TFAR_AICanHearSpeaker = true;
force TFAR_allowDebugging = true;
TFAR_curatorCamEars = false;
force TFAR_defaultIntercomSlot = 0;
force TFAR_enableIntercom = true;
force TFAR_experimentalVehicleIsolation = true;
force TFAR_fullDuplex = true;
force TFAR_giveLongRangeRadioToGroupLeaders = false;
force TFAR_giveMicroDagrToSoldier = true;
force TFAR_givePersonalRadioToRegularSoldier = true;
force TFAR_globalRadioRangeCoef = 1;
force TFAR_instantiate_instantiateAtBriefing = false;
TFAR_noAutomoveSpectator = false;
force TFAR_objectInterceptionEnabled = true;
force TFAR_objectInterceptionStrength = 400;
force tfar_radiocode_east = "_opfor";
force tfar_radiocode_independent = "_independent";
force tfar_radiocode_west = "_bluefor";
force tfar_radioCodesDisabled = false;
force TFAR_SameLRFrequenciesForSide = true;
force TFAR_SameSRFrequenciesForSide = true;
force TFAR_setting_defaultFrequencies_lr_east = "";
force TFAR_setting_defaultFrequencies_lr_independent = "";
force TFAR_setting_defaultFrequencies_lr_west = "";
force TFAR_setting_defaultFrequencies_sr_east = "";
force TFAR_setting_defaultFrequencies_sr_independent = "";
force TFAR_setting_defaultFrequencies_sr_west = "25,50,75";
force TFAR_setting_DefaultRadio_Airborne_east = "TFAR_mr6000l";
force TFAR_setting_DefaultRadio_Airborne_Independent = "TFAR_anarc164";
force TFAR_setting_DefaultRadio_Airborne_West = "TFAR_anarc210";
force TFAR_setting_DefaultRadio_Backpack_east = "TFAR_mr3000";
force TFAR_setting_DefaultRadio_Backpack_Independent = "TFAR_anprc155";
force TFAR_setting_DefaultRadio_Backpack_west = "TFAR_rt1523g";
force TFAR_setting_DefaultRadio_Personal_east = "TFAR_fadak";
force TFAR_setting_DefaultRadio_Personal_Independent = "TFAR_anprc148jem";
force TFAR_setting_DefaultRadio_Personal_West = "TFAR_anprc152";
force TFAR_setting_DefaultRadio_Rifleman_East = "TFAR_pnr1000a";
force TFAR_setting_DefaultRadio_Rifleman_Independent = "TFAR_anprc154";
force TFAR_setting_DefaultRadio_Rifleman_West = "TFAR_rf7800str";
force TFAR_spectatorCanHearEnemyUnits = true;
force TFAR_spectatorCanHearFriendlies = true;
force TFAR_takingRadio = 2;
force TFAR_Teamspeak_Channel_Name = "TaskForceRadio";
force TFAR_Teamspeak_Channel_Password = "123";
force tfar_terrain_interception_coefficient = 7;
force TFAR_voiceCone = true;
// Turret Enhanced
force Fat_Lurch_Grid = true;
force Fat_Lurch_GridNum = 8;
force Fat_Lurch_MapSlew = true;
force Fat_Lurch_Markers = true;
force Fat_Lurch_Measure = true;
force Fat_Lurch_ShowNorth = true;
force Fat_Lurch_ShowTarget = true;