EDBGS/EDPlayerJournal/BGS-ODDITIES.md

130 lines
4.7 KiB
Markdown
Raw Permalink Normal View History

2022-11-09 10:47:39 +01:00
# BGS Oddities
This file gathers BGS related oddities, as well as bugs within the player journal.
## Bounty Vouchers without factions
Somtimes bounty vouchers do not have faction information listed in them. It is unclear
what caused this bug, and it is also unclear whether this bug still persists within
the game:
```json
{
"timestamp":"2021-10-07T14:57:50Z", "event":"RedeemVoucher",
"Type":"bounty", "Amount":20750,
"Factions":[ { "Faction":"", "Amount":500 }, { "Faction":"", "Amount":20250 }]
}
```
2022-11-25 17:45:13 +01:00
## Bounty vouchers show up twice
Sometimes bounty vouchers are redeemed twice. This happens because FDev writes out two
`RedeemVoucher` entries with the same values:
```
{ "timestamp":"2022-11-20T14:30:30Z", "event":"RedeemVoucher", "Type":"bounty", "Amount":3197549,
"Factions":[ { "Faction":"Nova Paresa", "Amount":3197549 } ] }
{ "timestamp":"2022-11-20T14:30:34Z", "event":"RedeemVoucher", "Type":"bounty", "Amount":4785831,
"Factions":[ { "Faction":"", "Amount":723175 }, { "Faction":"Nova Paresa", "Amount":3197549 }, { "Faction":"Prismatic Imperium", "Amount":4062656 } ] }
```
Two separate events (apart by four seconds) containing the same entries twice. This
happens when you turn in one bounty manually, and then click the "redeem all" button
again, which contains the already turned in vouchers.
2022-11-09 10:47:39 +01:00
## Combat zones
Combat zones receive no mention within the player journal whatsoever. There is no event
when one is lost, or won, or what sort of difficulty it was. It is technically possible
to deduce combat zones from the text messages you receive from the combat coordinators.
## Influence given to empty/non-existant factions
Mission can give negative reputation and influence to an non-faction. This happens when
you affect an asset that is not owned by anyone. For example, randomly generated surface
POIs sometimes do not have an owner. If you receive a scan, infiltrate, or sabotage mission
for such a POI, the non-existant owner receives negative influence, and you damage your
reputation with that non-existant owner:
```json
"FactionEffects": [
{
"Faction": "",
"Effects": [
{
"Effect": "$MISSIONUTIL_Interaction_Summary_EP_down;",
"Effect_Localised": "The economic status of $#MinorFaction; has declined in the $#System; system.",
"Trend": "DownBad"
}
],
"Influence": [
{
"SystemAddress": 251012319587,
"Trend": "DownBad",
"Influence": "+"
}
],
"ReputationTrend": "DownBad",
"Reputation": "+"
}
]
```
## No influence given to target or source faction
Sometimes neither the target faction, nor the source faction receive any influence. This
can happen because either the target faction, or the source faction - or both - are
currently in a conflict, and thus cannot receive any influence at the moment.
Systems that are influence locked also do not hand out influence to its factions.
```json
{
"timestamp": "2022-02-25T21:30:45Z",
"event": "MissionCompleted",
"Faction": "Social LHS 6103 Confederation",
"Name": "Mission_Courier_Elections_name",
"MissionID": 850025233,
"TargetFaction": "Delphin Blue Federal PLC",
"DestinationSystem": "Delphin",
"DestinationStation": "Aristotle Orbital",
"Reward": 122300,
"FactionEffects": [
{
"Faction": "Social LHS 6103 Confederation",
"Effects": [
{
"Effect": "$MISSIONUTIL_Interaction_Summary_EP_up;",
"Effect_Localised": "The economic status of $#MinorFaction; has improved in the $#System; system.",
"Trend": "UpGood"
}
],
"Influence": [],
"ReputationTrend": "UpGood",
"Reputation": "+"
},
{
"Faction": "Delphin Blue Federal PLC",
"Effects": [],
"Influence": [],
"ReputationTrend": "UpGood",
"Reputation": "+"
}
]
}
```
## Megaship scan missions both marked as abandoned and failed
Megaship missions that bug out, may both be marked as "abandoned", and "failed". It is
unclear which of these two counts. A failed mission has negative BGS implications, whereas
an abandoned mission should not.
```json
{ "timestamp":"2022-11-09T07:33:08Z", "event":"Missions", "Active":[ { "MissionID":899075054, "Name":"Mission_HackMegaship_name",
"PassengerMission":false, "Expires":51072 }, { "MissionID":899075080, "Name":"Mission_HackMegaship_name",
"PassengerMission":false, "Expires":51072 } ], "Failed":[ ], "Complete":[ ] }
{ "timestamp":"2022-11-09T08:23:59Z", "event":"MissionAbandoned", "Name":"Mission_HackMegaship_name", "MissionID":899075054 }
{ "timestamp":"2022-11-09T08:24:05Z", "event":"MissionFailed", "Name":"Mission_HackMegaship_name", "MissionID":899075054 }
```