1
0
Fork 0
forked from aly/qstbak

qstcompanion v1.0.6

This commit is contained in:
alydev 2025-12-07 10:54:53 +10:00
parent 5e1e1decc5
commit ada27cf05b
30 changed files with 3403 additions and 426 deletions

View file

@ -47,10 +47,6 @@ public class StepsOfFaithHandler : IDisposable
public bool ShouldActivate(uint questId, bool isInSoloDuty)
{
if (!config.EnableAutoDutyUnsynced)
{
return false;
}
if (isActive)
{
return false;
@ -70,8 +66,10 @@ public class StepsOfFaithHandler : IDisposable
}
if (characterHandledStatus.GetValueOrDefault(characterName, defaultValue: false))
{
log.Debug("[StepsOfFaith] Character " + characterName + " already handled SoF - skipping");
return false;
}
log.Information("[StepsOfFaith] Handler will activate for " + characterName);
return true;
}
@ -108,11 +106,6 @@ public class StepsOfFaithHandler : IDisposable
}
log.Information("[StepsOfFaith] Waiting 25s for stabilization...");
Thread.Sleep(25000);
log.Information("[StepsOfFaith] Disabling Bossmod Rotation...");
framework.RunOnFrameworkThread(delegate
{
commandManager.ProcessCommand("/vbm ar disable");
});
log.Information("[StepsOfFaith] Moving to target position...");
framework.RunOnFrameworkThread(delegate
{