Compare commits

...

4 Commits

7 changed files with 36 additions and 3 deletions

View File

@ -26,7 +26,7 @@ public class InfluenceSupport : Transaction {
string? missionname; string? missionname;
if (RelevantMission != null && RelevantMission.Mission != null) { if (RelevantMission != null && RelevantMission.Mission != null) {
missionname = RelevantMission.Mission.LocalisedName; missionname = RelevantMission.Mission.FriendlyName;
} else { } else {
missionname = "UNKNOWN MISSION"; missionname = "UNKNOWN MISSION";
} }

View File

@ -60,7 +60,10 @@
<HierarchicalDataTemplate DataType="{x:Type local:Objective}" ItemsSource="{Binding UITransactions}" ItemContainerStyle="{StaticResource StretchingTreeViewStyle}"> <HierarchicalDataTemplate DataType="{x:Type local:Objective}" ItemsSource="{Binding UITransactions}" ItemContainerStyle="{StaticResource StretchingTreeViewStyle}">
<StackPanel Orientation="Horizontal"> <StackPanel Orientation="Horizontal">
<CheckBox Focusable="False" IsChecked="{Binding IsEnabled}" VerticalAlignment="Center"/> <CheckBox Focusable="False" IsChecked="{Binding IsEnabled}" VerticalAlignment="Center"/>
<TextBlock Text="{Binding Name}" Margin="5,0" /> <TextBlock Text="System: " Visibility="{Binding HasSystem}" Margin="5,0,0,0"/>
<TextBlock Text="{Binding System}" FontWeight="DemiBold" Visibility="{Binding HasSystem}"/>
<TextBlock Text="Faction: " Visibility="{Binding HasFaction}" Margin="5,0,0,0"/>
<TextBlock Text="{Binding Faction}" FontWeight="DemiBold" Visibility="{Binding HasFaction}"/>
</StackPanel> </StackPanel>
<HierarchicalDataTemplate.ItemTemplate> <HierarchicalDataTemplate.ItemTemplate>
<HierarchicalDataTemplate> <HierarchicalDataTemplate>

View File

@ -8,7 +8,7 @@ public class MinusFortyFiveConverter : IValueConverter {
/// <inheritdoc/> /// <inheritdoc/>
public object Convert( public object Convert(
object value, Type targetType, object parameter, CultureInfo culture) { object value, Type targetType, object parameter, CultureInfo culture) {
return (double)value - 45; return (double)value - 55;
} }
/// <inheritdoc/> /// <inheritdoc/>

View File

@ -79,6 +79,14 @@ public class Objective : IComparable<Objective> {
get { return UITransactions.Select(x => x.Transaction).ToList<Transaction>(); } get { return UITransactions.Select(x => x.Transaction).ToList<Transaction>(); }
} }
public Visibility HasSystem {
get { return string.IsNullOrEmpty(System) ? Visibility.Hidden : Visibility.Visible; }
}
public Visibility HasFaction {
get { return string.IsNullOrEmpty(Faction) ? Visibility.Hidden : Visibility.Visible; }
}
public string Name { public string Name {
get { return this.ToString(); } get { return this.ToString(); }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,21 @@
# Combat Zones
Starting with version 0.2.0, the EliteBGS tool will attempt to figure out when you
have participated in a combat zone.
Since there is no official journal entry for combat zones as of yet (Update 13), the
tool has to make an educated guess on what sort of combat zone it is.
For Odyssey on foot combat zones the tool can attempt to determine the difficulty
from the from the highest combat bond you have been awarded. Enforcers in high on foot
combat zones nets you roughly 88k credits, and the payout reduces from there.
Ship combat zones are more difficult. If you ship scan one of the warzone NPCs (either
a captain, spec ops, or a correspondent), the tool can assume you are either in a medium
or a high combat zone. If you get more than 10 kills, you are also either in a medium or
high combat zone (a low combat zone is complete with 8 kills).
None of this perfect however, and the tool *will* get it wrong. For your convenience there
are several small buttons next to the combat zone entry, where you can fix the result:
![combat zone](combatzone.png)

View File

@ -10,5 +10,6 @@ theme:
nav: nav:
- Overview: 'index.md' - Overview: 'index.md'
- "Detailed Description": 'description.md' - "Detailed Description": 'description.md'
- "Combat Zones": 'combatzones.md'
- FAQ: 'faq.md' - FAQ: 'faq.md'
- Changelog: 'CHANGELOG.md' - Changelog: 'CHANGELOG.md'