Mission Influence tracking for BGS #2213
-
Hello team, I'm looking for a way to track total Influence gained for a faction across a game session, when running BGS missions. This is reported to the Squadron for BGS planning. Currently, I write down the Influence reward following each mission hand-in, sum the total and pop it on Discord at the end of a night. This is cumbersome because I play in VR, and thus would love to be able to track this automatically with EDDI/VA without the need to remove my headset. I can see the Is there any way to access influence reward on mission hand-in, other than trying to correlate the two events above via corresponding Much thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It seems that at some point FDev added a {
"timestamp": "2021-07-02T08:17:21Z",
"event": "MissionCompleted",
"Faction": "Noblemen of Nohock Ek",
"Name": "Mission_AltruismCredits_name",
"MissionID": 788930122,
"Donation": "450000",
"Donated": 450000,
"FactionEffects": [{
"Faction": "Noblemen of Nohock Ek",
"Effects": [{
"Effect": "$MISSIONUTIL_Interaction_Summary_EP_up;",
"Effect_Localised": "The economic status of $#MinorFaction; has improved in the $#System; system.",
"Trend": "UpGood"
}
],
"Influence": [{
"SystemAddress": 5067658962353,
"Trend": "UpGood",
"Influence": "++"
}
],
"ReputationTrend": "UpGood",
"Reputation": "++"
}
]
} Influence from the |
Beta Was this translation helpful? Give feedback.
It seems that at some point FDev added a
FactionEffects
property to theMissionCompleted
event which we currently do not parse.It should be possible to expose this data.