Merge pull request #820 from nolt/feature-bots

(cherry picked from commit b10de0645a869485fbb5771a739abd06b5708c2d)
This commit is contained in:
sven-n
2026-07-16 22:01:57 +02:00
committed by Acentech Dev
parent 8baf329654
commit d04cbecae3
58 changed files with 14856 additions and 62 deletions

View File

@@ -155,6 +155,26 @@ public sealed class MuHelperSettings : IMuHelperSettings
/// <summary>Gets a value indicating whether to use basic attack as fallback when the configured skill cannot be used.</summary>
public bool FallbackBasicAttack { get; init; }
/// <inheritdoc />
/// <remarks>Human MU Helper sessions drive their skills through the explicit client configuration, so this is always <c>false</c>.</remarks>
public bool AutoSelectBestSkill => false;
/// <inheritdoc />
/// <remarks>Human MU Helper sessions configure their buff slots explicitly, so this is always <c>false</c>.</remarks>
public bool AutoSelectBuffs => false;
/// <inheritdoc />
/// <remarks>The client-side MU Helper has no mana potion setting; this only exists for server-side bots.</remarks>
public bool UseManaPotion => false;
/// <inheritdoc />
/// <remarks>A human picked their hunting spot deliberately, so their offline session fights whatever is there.</remarks>
public bool OnlyHuntSafeMonsters => false;
/// <inheritdoc />
/// <remarks>Equipment progression is a server-side bot behavior only.</remarks>
public bool PickUpgradeItems => false;
/// <inheritdoc />
public override string ToString()
{