XCOM 2
[LWOTC] Multiple SitReps and Categories (Reimagined)
 This topic has been pinned, so it's probably important
Styrium  [developer] 3 May @ 7:00am
Config Copy-Paste Setup Sharing
If anyone has put in the work to categorize modded SitReps and wants to share their work with the class, this is the place!
< >
Showing 1-12 of 12 comments
Hi, did I set up the groups correctly?

[LWOTC_SitRepHandler.X2DownloadableContentInfo_LWOTC_SitRepHandler]
DLCIdentifier="LWOTC_SitRepHandler"

;_____________________________________________________________________________________________
;***********************
; General Config
;***********************

;>>MaxNumSitReps: int -- how many SitRep rolls will be attempted.
;>>RegularSitRepChance: float (0-1) -- the percentage chance that a SitRep will be added to a
; given mission; this check will be made a number of times equal to the MaxNumSitReps set.
;For a chance of 0.33 and a max of 3: 30% = 0, 44% = 1, 22% = 2, 4% = 3;
;>>DefaultSitRepWeight: int -- the weight given to all uncategorized SitReps; set this to 0
; and uncategorized SitReps will never appear in-game. If you don't plan on setting custom
; categories below, this value does not matter as long as it's positive.
MaxNumSitReps = 3
RegularSitRepChance = 1
DefaultSitRepWeight = 10

;Not Implemented Yet
;MaxDESitReps
;DESitRepChance
;DefaultDESitRepWeight = 10

;_____________________________________________________________________________________________
;***********************
; SitRep Groupings
;***********************
;Use this if you want to make certain SitReps mutually exclusive with each other without
; affecting their spawn likelyhood.

;>>SitRepGroupings<<
; SitReps: an array of the SitReps that should be grouped together and made mutually exclusive.
;Be aware that a single SitRep can't be in multiple Groupings at once.


;Example Config:
;+SitRepGroupings=(SitReps=("ShowOfForce", "PsionicStorm", "Savage", "Automated Defenses"))




;_____________________________________________________________________________________________
;***********************
; SitRep Categories
;***********************
;Use this if you wanna change the likelyhood of rolling certain SitReps over others.

;>>SitRepCategories/DESitRepCategories:<<
; CategoryName: Name referenced in Handle_SitRep.
; CategoryWeight: Int representing the chance of this category getting rolled
; (out of all the weights added up); if left at 0 this group will never be rolled.
; MutuallyExclusive: True/False - if true, SitReps from this category won't show up together.
; MaxAmount: Int representing how many SitReps from this category can show up at once
; (if MutuallyExclusive is set to true this will be ignored).
;>>Handle_SitRep<<
; SitRep: Name of the SitRep, its TemplateName.
; Category: Which category's list to add this SitRep to.
; DarkEvent: Set to True if this SitRep refers to a DE, omit if false (DE SitReps not supported)
;You can include Lost SitReps in the list just be aware that LWOTC might yeet it from the mission
; using its own logic


;Example Config:
;Array examples
;+SitRepCategories=(CategoryName="Group1", CategoryWeight=10, MutuallyExclusive=false, MaxAmount=2)
;+Handle_SitRep=(SitRep="SomeSitRep", Category="Group1")
;
;Some implementation example
;+SitRepCategories=(CategoryName="Lost", CategoryWeight=90)
;+Handle_SitRep=(SitRep="TheLost", Category="Lost")
;+Handle_SitRep=(SitRep="TheHorde", Category="Lost")


;+SitRepCategories=(CategoryName="Lost", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
;+Handle_SitRep=(SitRep="TheLost", Category="Lost")
;+Handle_SitRep=(SitRep="TheHorde", Category="Lost")

;+SitRepCategories=(CategoryName="ADVENT", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
;+Handle_SitRep=(SitRep="ShowOfForce", Category="ADVENT")
;+Handle_SitRep=(SitRep="PsionicStorm", Category="ADVENT")
;+Handle_SitRep=(SitRep="Savage", Category="ADVENT")
;+Handle_SitRep=(SitRep="AutomatedDefenses", Category="ADVENT")
;+Handle_SitRep=(SitRep="AdventFieldTraining", Category="ADVENT")
;+Handle_SitRep=(SitRep="CerberusForces", Category="ADVENT")
;+Handle_SitRep=(SitRep="TerminusForces", Category="ADVENT")
;+Handle_SitRep=(SitRep="CollectorsForces", Category="ADVENT")

;+SitRepCategories=(CategoryName="Misc Sitreps", CategoryWeight=50, MutuallyExclusive=false, MaxAmount=2)
;+Handle_SitRep=(SitRep="Surgical", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="LootChests", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="HighExplosives", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="ResistanceContacts", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="StealthInsertion", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="LowProfile", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="ShadowSquad", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="LocationScout", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="InformationWarSitrep", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="PrivateChannelSitRep", Category="Misc Sitreps")
;+Handle_SitRep=(SitRep="MentalFortitude", Category="Misc Sitreps")

;+SitRepCategories=(CategoryName="The Hive", CategoryWeight=35, MutuallyExclusive=true, MaxAmount=1)
;+Handle_SitRep=(SitRep="TheHive", Category="The Hive")
;+Handle_SitRep=(SitRep="HiveRoyalty", Category="The Hive")
;+Handle_SitRep=(SitRep="AdventHive", Category="The Hive")
;+Handle_SitRep=(SitRep="HiveVanguard", Category="The Hive")

;+SitRepCategories=(CategoryName="Merc incursions", CategoryWeight=35, MutuallyExclusive=true, MaxAmount=1)
;+Handle_SitRep=(SitRep="MercenariesIncursion", Category="Merc incursions")
;+Handle_SitRep=(SitRep="CerberusIncursion", Category="Merc incursions")
;+Handle_SitRep=(SitRep="CollectorsIncursion", Category="Merc incursions")
;+Handle_SitRep=(SitRep="HereticGethIncursion", Category="Merc incursions")

;+SitRepCategories=(CategoryName="Raider Incursions", CategoryWeight=70, MutuallyExclusive=falce, MaxAmount=2)
;+Handle_SitRep=(SitRep="CultistIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="PhantomIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="MarauderIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="RaiderIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="RogueXComIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="CerberusIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="CollectorsIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="TerminusIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="GOCIncursion", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="GOCDeathSquad", Category="Raider Incursions")
;+Handle_SitRep=(SitRep="RaiderFactionHereticGeth", Category="Raider Incursions")

;+SitRepCategories=(CategoryName="Resistance Heroes", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
;+Handle_SitRep=(SitRep="SRHIncursion", Category="Resistance Heroes")
;+Handle_SitRep=(SitRep="TRHIncursion", Category="Resistance Heroes")
;+Handle_SitRep=(SitRep="RRHIncursion", Category="Resistance Heroes")
;+Handle_SitRep=(SitRep="ARHIncursion", Category="Resistance Heroes")
Styrium  [developer] 10 May @ 6:23am 
@venom 277 First you need to delete the ";" from the start of the lines you've added. The semicolon is a sign for the parser to ignore that line (if you look at it in AML it'll show up as green even). Secondly, there's one "falce" that snuck by you. And lastly, if you keep the RegularSitRep chance as 1, every mission will have 3 SitReps, but if that's intended go wild. And just as a personnal note, if you roll more than one Raider Faction, they'll be on the same team and, thus, will not fight each other (besides, most of them have their own logic to make them mutually exclusive with each other)
venom277 10 May @ 8:36am 
Thanks for the tips. Now I figured it out and will gradually continue to modify your mod for myself.
For WOTC I installed mods and caught many divine situations. When Lost and Hive they attacked with crazy hordes, Advent and raiders fought them off, and I tried to complete the mission in this whole circus. I would like to restore that very feeling of crazy enjoyment of an unpredictable game))
some requiem sitreps to add to the misc sitreps
+Handle_SitRep=(SitRep="ARFMAmbush", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMBrittleness", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHighground", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMOverwatchWeakness", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAlienArmor", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHairTrigger", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHazmatCleanup", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHighAlert", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAlienShields", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMXCOMDeepCover", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMXCOMGrenades", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMXCOMShields", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMRAG", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMMedicalSurplus", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMMedicalEmbargo", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMFreeReloads", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMExtraAmmo", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMWavesAssault", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAdvancedEnemies", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMRapidReconcealment", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMGnawingDread", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMExtraAction", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMMunitionsCache", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAdventDefectors", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMWeakEnemies", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMImmortalPursuit", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHazmatLoots", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMChryssalidPlanet", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMDEFortress", Category="Misc Sitreps")

more faction sitreps
+Handle_SitRep=(SitRep="NightsisterCoven", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="SneFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="MahFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FieFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="HmdFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="PecFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="AsmFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="MolFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="SamFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="DrmFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="GOCForces", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationForces", Category="Raider Incursions")
+Handle_SitRep=(SitRep="ChaosIncursion", Category="Raider Incursions")

I'm assuming if you dont have the mod for the sitreps it just wont pick it
Originally posted by venom277:
Thanks for the tips. Now I figured it out and will gradually continue to modify your mod for myself.
For WOTC I installed mods and caught many divine situations. When Lost and Hive they attacked with crazy hordes, Advent and raiders fought them off, and I tried to complete the mission in this whole circus. I would like to restore that very feeling of crazy enjoyment of an unpredictable game))

if you want even more chaos change the config for nightsisters and rogue xcom
and remove the exlude gameplay tags for all factions so if they appear they will come as a buff to the other factions.
then move the geth faction to e team one and change all the exclusions to the same as mocx
then go into the raiders character stats and set the ones you want to randomise
Styrium  [developer] 13 May @ 1:30pm 
hm... I didn't quite account for SitReps being added when you don't really have the mods for them. I should probably patch it so it properly none-checks stuff
+Handle_SitRep=(SitRep="FoundationIncursionLITE1", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationIncursionLITE2", Category="Raider Incursions")

if you're using the lite version
only popped into my head about the not having mods incase someone came in and just blindly copied all of this down
Styrium  [developer] 13 May @ 1:44pm 
Originally posted by spooky ghost:
only popped into my head about the not having mods incase someone came in and just blindly copied all of this down

Yeah for sure, it's good practice with config-oriented stuff to account for user error as well. The patch should be out in a few :)
Everything Ive found in my modlist so far,
for anyone that wants one big copy paste
you might want to move some around as my configs are most likely different to yours.
mainly Requiem, LWOTC, TedJam and all the raider factions i have.

+SitRepCategories=(CategoryName="Lost", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="TheLost", Category="Lost")
+Handle_SitRep=(SitRep="TheHorde", Category="Lost")

+SitRepCategories=(CategoryName="ADVENT", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="ShowOfForce", Category="ADVENT")
+Handle_SitRep=(SitRep="PsionicStorm", Category="ADVENT")
+Handle_SitRep=(SitRep="Savage", Category="ADVENT")
+Handle_SitRep=(SitRep="AutomatedDefenses", Category="ADVENT")
+Handle_SitRep=(SitRep="AdventFieldTraining", Category="ADVENT")
+Handle_SitRep=(SitRep="CerberusForces", Category="ADVENT")
+Handle_SitRep=(SitRep="TerminusForces", Category="ADVENT");
+Handle_SitRep=(SitRep="CollectorsForces", Category="ADVENT")
+Handle_SitRep=(SitRep="BioTroopDeployment", Category="ADVENT")
+Handle_SitRep=(SitRep="BioPurge", Category="ADVENT")
+Handle_SitRep=(SitRep="FrostTroopDeployment", Category="ADVENT")
+Handle_SitRep=(SitRep="FrostPurge", Category="ADVENT")
+Handle_SitRep=(SitRep="DromeDome", Category="ADVENT")
+Handle_SitRep=(SitRep="AHWPraetorianDeployment", Category="ADVENT")
+Handle_SitRep=(SitRep="AHWPraetorianLeaders", Category="ADVENT")
+Handle_SitRep=(SitRep="AHWSitrep_SpecialTurrets", Category="ADVENT")

+SitRepCategories=(CategoryName="Misc Sitreps", CategoryWeight=50, MutuallyExclusive=false, MaxAmount=2)
+Handle_SitRep=(SitRep="Surgical", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="LootChests", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="HighExplosives", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ResistanceContacts", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="StealthInsertion", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="LowProfile", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ShadowSquad", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="LocationScout", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="InformationWarSitrep", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="PrivateChannelSitRep", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="MentalFortitude", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAmbush", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMBrittleness", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHighground", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMOverwatchWeakness", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAlienArmor", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHairTrigger", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHazmatCleanup", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHighAlert", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAlienShields", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMXCOMDeepCover", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMXCOMGrenades", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMXCOMShields", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMRAG", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMMedicalSurplus", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMMedicalEmbargo", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMFreeReloads", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMExtraAmmo", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMWavesAssault", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAdvancedEnemies", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMRapidReconcealment", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMGnawingDread", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMExtraAction", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMMunitionsCache", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMAdventDefectors", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMWeakEnemies", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMImmortalPursuit", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMHazmatLoots", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMChryssalidPlanet", Category="Misc Sitreps")
+Handle_SitRep=(SitRep="ARFMDEFortress", Category="Misc Sitreps")

+SitRepCategories=(CategoryName="The Hive", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="TheHive", Category="The Hive")
+Handle_SitRep=(SitRep="HiveRoyalty", Category="The Hive")
+Handle_SitRep=(SitRep="AdventHive", Category="The Hive")
+Handle_SitRep=(SitRep="HiveVanguard", Category="The Hive")

+SitRepCategories=(CategoryName="Merc incursions", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="MercenariesIncursion", Category="Merc incursions")
+Handle_SitRep=(SitRep="CerberusIncursion", Category="Merc incursions")
+Handle_SitRep=(SitRep="CollectorsIncursion", Category="Merc incursions")
+Handle_SitRep=(SitRep="HereticGethIncursion", Category="Merc incursions")
+Handle_SitRep=(SitRep="RaiderFactionHereticGeth", Category="Merc incursions")
+Handle_SitRep=(SitRep="MOCX", Category="Merc incursions")

+SitRepCategories=(CategoryName="Raider Incursions", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="CultistIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="PhantomIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="MarauderIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="RaiderIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="RogueXComIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="CerberusIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="CollectorsIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="TerminusIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="GOCIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="GOCDeathSquad", Category="Raider Incursions")
+Handle_SitRep=(SitRep="NightsisterCoven", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="SneFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="MahFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FieFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="HmdFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="PecFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="AsmFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="MolFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="SamFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="DrmFoundationIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="GOCForces", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationForces", Category="Raider Incursions")
+Handle_SitRep=(SitRep="ChaosIncursion", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationIncursionLITE1", Category="Raider Incursions")
+Handle_SitRep=(SitRep="FoundationIncursionLITE2", Category="Raider Incursions")

+SitRepCategories=(CategoryName="Resistance Heroes", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="SRHIncursion", Category="Resistance Heroes")
+Handle_SitRep=(SitRep="TRHIncursion", Category="Resistance Heroes")
+Handle_SitRep=(SitRep="RRHIncursion", Category="Resistance Heroes")
+Handle_SitRep=(SitRep="ARHIncursion", Category="Resistance Heroes")

+SitRepCategories=(CategoryName="Faction Buffers", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="NightsisterCoven", Category="Faction Buffers")
+Handle_SitRep=(SitRep="RogueXComIncursion", Category="Faction Buffers")

+SitRepCategories=(CategoryName="M.E.M.E", CategoryWeight=50, MutuallyExclusive=true, MaxAmount=1)
+Handle_SitRep=(SitRep="sMEMEbot", Category="M.E.M.E")
+Handle_SitRep=(SitRep="GriffinTDollSupport", Category="M.E.M.E")
Could I see what things would look like for some of the sitrep mods I have? Namely -
Black Legion
Dark Eldar Raiders
Faction Heroes Sitrep by Alpha115
Robotic Raider Faction [Beta]

Edit: My bad on that one and thanks.
Last edited by wolfboyrota79; 28 May @ 12:05pm
+Handle_SitRep=(SitRep="BlackLegion", Category="Example")
+Handle_SitRep=(SitRep="DarkEldarRaiders", Category="Example")
+Handle_SitRep=(SitRep="DarkEldarDomination", Category="Example")
+Handle_SitRep=(SitRep="RoboticRaider", Category="Example")


Alpha115 faction heroes was already there

+Handle_SitRep=(SitRep="SRHIncursion", Category="Resistance Heroes")
+Handle_SitRep=(SitRep="TRHIncursion", Category="Resistance Heroes")
+Handle_SitRep=(SitRep="RRHIncursion", Category="Resistance Heroes")
+Handle_SitRep=(SitRep="ARHIncursion", Category="Resistance Heroes")
< >
Showing 1-12 of 12 comments
Per page: 1530 50