This commit is contained in:
2026-04-02 20:51:21 +02:00
parent 1e3c2b176d
commit 49156bcda4
2 changed files with 236 additions and 21 deletions

View File

@@ -11,6 +11,19 @@
<Button x:Name="StartButton" Content="Start Bot" Width="120"/>
<Button x:Name="StopButton" Content="Stop Bot" Width="120" IsEnabled="False"/>
<CheckBox x:Name="MultiplayerCheckBox" Content="Multiplayer" VerticalAlignment="Center"/>
<TextBlock Text="Aggro:" VerticalAlignment="Center"/>
<ComboBox x:Name="AggressivenessProfileBox" Width="150" SelectedIndex="2">
<ComboBoxItem Content="Conservative"/>
<ComboBoxItem Content="Balanced"/>
<ComboBoxItem Content="Aggressive"/>
<ComboBoxItem Content="Extreme"/>
</ComboBox>
<TextBlock Text="Mode Profile:" VerticalAlignment="Center"/>
<ComboBox x:Name="ModeOptimizationProfileBox" Width="200" SelectedIndex="0">
<ComboBoxItem Content="Auto"/>
<ComboBoxItem Content="Singleplayer Optimized"/>
<ComboBoxItem Content="Multiplayer Optimized"/>
</ComboBox>
<TextBlock Text="API Key:" VerticalAlignment="Center"/>
<TextBox x:Name="ApiKeyBox" Width="360" Watermark="GUID player token"/>
<TextBlock x:Name="StatusText" VerticalAlignment="Center" Text="Idle"/>