What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Auto-loader for World Quests profiles made by Zinner

deusx

Member
Joined
Feb 1, 2010
Messages
206
All credits for quests go to Zinner. I just made a temp solution for auto-loader for his profiles until they come up with their intended autoloader plugin.

I am making new thread because i originally just commented in Zinner's thread and got burried with PMs and Discord messages to update and stuff. This way everyone interested in auto-loader can keep track of it

Quests here are mirrored from what Zinner puts out on his SVN with the small changes that makes possible for quest to load and be loaded by my auto-loader. I will try to keep it up-to-date, to update them here as soon as they release new quests.

Don't report quests not working here, report them to the respective developers. This is just loader for quest that Zinner releases.

https://svn.riouxsvn.com/autoloader/trunk/
 
All credits for quests go to Zinner. I just made a temp solution for auto-loader for his profiles until they come up with their intended autoloader plugin.

I am making new thread because i originally just commented in Zinner's thread and got burried with PMs and Discord messages to update and stuff. This way everyone interested in auto-loader can keep track of it

Quests here are mirrored from what Zinner puts out on his SVN with the small changes that makes possible for quest to load and be loaded by my auto-loader. I will try to keep it up-to-date, to update them here as soon as they release new quests.

Don't report quests not working here, report them to the respective developers. This is just loader for quest that Zinner releases.

https://svn.riouxsvn.com/autoloader/trunk/
thank you guys, i will test it later
 
It seems to get stuck in this loop

[Auto-Loader]: Finished World Quest 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner, loading auto-loader!
[LoadProfile-LoadPr(info)] Loading profile 'autoloader.xml'
Changing current profile to Auto-Loader
[Auto-Loader]: Loading profile 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner!
[LoadProfile-LoadPr(info)] Loading profile '41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner.xml'
Warning: Could not parse While body node
Changing current profile to [A-Quest] Smooth Leystone Deposits WorldQuest Zinner
Stopping the bot!
Bot stopping! Reason: User pressed the stop button
Starting the bot!
Currently Using BotBase : Questing
Current zone is Highmountain (Highmountain - Zone - World of Warcraft)
[Singular] Hotkey: To add a LOGMARK, press: [Shift+Alt+Ctrl+M]
[Singular] Your Level 110 Human Blood Death Knight Build is
[Singular] ... running the Questing bot in Highmountain
[Singular] ... Zone: Broken Isles using my SOLO Behaviors alone
[Auto-Loader]: Finished World Quest 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner, loading auto-loader!
[LoadProfile-LoadPr(info)] Loading profile 'autoloader.xml'
Changing current profile to Auto-Loader
Latency to Buddy service: 25 ms
[Auto-Loader]: Loading profile 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner!
[LoadProfile-LoadPr(info)] Loading profile '41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner.xml'
Warning: Could not parse While body node
Changing current profile to [A-Quest] Smooth Leystone Deposits WorldQuest Zinner
[Auto-Loader]: Finished World Quest 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner, loading auto-loader!
[LoadProfile-LoadPr(info)] Loading profile 'autoloader.xml'
Changing current profile to Auto-Loader
[Auto-Loader]: Loading profile 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner!
[LoadProfile-LoadPr(info)] Loading profile '41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner.xml'
Warning: Could not parse While body node
Changing current profile to [A-Quest] Smooth Leystone Deposits WorldQuest Zinner
[Auto-Loader]: Finished World Quest 41435-[N]-[QUEST]-Wq-Smooth Leystone Deposits-Zinner, loading auto-loader!
Stopping the bot!
Bot stopping! Reason: User pressed the stop button
 
he run to the qs point the open the map ,close the map ,the open the map ,just do one thing ...lol.
 
Working for me, but can't get it to ignore the danger quests. Tried deleting the .xml for the individual quests but then the auto loader stops working.
 
Once again. This is just to load the profiles for your available WQ. Any issue with quests (including infinite loops, wrong quest IDs, mounts and whistles) should be brought to developer's attention
 
It's a very big problem when it tries to do Aquatic Assosination... so many deaths of my toons. I've tryed to delete this quest from autoloader to continue botting

I've removed all "danger" and "wanted" quests from auto-loader :D
 

Attachments

Last edited:
Yeah mine is doing the same thing? Any fix for this?

Right click the autoloader and click edit, delete it all and paste it with this code.. I'm only doing this because people will be too stupid to figure out how to edit the autolaoder.. Thanks OP for the autoloader

<HBProfile xsi:noNamespaceSchemaLocation="../Schemas/EchoSchema.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>Auto Loader</Name>
<QuestOrder>
<CustomBehavior File="RunCode" Type="Definition"><![CDATA[
public class WorldQuestData
{
public int ID;
public string Name;
public DateTime ExpireTime;
}
public static class WorldQuestInfo
{
static List<WorldQuestData> _cache = new List<WorldQuestData>();
static internal bool _dirty = true;
static internal bool _setup = false;
static WorldQuestInfo()
{
Setup();
}
public static void Setup()
{
if (_setup)
return;
Lua.Events.AttachEvent("WORLD_MAP_UPDATE", WorldQuestMarkDirty);
Lua.Events.AttachEvent("SUPER_TRACKED_QUEST_CHANGED", WorldQuestMarkDirty);
Lua.Events.AttachEvent("WORLD_QUEST_COMPLETED_BY_SPELL", WorldQuestMarkDirty);
UpdateWorldQuests();
_setup = true;
}
public static void WorldQuestMarkDirty(object sender, LuaEventArgs args)
{
_dirty = true;
}
public static bool HasWorldQuest(int questid)
{
UpdateWorldQuests();
var quest = _cache.Where(q => q.ID == questid).FirstOrDefault();
if (quest == null || quest.ExpireTime <= DateTime.UtcNow)
return false;
return true;
}
public static void UpdateWorldQuests()
{
if (!_dirty)
return;
_cache = new List<WorldQuestData>();
var player = StyxWoW.Me;
int BrokenIslesMapArea = 1007;
var ret = Lua.GetReturnValues(string.Format("return C_MapCanvas.GetNumZones({0});", BrokenIslesMapArea));
var NumZones = int.Parse(ret[0]);
for (int i = 1; i <= NumZones; ++i)
{
ret = Lua.GetReturnValues(string.Format("return C_MapCanvas.GetZoneInfo({0}, {1});", BrokenIslesMapArea, i));
var ZoneID = int.Parse(ret[0]);
var ZoneName = ret[1];
var ZoneDepth = int.Parse(ret[2]);
if (ZoneDepth > 1) //Do not look at subzones
{
Logging.WriteDiagnostic(string.Format("Ignoring {0} ({1}) as ZoneDepth > 1 ({2})", ZoneID, ZoneName, ZoneDepth));
continue;
}
string ToRun = string.Format(@" local questids = {{}};
local taskInfo = C_TaskQuest.GetQuestsForPlayerByMapID({0}, {1});
if taskInfo then
for i, info in ipairs(taskInfo) do
if HaveQuestData(info.questId) then
if QuestMapFrame_IsQuestWorldQuest(info.questId) then
table.insert(questids, info.questId);
end
end
end
end
return unpack(questids);
", ZoneID, BrokenIslesMapArea);
ret = Lua.GetReturnValues(ToRun);
foreach (var q in ret)
{
int questid = int.Parse(q);
//TimeLeft is in minutes
var TimeLeft = Lua.GetReturnVal<int>(string.Format("return C_TaskQuest.GetQuestTimeLeftMinutes({0});", questid), 0);
var QuestInfo = Lua.GetReturnValues(string.Format("return C_TaskQuest.GetQuestInfoByQuestID({0});", questid));
Logging.WriteDiagnostic("WorldQuest {0} ({2}) active ({1}m left)", QuestInfo[0], TimeLeft, questid);
var data = new WorldQuestData();
data.ID = questid;
data.Name = QuestInfo[0];
data.ExpireTime = DateTime.UtcNow.AddMinutes(TimeLeft);
_cache.Add(data);
}
}
_dirty = false;
}
public static bool IsWorldQuest(int questid)
{
string lua = string.Format("tagID, tagName, worldQuestType, rarity, isElite, tradeskillLineIndex = GetQuestTagInfo({0});", questid);
var ret = Lua.GetReturnValues(lua);
if (ret[3] == null)
return false;
return true;
}
}
]]>
</CustomBehavior>

<If Condition="WorldQuestInfo.HasWorldQuest(40978)">
<CustomBehavior File="LoadProfile" ProfileName="40978-[N]-[QUEST]-Wq-Bears-Behaving-Badly-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41428)">
<CustomBehavior File="LoadProfile" ProfileName="41428-[N]-[QUEST]-Wq-Unstable-Portal-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41844)">
<CustomBehavior File="LoadProfile" ProfileName="41844-[N]-[QUEST]-Wq-WANTED Sekhan-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41965)">
<CustomBehavior File="LoadProfile" ProfileName="41965-[N]-[QUEST]-Wq-Lunarwing-Liberation-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43435)">
<CustomBehavior File="LoadProfile" ProfileName="43435-[N]-[QUEST]-Wq-The Battle Rages On-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43616)">
<CustomBehavior File="LoadProfile" ProfileName="43616-[N]-[QUEST]-Wq-WANTED Bodash the Hoarder-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43629)">
<CustomBehavior File="LoadProfile" ProfileName="43629-[N]-[QUEST]-WANTED-Kiranys-Duskwhisper-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44010)">
<CustomBehavior File="LoadProfile" ProfileName="44010-[N]-[QUEST]-Wq-WANTED Oreth the Vile-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43614)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wanted Vorthax-Pellepylly" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41705)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Assult_on_the_Thunder_Totem-Codex" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44033)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Aw_Nuts-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42119)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-A_Cleansing_Cocktai-WiNl" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41026)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Back to the Shadows-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41308)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Border Reinforcements-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41938)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Brothers of Skovald-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41622)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Crawliacs_Legacy_-_Highmountain_-_Win" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41095)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Critical Crops-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42798)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-DANGER Huntress Estrid-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44193)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-DANGER Sea King Tildross-WiN_super_dangerous" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43072)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-DANGER The Whisperer-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42964)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-DANGER-Lagertha-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44121)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-DANGER_Azjatar-Codex_super_dangerous" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41703)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-DANGER_Ormagrogg-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41024)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Dirge of the Dead-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41794)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Drakestalker-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(39424)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Everything-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41520)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Felwort-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41228)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Foxflower_Cluster-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42087)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Green Horror-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43332)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Grell_in_a_Handbasket-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42028)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Into_the_Nightmare-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42021)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Investigation at Mak'rana-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42101)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Language_of_the_Lost-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42169)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Left for Dead-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42211)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Leodraths_Kin-Codex" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44015)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Mal'Dreth the Corruptor-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42105)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Mixology-Mix-up-Aszuna-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42145)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Out_of_the_Woodwork-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43336)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Purge of the Nightmare-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43324)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Rage_of_the_Owlbeasts-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42123)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Reclaiming Llothien-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41416)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Retake_the_Skyhorn-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41926)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Returning Champion-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41927)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Ruining the Runewood-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41927)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Ruining_the_Runewood-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42076)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Shadowfen_Village-Win" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41551)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Slab of Bacon-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41552)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Slab_of_Bacon2-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(40920)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Stonebinder_Bounty-Codex" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41237)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Supplies Needed Stonehide Leather-Zinner-BUY 40 lether from ah-" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41984)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-The-Creeping-Mist-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41949)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-The_Drekirjar_Return-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42018)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Those_Beyond_Redemption-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43963)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Vampirates-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44017)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Apothecary Faldren-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42620)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Arcavellus-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44289)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Arru-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44305)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Bahagar-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43607)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Brogozog-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43455)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Devouring Darkness-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43428)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Doomlord Kazrok-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41819)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Gurbog da Basher-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43427)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Infernal Lord-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43625)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Nameless King-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(42795)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Sanaar-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(44300)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Seersei-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43619)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Shara Felbreath-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41838)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Slumber-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43450)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED Tiptog the Lost-Zinner" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(41824)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED_ArruNew-Quest-ID41824-Codex" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43434)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-WANTED_Fathnyr-WiN" RememberProfile="true" />
</If>
<If Condition="WorldQuestInfo.HasWorldQuest(43758)">
<CustomBehavior File="LoadProfile" ProfileName="[N]-[QUEST]-Wq-Wherever I May Gloam-Zinner" RememberProfile="true" />
</If>

</QuestOrder>
</HBProfile>
 
Right click the autoloader and click edit, delete it all and paste it with this code.. I'm only doing this because people will be too stupid to figure out how to edit the autolaoder.. Thanks OP for the autoloader


I did what you said, and I am getting the same thing. Open and closing of the maps. :(
 
Right click the autoloader and click edit, delete it all and paste it with this code.. I'm only doing this because people will be too stupid to figure out how to edit the autolaoder.. Thanks OP for the autoloader

I did that, even created a new file, but it is still opening&closing the map :(
 
My bad, thats just to remove the aquatic assassination quest.. It's opening and closing because the profile itself is bugged. Go report it to the dev.
 
Thanks a ton :)

Please, report the profile bugs to the profile devs, not here this just an autoloader for them
 
Anychance you can mybe make aplugin that has the option to choose what world events to complete i no its a hassle but ill donate if possible
 
Back
Top