The 'auto-loader'(s) only load into a profile so that you don't have to navigate through the folder directories to find the proper profile for your character.
After the auto-loader loads into the profile, it no longer has any control over the bot. So no configurations could be made on the auto-loaders to fix your issue.
Currently, the profiles use what's called "Checkpoints" to skip quests if they're too low for your level.
These checkpoints are only checked when you start the bot
or when the bot reaches a 'checkpoint' line in the profile.
The checkpoints aren't checked passively while you're leveling.
So if the bot never reaches a 'checkpoint' line in the profile, it will continue doing the quests regardless of level.
The only immediate solution to having the bot skip quests is to stop and start the bot. This will cause the checkpoints to be checked again.
Alternatively, you could try writing a hook or plugin that will stop and start the bot automatically once you level.
Here's an example of a hook that should restart the profile upon leveling:
PHP:
<CustomBehavior File="RunCode" Type="Definition" Code="int StartLevel = StyxWoW.Me.Level;" /> <!-- Store your starting level as a int Variable -->
<CustomBehavior File="WaitTimer" WaitTime="500" />
<CustomBehavior File="Hooks\DoWhen" ActivityName="LoadAutoLoader_OnLevelUp" AllowUseWhileMounted="true" UseWhen="StartLevel != StyxWoW.Me.Level" >
<CustomBehavior File="RunCode" Code="Logging.Write(System.Windows.Media.Colors.Yellow, "[Profile Notification]: We leveled! Loading Auto-Loader.");" />
<CustomBehavior File="RunCode" Code="ProfileManager.LoadNew(Utilities.AssemblyDirectory + "\\Default Profiles\\Questing Profile Pack\\Auto Loader - v2.xml");" />
</CustomBehavior>
To utilize this code, you must paste it into every profile that your bot is going to be running.
(eg: each level range profile: 1-5, 5-12, 12-58 - etc)
You'd paste it directly under the
<QuestOrder> tag in each of the profiles so that it activates as soon as your bot starts.
But be wary: if you use this, there's a chance that the profile <Checkpoints ... /> will cause the bot to skip specific quests needed to unlock other quests.
If this happens, your bot will hard-stop since it can't pick up the next quest in the chain.