Discussion [Request] - MissionCompleted event - Rewards

Hi,

It would be nice if the information about additional rewards would be included into MissionCompleted event. Since missions could be rewarded by additional influence, it might be connected to BGS but we have no info about it in journal logfile. Also, is it possible to add an information about reputation and influence from MissionAccepted event? For now I've got something like this:
Code:
{
    "timestamp": "2018-03-03T21:51:04Z",
    "event": "MissionAccepted",
    "Faction": "The Winged Hussars",
    "Name": "Mission_Courier",
    "LocalisedName": "Courier job available",
    "TargetFaction": "Asture Incorporated",
    "DestinationSystem": "Asture",
    "DestinationStation": "Ford Installation",
    "Expiry": "2018-03-04T21:47:03Z",
    "Influence": "Med",
    "Reputation": "Med",
    "Reward": 96840,
    "MissionID": 330307745
}
MissionCompleted:
Code:
{
    "timestamp": "2018-03-03T21:58:37Z",
    "event": "MissionCompleted",
    "Faction": "The Winged Hussars",
    "Name": "Mission_Courier_name",
    "MissionID": 330307745,
    "TargetFaction": "Asture Incorporated",
    "DestinationSystem": "Asture",
    "DestinationStation": "Ford Installation",
    "Reward": 18817,
    "FactionEffects": [{
            "Faction": "Asture Incorporated",
            "Effects": [{
                    "Effect": "$MISSIONUTIL_Interaction_Summary_boom_up;",
                    "Effect_Localised": "",
                    "Trend": "UpGood"
                }],
            "Influence": [{
                    "SystemAddress": 670685472209,
                    "Trend": "UpGood"
                }],
            "Reputation": "UpGood"
        }, {
            "Faction": "The Winged Hussars",
            "Effects": [{
                    "Effect": "$MISSIONUTIL_Interaction_Summary_boom_up;",
                    "Effect_Localised": "",
                    "Trend": "UpGood"
                }],
            "Influence": [{
                    "SystemAddress": 125864764604,
                    "Trend": "UpGood"
                }],
            "Reputation": "UpGood"
        }]
}
There is no information about additional rewards I've chosen (Influence).
I'd like to kindly ask you to add an Influence, Reputation and additional rewards information to MissionCompleted event.
 
Last edited:
Noted (ref ED-94366) for one of the Missions team to look at

Thanks!!! However!

Please, have in mind, that three grades of influence (low\Med\High) is not enough for +++++ missions now.

I think, that it'll be good to introduce new fields in MissionCompleted event, something like CommonInfluence and CommonReputation for both factions involved. With numeric data - perfect for BGS parsers.

By the way - I may convert "SystemAddress": 125864764604 to system name (by making a table, and\or based on on data in other mission related records), but it'll be better 2 have system name here - more "human readable" indeed
 
Last edited:
This would be awesome. Just got a faction in game (yay) and i'm looking to make a EDMC plugin to track our faction's total influence per day via these entries, so please please implement this
 
Top Bottom