forked from BattletechModders/RogueTech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RtConfig.xml
2213 lines (2213 loc) · 89.1 KB
/
RtConfig.xml
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
<?xml version="1.0" ?>
<RogueTechConfig>
<LancherUpdateUrl>https://discourse.modsinexile.com/t/rogue-tech/134</LancherUpdateUrl>
<RequiredBattleTechVersion>1.9.1</RequiredBattleTechVersion>
<RequiredLauncherVersion>1.3.7</RequiredLauncherVersion>
<SecureHash>FnwWChYdFnEWVhaTFgcWXRarFhEWMxY0FtUWuxY+Fr8=</SecureHash>
<showCoreItems>false</showCoreItems>
<Tasks>
<InstallTask>
<Id>coreInstallX</Id>
<canSelect>false</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>RtConfig.xml,.git,.gitignore,.modtek,.vscode,Documents,InstallOptions,Optional,Eras,RogueTechPerfFix</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>Install</jobType>
<optionGroupId/>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath/>
<targetPath/>
<uiDescription/>
<uiName>RogueTech Core</uiName>
</InstallTask>
<InstallTask>
<Id>coreEra</Id>
<canSelect>false</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>Install</jobType>
<optionGroupId/>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>Eras/ClanInvasion3061</sourcePath>
<targetPath>Eras/ClanInvasion3061</targetPath>
<uiDescription/>
<uiName>Clan Invasion Era</uiName>
</InstallTask>
<InstallTask>
<Id>OnlineMode</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>MultiComponentInstall</jobType>
<optionGroupId>OnlineMode</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Warning! Launch Safeties cannot be disabled in online mode to ensure a level playing field for all players.\n\nBy playing in online mode you agree to your gameplay data being sent to and stored by the online server. This includes company, unit and battle statistics.;;Yes, I understand;;No thanks</promptText>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/PersistentMapClient</sourcePath>
<targetPath>PersistentMapClient</targetPath>
<uiDescription>Fight for your choosen faction against other players for supremacy over the Inner Sphere (Requires registering and application on Warmap Discord for full access, visit www.roguewar.org to find out how )</uiDescription>
<uiName>Online War Map (Requires registering and application on Warmap Discord for full access)</uiName>
</InstallTask>
<InstallTask>
<Id>WIICMode</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>Install</jobType>
<optionGroupId>OnlineMode</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/WarTechIIC</sourcePath>
<targetPath>WarTechIIC</targetPath>
<uiDescription>Offline Mode with Interactive Inner Sphere</uiDescription>
<uiName>Wartech IIC</uiName>
</InstallTask>
<InstallTask>
<Id>Year3040</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>NoOp</jobType>
<optionGroupId>MapYear</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath/>
<targetPath/>
<uiDescription>Map is based on the Canon 3040 state of the InnerSphere</uiDescription>
<uiName>3040's Map</uiName>
</InstallTask>
<InstallTask>
<Id>Year3081</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>MapYear</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/ISM3081</sourcePath>
<targetPath>Options/ISM3081</targetPath>
<uiDescription>Map is based on the Canon 3081-3086 state of the InnerSphere</uiDescription>
<uiName>3080's Map</uiName>
</InstallTask>
<InstallTask>
<Id>Year2765</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>MapYear</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/ISM2765</sourcePath>
<targetPath>Options/ISM2765</targetPath>
<uiDescription>Map is based on the Canon 2765 state of the InnerSphere</uiDescription>
<uiName>2765 Map</uiName>
</InstallTask>
<InstallTask>
<Id>GlobalDifficultyByCompany</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.05</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>GlobaldDifficulty</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/GlobalDifficulty/GlobalDifficultyByCompany/settings.json</sourcePath>
<targetPath>Core/DropCostsEnhanced/settings.json</targetPath>
<uiDescription>Base difficulty goes up the more money your mechs are worth. 14,000,000 cbills per half-skull. It counts the your averaged deployment value for the last several missions. +5% Online Progress.</uiDescription>
<uiName>Difficulty by Company Strength - Challenge scales with the cost of your drops</uiName>
</InstallTask>
<InstallTask>
<Id>GlobalDifficultyByPlanets</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>GlobaldDifficulty</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/GlobalDifficulty/GlobalDifficultyByPlanets/settings.json</sourcePath>
<targetPath>Core/DropCostsEnhanced/settings.json</targetPath>
<uiDescription>Every Planet has their own Difficulty Rating Some systems are difficult, some are easy.</uiDescription>
<uiName>Difficulty by Planet Rating - Planets never change their Skulls. </uiName>
</InstallTask>
<InstallTask>
<Id>GlobalDifficultyByLegacyCompany</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>1</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>GlobaldDifficulty</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/GlobalDifficulty/GlobalDifficultyByLegacyCompany/settings.json</sourcePath>
<targetPath>Core/DropCostsEnhanced/settings.json</targetPath>
<uiDescription>Base difficulty goes up the more money your mechs are worth. 16,500,000 cbills per half-skull. It counts the most expensive mechs you can drop. Caps Online influence to 10 max.</uiDescription>
<uiName>Difficulty by Company Strength (Legacy) - Challenge scales with the cost of your mechs</uiName>
</InstallTask>
<InstallTask>
<Id>SupportDefault</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>SupportLances</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/SupportLances/MC-Default/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>Default Enemy Support Lances</uiDescription>
<uiName>Default Enemy Support Lances</uiName>
</InstallTask>
<InstallTask>
<Id>SupportKillTeams</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>SupportLances</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Only the cheesiest and most unfair Murderbabies are to be found here. Hasta la vista, baby!\n\nAre you sure you want to enable?;;Spank Me;;I'll pass</promptText>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/SupportLances/MC-KillTeams</sourcePath>
<targetPath>Core/MissionControl</targetPath>
<uiDescription>Max 1 Support Lance, Deadly Custom Mechs and High Level Pilots begin appearing at D13</uiDescription>
<uiName>KillTeams Enemy Support Lance</uiName>
</InstallTask>
<InstallTask>
<Id>EasyMode</Id>
<canSelect>true</canSelect>
<difficultyModifier>-0.5</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>1</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>SupportLances</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/SupportLances/MC-Easy</sourcePath>
<targetPath>Core/MissionControl</targetPath>
<uiDescription>Max 1 Support Lance, Lower chances, -50% Online Progress, Caps Online influence to 10 max</uiDescription>
<uiName>Easy Enemy Support Lances</uiName>
</InstallTask>
<InstallTask>
<Id>HugsMode</Id>
<canSelect>true</canSelect>
<difficultyModifier>-0.5</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>2</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>SupportLances</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/SupportLances/MC-Hugs</sourcePath>
<targetPath>Core/MissionControl</targetPath>
<uiDescription>No Enemy Support Lances (except contract specific), -90% Online Progress, Caps Online influence to 6 max</uiDescription>
<uiName>No Enemy Support Lances</uiName>
</InstallTask>
<InstallTask>
<Id>RandomSpawning</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>MapSpawnRandomizer</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/MapSpawnRandomizer/MC-Randomizer/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>Randomizes Combat Starting Position.</uiDescription>
<uiName>Random Combat Starting Position</uiName>
</InstallTask>
<InstallTask>
<Id>NoRandomSpawning</Id>
<canSelect>true</canSelect>
<difficultyModifier>-0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>MapSpawnRandomizer</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/MapSpawnRandomizer/MC-NoRandomizer/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>Disabled Random Combat Starting Position. -2% Online Progress.</uiDescription>
<uiName>Disable Random Combat Starting Position</uiName>
</InstallTask>
<InstallTask>
<Id>ManualDeploy</Id>
<canSelect>true</canSelect>
<difficultyModifier>-0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>DeployChoice</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Deployment/CU-DeployManual/mod.json</sourcePath>
<targetPath>Core/CustomUnits/mod.json</targetPath>
<uiDescription>Choose a Deployment Position on Mission Start. -2% Online Progress.</uiDescription>
<uiName>Manual Deploy</uiName>
</InstallTask>
<InstallTask>
<Id>AskDeploy</Id>
<canSelect>true</canSelect>
<difficultyModifier>-0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>DeployChoice</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Deployment/CU-DeployAsk/mod.json</sourcePath>
<targetPath>Core/CustomUnits/mod.json</targetPath>
<uiDescription>Ask for Deploy type before combat. -2% Online Progress.</uiDescription>
<uiName>Ask for Deploy type before combat</uiName>
</InstallTask>
<InstallTask>
<Id>AutoDeploy</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>DeployChoice</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Deployment/CU-DeployAutomatic/mod.json</sourcePath>
<targetPath>Core/CustomUnits/mod.json</targetPath>
<uiDescription>Your Units are automatically deployed.</uiDescription>
<uiName>Automatic Deploy</uiName>
</InstallTask>
<InstallTask>
<Id>ManualConvoy</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>ConvoyControl</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Convoy/CU-ConvoyManual/mod.json</sourcePath>
<targetPath>Core/CustomUnits/mod.json</targetPath>
<uiDescription>Manually control Convoy Missions</uiDescription>
<uiName>Manual Convoy</uiName>
</InstallTask>
<InstallTask>
<Id>AutoConvoy</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>ConvoyControl</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Convoy/CU-ConvoyAI/mod.json</sourcePath>
<targetPath>Core/CustomUnits/mod.json</targetPath>
<uiDescription>Ai controls Convoy Missions.</uiDescription>
<uiName>AI Convoy</uiName>
</InstallTask>
<InstallTask>
<Id>AlliesActive</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>AlliesToggle</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Allies/MC-Allies/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>Receive Allied Support on Tougher Contracts.</uiDescription>
<uiName>Enable Allies</uiName>
</InstallTask>
<InstallTask>
<Id>AlliesDisabled</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>AlliesToggle</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Warning! Enemies will vastly outnumber you?;;Yes, Hurt me!;;No Way</promptText>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Allies/MC-NoAllies/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>DO NOT! Receive Allied Support on Tougher Contracts.</uiDescription>
<uiName>Disable Allies</uiName>
</InstallTask>
<InstallTask>
<Id>MapSelectStd</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>MapSize</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/MapSize/MC-Mapsize-STD/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>Standard Map Size.</uiDescription>
<uiName>Standard Map Size</uiName>
</InstallTask>
<InstallTask>
<Id>MapSelect33</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.05</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>MapSize</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/MapSize/MC-Mapsize-33/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>33% Increased Map Size. +5% Online Progress.</uiDescription>
<uiName>33% Increased Map Size</uiName>
</InstallTask>
<InstallTask>
<Id>MapSelect66</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.1</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>MapSize</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/MapSize/MC-Mapsize-66/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>66% Increased Map Size. +10% Online Progress.</uiDescription>
<uiName>66% Increased Map Size</uiName>
</InstallTask>
<InstallTask>
<Id>MapSelect100</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.1</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>MapSize</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/MapSize/MC-Mapsize-100/settings.json</sourcePath>
<targetPath>Core/MissionControl/settings.json</targetPath>
<uiDescription>100% Increased Map Size. +10% Online Progress. Can cause long mission load on some maps.</uiDescription>
<uiName>100% Increased Map Size</uiName>
</InstallTask>
<InstallTask>
<Id>CombatLogOff</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>CombatLog</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/CombatLog/CombatLogOff/mod.json</sourcePath>
<targetPath>Core/IRTweaks/mod.json</targetPath>
<uiDescription>Damage and status effects as floaties around the mech, no Combat Log</uiDescription>
<uiName>Floaties</uiName>
</InstallTask>
<InstallTask>
<Id>CombatLogOn</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>CombatLog</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/CombatLog/CombatLogOn/mod.json</sourcePath>
<targetPath>Core/IRTweaks/mod.json</targetPath>
<uiDescription>Converts all Floaties to persistent Combat Log in the upper right corner</uiDescription>
<uiName>Combat Log</uiName>
</InstallTask>
<InstallTask>
<Id>PilotsRonin</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>Pilotselect</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Pilots/PilotsRonin/pilotselectsettings.json</sourcePath>
<targetPath>Core/MechAffinity/pilotselectsettings.json</targetPath>
<uiDescription>Start the Game with pre-defined Pilots. They have painted pictures and unused EXP</uiDescription>
<uiName>Random Ronin Starting Pilots</uiName>
</InstallTask>
<InstallTask>
<Id>PilotsProcedural</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.01</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>BasicJsonMerge</jobType>
<optionGroupId>Pilotselect</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/Pilots/PilotsProcedural/pilotselectsettings.json</sourcePath>
<targetPath>Core/MechAffinity/pilotselectsettings.json</targetPath>
<uiDescription>Start the Game with randomly generated, editable, Pilots. Ones like you commonly find in the hiring hall. +1% Online Progress.</uiDescription>
<uiName>Random Generated Starting Pilots</uiName>
</InstallTask>
<InstallTask>
<Id>RogueCivilWar</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechEra</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Eras/CivilWar3062-3067</sourcePath>
<targetPath>Eras/CivilWar3062-3067</targetPath>
<uiDescription>Civil War Era, Lore Units</uiDescription>
<uiName>Mech's of the Civil War Era 3062-3067</uiName>
</InstallTask>
<InstallTask>
<Id>RogueJihad</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechEra</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Eras/Jihad3068-3080</sourcePath>
<targetPath>Eras/Jihad3068-3080</targetPath>
<uiDescription>Jihad Era, Lore Units</uiDescription>
<uiName>Mech's of the WoB Jihad Era 3068-3080</uiName>
</InstallTask>
<InstallTask>
<Id>RogueRepublic</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechEra</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Eras/Republic3081-3130</sourcePath>
<targetPath>Eras/Republic3081-3130</targetPath>
<uiDescription>Republic Era, Lore Units</uiDescription>
<uiName>Mech's of the Republic Era 3080-3130</uiName>
</InstallTask>
<InstallTask>
<Id>RogueDarkAge</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechEra</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Eras/DarkAge3131-</sourcePath>
<targetPath>Eras/DarkAge3131-</targetPath>
<uiDescription>Dark Age Era, Lore Units</uiDescription>
<uiName>Mech's of the Dark Age Era 3130+</uiName>
</InstallTask>
<InstallTask>
<Id>Urbocalypse</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.01</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Urbocalypse</sourcePath>
<targetPath>Optionals/Urbocalypse</targetPath>
<uiDescription>UrbanMechs, UrbanMech's everyhwere! +1% Online Progress.</uiDescription>
<uiName>Urbocalypse - Trashcans Galore!</uiName>
</InstallTask>
<InstallTask>
<Id>RogueOmnis</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/RogueOmnis</sourcePath>
<targetPath>Optionals/RogueOmnis</targetPath>
<uiDescription>!Challenging Content! High End Upgrades of classic Mech's. +2% Online Progress.</uiDescription>
<uiName>Custom OmniMechs - Plug and Play Galore</uiName>
</InstallTask>
<InstallTask>
<Id>PirateTech</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/PirateTech</sourcePath>
<targetPath>Optionals/PirateTech</targetPath>
<uiDescription>!Challenging Content! Jury Rigged and Junker Tech Units. +2% Online Progress.</uiDescription>
<uiName>Pirate Tech Units - Laws are to be Broken!</uiName>
</InstallTask>
<InstallTask>
<Id>RogueModuleElites</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Challenging Content! This Includes extremely powerful random Encounters.\n\nAre you sure you want to enable?;;Yes, Send the Munchkins!;;No</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/RogueElites</sourcePath>
<targetPath>Optionals/RogueElites</targetPath>
<uiDescription>!Extremely Challenging Content! Customs and Pilots that push the Limits of whats Possible. +2% Online Progress.</uiDescription>
<uiName>Elite Pilots and Mechs - Lances and Contracts to face Superior Skilled Forces.</uiName>
</InstallTask>
<InstallTask>
<Id>RISCtechmodule</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.01</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Challenging Content! This Includes extremely powerful random Encounters.\n\nAre you sure you want to enable?;;Let's RISC it!;;No</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/RISCtech</sourcePath>
<targetPath>Optionals/RISCtech</targetPath>
<uiDescription>!Challenging Content! Post Dark Age Technology Unit's and Combined Arm's Lances. +1% Online Progress.</uiDescription>
<uiName>Republic Institute of Strategic Combat - Black Ops R&D</uiName>
</InstallTask>
<InstallTask>
<Id>RogueSociety</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.01</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>This content is not canonical.\n\nAre you sure you want to enable?;;Yes, Science Rules!;;No, Science Dumb.</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/RogueSociety</sourcePath>
<targetPath>Optionals/RogueSociety</targetPath>
<uiDescription>Unleash the desperate technologies and prototypes of the Society as they try to topple the Warrior Caste during the Wars of Reaving. +1% Online Progress.</uiDescription>
<uiName>The Rogue Society</uiName>
</InstallTask>
<InstallTask>
<Id>Superheavys</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.05</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Challenging Content! These Behemoths will walk over you if unprepared.\n\nAre you sure you want to enable?;;Yes, Stompys!;;No</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Superheavys</sourcePath>
<targetPath>Optionals/Superheavys</targetPath>
<uiDescription>!Challenging Content! End Game Content: Challenge Units above 100 Ton's, the Leviathans of the Modern Battlefield. +5% Online Progress.</uiDescription>
<uiName>Superheavys - Oversized Mechs&Tanks and their Missions by LadyAlekto&CargoVroom</uiName>
</InstallTask>
<InstallTask>
<Id>UrbieNuke</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Warning! Everyone will have access to Nuclear Weapons.\n\nAre you sure you want to enable?;;Yes, Nuke me from Orbit!;;No Way</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/NuclearWeapons</sourcePath>
<targetPath>Optionals/NuclearWeapons</targetPath>
<uiDescription>!Very Challenging Content! Nuclear Weapons, they are what they say they are! DO EXPECT TO BE WIPED INSTANTLY!</uiDescription>
<uiName>Nuclear Weapon Carriers - The RT Team</uiName>
</InstallTask>
<InstallTask>
<Id>ExperimentalWeapons</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Challenging Content! These Prototypes will mince you up.\n\nAre you sure you want to enable?;;Yes, Bring it!;;No</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/ExperimentalWeapons</sourcePath>
<targetPath>Optionals/ExperimentalWeapons</targetPath>
<uiDescription>!Challenging Content! Prototypes and Experimental Technologys. +2% Online Progress.</uiDescription>
<uiName>Experimental Weapons - by MXMach and Harkonnen </uiName>
</InstallTask>
<InstallTask>
<Id>Quicsell</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Quicsell</sourcePath>
<targetPath>Optionals/Quicsell</targetPath>
<uiDescription>A Selection of Knockoff Components and Equipment. +2% Online Progress.</uiDescription>
<uiName>QuicSell - Bestest Value Prices! - by PlateGlassArmor</uiName>
</InstallTask>
<InstallTask>
<Id>Quicksell Customs</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/QuicksellCustoms</sourcePath>
<targetPath>Optionals/QuicksellCustoms</targetPath>
<uiDescription>A collection of goofy custom mechs using QuicSell equipment. Requires QuicSell module.</uiDescription>
<uiName>QuicSell Custom Mechs - by Kagorus</uiName>
</InstallTask>
<InstallTask>
<Id>Eventualities</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.01</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Eventualities</sourcePath>
<targetPath>Optionals/Eventualities</targetPath>
<uiDescription>Various events based on Squid Game, tacos and the journeys between the stars. +1% Online Progress.</uiDescription>
<uiName>Eventualities - by Dark Khaos</uiName>
</InstallTask>
<InstallTask>
<Id>Operation Revival</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.01</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Adds new Clan toys. Be prepared for a challenge!\n\nAre you sure you want to enable?;;Yes, Hit me!;;No</promptText>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/OperationRevival</sourcePath>
<targetPath>Optionals/OperationRevival</targetPath>
<uiDescription>Units from the Operation Revival fan TRO series. Used with original authors permission. +1% Online Progress.</uiDescription>
<uiName>Operation Revival - by Raza5 and sharlin</uiName>
</InstallTask>
<InstallTask>
<Id>ConcreteJungle</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.02</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueTechOptionals</optionGroupId>
<promptConfirmation>true</promptConfirmation>
<promptText>Challenging Content! Urban Biomes will be rough.\n\nAre you sure you want to enable?;;BASEMENT DEMOLISHERS WOOO!!;;No</promptText>
<saveBreaking>false</saveBreaking>
<sourcePath>InstallOptions/ConcreteJungle</sourcePath>
<targetPath>Options/ConcreteJungle</targetPath>
<uiDescription>Urban Biomes my includes ambushes, traps and destroyed environment. +2% Online Progress.</uiDescription>
<uiName>Change Urban Biomes to wartorn Nightmares</uiName>
</InstallTask>
<InstallTask>
<Id>RogueFlashPointModuleStoryline</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/RogueFlashPointModuleStoryline</sourcePath>
<targetPath>Flashpoints/RogueFlashPointModuleStoryline</targetPath>
<uiDescription>Story line of the Arano Restoration, as told by Duncan Fisher over some Drinks</uiDescription>
<uiName>Arano Restoration Story as Flashpoint - by Akodoreign</uiName>
</InstallTask>
<InstallTask>
<Id>LV426</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/LV426</sourcePath>
<targetPath>Flashpoints/LV426</targetPath>
<uiDescription>!Very Challenging Content! Explore a uninhabited Asteroid and recover the Black Marauder</uiDescription>
<uiName>LV-426 Flashpoint&Units - The RT Team</uiName>
</InstallTask>
<InstallTask>
<Id>TheDronesOfSyberia</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/TheDronesOfSyberia</sourcePath>
<targetPath>Flashpoints/The Drones Of Syberia</targetPath>
<uiDescription>Based on the Nebula California Sourcebook, series of Flashpoints</uiDescription>
<uiName>Drones of Syberia- Barely Canon FP - by Akodoreign</uiName>
</InstallTask>
<InstallTask>
<Id>Heretek</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/Heretek</sourcePath>
<targetPath>Flashpoints/Heretek</targetPath>
<uiDescription>A misjump brings unexpected guests</uiDescription>
<uiName>Heretek - Very much Not-Canon - by AkodoReign and LadyAlekto </uiName>
</InstallTask>
<InstallTask>
<Id>SuperHeavyFlashpoints</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/Superheavys</sourcePath>
<targetPath>Flashpoints/Superheavys</targetPath>
<uiDescription>Flashpoints bringing the Heaviest Metal - Requires Flashpoint and Superheavy Module</uiDescription>
<uiName>Superheavy Flashpoints - by AkodoReign</uiName>
</InstallTask>
<InstallTask>
<Id>FP_FightingGhosts</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/FightingGhosts</sourcePath>
<targetPath>Flashpoints/FightingGhosts</targetPath>
<uiDescription> Flashpoints Series created by Ablomis.</uiDescription>
<uiName>Legends Series - by Ablomis </uiName>
</InstallTask>
<InstallTask>
<Id>TukayyidRT</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>RogueFlashpoints</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>Optionals/Flashpoints/Tukayyid</sourcePath>
<targetPath>Flashpoints/Tukayyid</targetPath>
<uiDescription> Tukayyid Flashpoint created by Ablomis.</uiDescription>
<uiName>Battle of Tukayyid - by Ablomis </uiName>
</InstallTask>
<InstallTask>
<Id>BTAPilots</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>true</isSelected>
<jobType>Install</jobType>
<optionGroupId>PilotMods</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>InstallOptions/Pilots/BT_Advanced_Pilots</sourcePath>
<targetPath>Options/Pilots/BT_Advanced_Pilots</targetPath>
<uiDescription>Pilots that can be Hired based on the Modding Community</uiDescription>
<uiName>Pilots of the Modding Communty - The BTA Team</uiName>
</InstallTask>
<InstallTask>
<Id>JarnfolkPilots</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>
<isSelected>false</isSelected>
<jobType>Install</jobType>
<optionGroupId>PilotMods</optionGroupId>
<promptConfirmation>false</promptConfirmation>
<promptText/>
<saveBreaking>true</saveBreaking>
<sourcePath>InstallOptions/Pilots/JarnfolkPilots</sourcePath>
<targetPath>Options/Pilots/JarnfolkPilots</targetPath>
<uiDescription>Pilots that can be Hired based on the Jarnfolk</uiDescription>
<uiName>Jarnfolk Pilots - Werecat101</uiName>
</InstallTask>
<InstallTask>
<Id>OmegaSquad</Id>
<canSelect>true</canSelect>
<difficultyModifier>0.0</difficultyModifier>
<excludePaths>log.txt</excludePaths>
<influenceMode>0</influenceMode>