Compare commits
4 Commits
c7e2f352f2
...
6b14909335
Author | SHA1 | Date | |
---|---|---|---|
6b14909335 | |||
db67ef21fa | |||
f3134d36d4 | |||
1a53a3ba8d |
@ -26,7 +26,7 @@ public class InfluenceSupport : Transaction {
|
||||
string? missionname;
|
||||
|
||||
if (RelevantMission != null && RelevantMission.Mission != null) {
|
||||
missionname = RelevantMission.Mission.LocalisedName;
|
||||
missionname = RelevantMission.Mission.FriendlyName;
|
||||
} else {
|
||||
missionname = "UNKNOWN MISSION";
|
||||
}
|
||||
|
@ -60,7 +60,10 @@
|
||||
<HierarchicalDataTemplate DataType="{x:Type local:Objective}" ItemsSource="{Binding UITransactions}" ItemContainerStyle="{StaticResource StretchingTreeViewStyle}">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<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>
|
||||
<HierarchicalDataTemplate.ItemTemplate>
|
||||
<HierarchicalDataTemplate>
|
||||
|
@ -8,7 +8,7 @@ public class MinusFortyFiveConverter : IValueConverter {
|
||||
/// <inheritdoc/>
|
||||
public object Convert(
|
||||
object value, Type targetType, object parameter, CultureInfo culture) {
|
||||
return (double)value - 45;
|
||||
return (double)value - 55;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
@ -79,6 +79,14 @@ public class Objective : IComparable<Objective> {
|
||||
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 {
|
||||
get { return this.ToString(); }
|
||||
}
|
||||
|
BIN
EliteBGS/docs/combatzone.png
Normal file
BIN
EliteBGS/docs/combatzone.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
21
EliteBGS/docs/combatzones.md
Normal file
21
EliteBGS/docs/combatzones.md
Normal 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)
|
@ -10,5 +10,6 @@ theme:
|
||||
nav:
|
||||
- Overview: 'index.md'
|
||||
- "Detailed Description": 'description.md'
|
||||
- "Combat Zones": 'combatzones.md'
|
||||
- FAQ: 'faq.md'
|
||||
- Changelog: 'CHANGELOG.md'
|
||||
|
Loading…
Reference in New Issue
Block a user