Comment debugger une quête ?

Section Française de l'emulateur Dawn of light.

Moderators: Support Team, Other Language Team

Re: Comment debugger une quête ?

Postby NealWeiss » Sun Nov 23, 2014 3:31 pm

En fouillant dans la BD comme me l'a fait voir snoopydo, j'ai fait quelques modifications au niveau "quest" sur le personnage qui fait la quête. killtask à 1 pour le squelette, killtask à 1 pour le zombie, goal à 1 pour le squelette et goal à 1 pour le zombie = personnage qui ne peut plus se reconnecter sans faire crasher le game.dl. Par contre, si je met 0 en goal pour le squelette OU pour le zombie, je peux de nouveau connecter mon personnage. Le problème se situe donc au moment où l'on rempli les objectifs et avant de pouvoir choisir ses récompenses. Est ce un problème d'objets ? Le skeletonskull ou le zombieskin ? (j'ai vu en comparant d'autre quête que le script ne propose pas de les créer s'il sont absent de la BD) Les objets de récompenses?
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby NealWeiss » Sun Nov 23, 2014 3:46 pm

Code: Select all
/* * DAWN OF LIGHT - The first free open source DAoC server emulator * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Author: k109 * * Date: 12/5/07 * Directory: /scripts/quests/albion/ * * Compiled on SVN 905 * * Description: The "Cemmeths Orders" quest, mimics live US servers. */ using System; using DOL.Database; using DOL.Events; using DOL.Language; namespace DOL.GS.Quests.Albion { public class CemmethsOrders : RewardQuest { private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); protected static string questTitle = LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.QuestTitle"); protected const int minimumLevel = 4; protected const int maximumLevel = 7; private static GameNPC CemmethBudgwold = null; private QuestGoal SkeletonsKilled; private QuestGoal DecayingGhoulsKilled; private static ItemTemplate RecruitsQuiltedVest = null; private static ItemTemplate RecruitsLeatherJerkin = null; private static ItemTemplate RecruitsStuddedVest = null; public CemmethsOrders() : base() { Init(); } public CemmethsOrders(GamePlayer questingPlayer) : this(questingPlayer, 1) { } public CemmethsOrders(GamePlayer questingPlayer, int step) : base(questingPlayer, step) { Init(); } public CemmethsOrders(GamePlayer questingPlayer, DBQuest dbQuest) : base(questingPlayer, dbQuest) { Init(); } private void Init() { #region defineItems // item db check RecruitsQuiltedVest = GameServer.Database.FindObjectByKey<ItemTemplate>("k109_recruits_quilted_vest"); if (RecruitsQuiltedVest == null) { RecruitsQuiltedVest = new ItemTemplate(); RecruitsQuiltedVest.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text1"); if (log.IsWarnEnabled) log.Warn("Could not find " + RecruitsQuiltedVest.Name + ", creating it ..."); RecruitsQuiltedVest.Level = 5; RecruitsQuiltedVest.Weight = 20; RecruitsQuiltedVest.Model = 139; RecruitsQuiltedVest.Color = 28; RecruitsQuiltedVest.Object_Type = (int)eObjectType.Cloth; RecruitsQuiltedVest.Item_Type = (int)eEquipmentItems.TORSO; RecruitsQuiltedVest.Id_nb = "k109_recruits_quilted_vest"; RecruitsQuiltedVest.Price = Money.GetMoney(0,0,0,0,40); RecruitsQuiltedVest.IsPickable = true; RecruitsQuiltedVest.IsDropable = true; // can't be sold to merchand RecruitsQuiltedVest.DPS_AF = 6; RecruitsQuiltedVest.SPD_ABS = 0; RecruitsQuiltedVest.Bonus1 = 3; RecruitsQuiltedVest.Bonus1Type = (int)eProperty.Dexterity; RecruitsQuiltedVest.Bonus2 = 4; RecruitsQuiltedVest.Bonus2Type = (int)eProperty.Acuity; RecruitsQuiltedVest.Bonus3 = 1; RecruitsQuiltedVest.Bonus3Type = (int)eProperty.Resist_Spirit; RecruitsQuiltedVest.Bonus4 = 1; RecruitsQuiltedVest.Bonus4Type = (int)eProperty.Resist_Matter; RecruitsQuiltedVest.Quality = 100; RecruitsQuiltedVest.Condition = 50000; RecruitsQuiltedVest.MaxCondition = 50000; RecruitsQuiltedVest.Durability = 50000; RecruitsQuiltedVest.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(RecruitsQuiltedVest); } RecruitsLeatherJerkin = GameServer.Database.FindObjectByKey<ItemTemplate>("k109_recruits_leather_jerkin"); if (RecruitsLeatherJerkin == null) { RecruitsLeatherJerkin = new ItemTemplate(); RecruitsLeatherJerkin.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text2"); if (log.IsWarnEnabled) log.Warn("Could not find " + RecruitsLeatherJerkin.Name + ", creating it ..."); RecruitsLeatherJerkin.Level = 5; RecruitsLeatherJerkin.Weight = 40; RecruitsLeatherJerkin.Model = 31; RecruitsLeatherJerkin.Color = 11; RecruitsLeatherJerkin.Object_Type = (int)eObjectType.Leather; RecruitsLeatherJerkin.Item_Type = (int)eEquipmentItems.TORSO; RecruitsLeatherJerkin.Id_nb = "k109_recruits_leather_jerkin"; RecruitsLeatherJerkin.Price = Money.GetMoney(0,0,0,0,40); RecruitsLeatherJerkin.IsPickable = true; RecruitsLeatherJerkin.IsDropable = true; // can't be sold to merchand RecruitsLeatherJerkin.DPS_AF = 12; RecruitsLeatherJerkin.SPD_ABS = 10; RecruitsLeatherJerkin.Bonus1 = 4; RecruitsLeatherJerkin.Bonus1Type = (int)eProperty.Dexterity; RecruitsLeatherJerkin.Bonus2 = 3; RecruitsLeatherJerkin.Bonus2Type = (int)eProperty.Strength; RecruitsLeatherJerkin.Bonus3 = 1; RecruitsLeatherJerkin.Bonus3Type = (int)eProperty.Constitution; RecruitsLeatherJerkin.Bonus4 = 1; RecruitsLeatherJerkin.Bonus4Type = (int)eProperty.Resist_Spirit; RecruitsLeatherJerkin.Quality = 100; RecruitsLeatherJerkin.Condition = 50000; RecruitsLeatherJerkin.MaxCondition = 50000; RecruitsLeatherJerkin.Durability = 50000; RecruitsLeatherJerkin.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(RecruitsLeatherJerkin); } RecruitsStuddedVest = GameServer.Database.FindObjectByKey<ItemTemplate>("k109_recruits_studded_vest"); if (RecruitsStuddedVest == null) { RecruitsStuddedVest = new ItemTemplate(); RecruitsStuddedVest.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text3"); if (log.IsWarnEnabled) log.Warn("Could not find " + RecruitsStuddedVest.Name + ", creating it ..."); RecruitsStuddedVest.Level = 5; RecruitsStuddedVest.Weight = 60; RecruitsStuddedVest.Model = 81; RecruitsStuddedVest.Color = 11; RecruitsStuddedVest.Object_Type = (int)eObjectType.Studded; RecruitsStuddedVest.Item_Type = (int)eEquipmentItems.TORSO; RecruitsStuddedVest.Id_nb = "k109_recruits_studded_vest"; RecruitsStuddedVest.Price = Money.GetMoney(0,0,0,0,40); RecruitsStuddedVest.IsPickable = true; RecruitsStuddedVest.IsDropable = true; // can't be sold to merchand RecruitsStuddedVest.DPS_AF = 12; RecruitsStuddedVest.SPD_ABS = 19; RecruitsStuddedVest.Bonus1 = 1; RecruitsStuddedVest.Bonus1Type = (int)eProperty.Dexterity; RecruitsStuddedVest.Bonus2 = 4; RecruitsStuddedVest.Bonus2Type = (int)eProperty.Strength; RecruitsStuddedVest.Bonus3 = 3; RecruitsStuddedVest.Bonus3Type = (int)eProperty.Constitution; RecruitsStuddedVest.Bonus4 = 1; RecruitsStuddedVest.Bonus4Type = (int)eProperty.Resist_Spirit; RecruitsStuddedVest.Quality = 100; RecruitsStuddedVest.Condition = 50000; RecruitsStuddedVest.MaxCondition = 50000; RecruitsStuddedVest.Durability = 50000; RecruitsStuddedVest.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(RecruitsStuddedVest); } #endregion //Skeleton Skull ItemTemplate skeletonskull = new ItemTemplate(); skeletonskull.Weight = 0; skeletonskull.Condition = 50000; skeletonskull.MaxCondition = 50000; skeletonskull.Model = 540; skeletonskull.Extension = 1; skeletonskull.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text4"); ItemTemplate zombieskin = new ItemTemplate(); zombieskin.Weight = 0; zombieskin.Condition = 50000; zombieskin.MaxCondition = 50000; zombieskin.Model = 540; zombieskin.Extension = 1; zombieskin.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text5"); QuestGiver = CemmethBudgwold; Rewards.Experience = 625; Rewards.MoneyPercent = 100; Rewards.AddOptionalItem(RecruitsQuiltedVest); Rewards.AddOptionalItem(RecruitsLeatherJerkin); Rewards.AddOptionalItem(RecruitsStuddedVest); Rewards.ChoiceOf = 1; SkeletonsKilled = AddGoal(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Init.Text6"), QuestGoal.GoalType.KillTask, 1, skeletonskull); DecayingGhoulsKilled = AddGoal(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Init.Text7"), QuestGoal.GoalType.KillTask, 1, zombieskin); } [ScriptLoadedEvent] public static void ScriptLoaded(DOLEvent e, object sender, EventArgs args) { if (!ServerProperties.Properties.LOAD_QUESTS) return; if (log.IsInfoEnabled) log.Info("Quest \"" + questTitle + "\" initializing ..."); #region defineNPCS GameNPC[] npcs = WorldMgr.GetNPCsByName("Cemmeth Budgwold", eRealm.Albion); if (npcs.Length == 0) { CemmethBudgwold = new GameNPC(); CemmethBudgwold.Model = 28; CemmethBudgwold.Name = "Cemmeth Budgwold"; if (log.IsWarnEnabled) log.Warn("Could not find " + CemmethBudgwold.Name + ", creating him ..."); //k109: My preference, no guildname for quest NPCs. Uncomment if you like that... //Cemmeth.GuildName = "Part of " + questTitle + " Quest"; CemmethBudgwold.Realm = eRealm.Albion; CemmethBudgwold.CurrentRegionID = 1; GameNpcInventoryTemplate template = new GameNpcInventoryTemplate(); template.AddNPCEquipment(eInventorySlot.HandsArmor, 49); //Slot 22 template.AddNPCEquipment(eInventorySlot.HeadArmor, 93); //Slot 21 template.AddNPCEquipment(eInventorySlot.FeetArmor, 50); //Slot 23 template.AddNPCEquipment(eInventorySlot.TorsoArmor, 46); //Slot 25 template.AddNPCEquipment(eInventorySlot.Cloak, 91); //Slot 26 template.AddNPCEquipment(eInventorySlot.LegsArmor, 47); //Slot 27 template.AddNPCEquipment(eInventorySlot.ArmsArmor, 48); //Slot 28 template.AddNPCEquipment(eInventorySlot.TwoHandWeapon, 68); //Slot 12 CemmethBudgwold.Inventory = template.CloseTemplate(); CemmethBudgwold.SwitchWeapon(GameLiving.eActiveWeaponSlot.Standard); CemmethBudgwold.Size = 50; CemmethBudgwold.Level = 38; CemmethBudgwold.X = 560528; CemmethBudgwold.Y = 513140; CemmethBudgwold.Z = 2394; CemmethBudgwold.Heading = 2275; if (SAVE_INTO_DATABASE) CemmethBudgwold.SaveIntoDatabase(); CemmethBudgwold.AddToWorld(); } else CemmethBudgwold = npcs[0]; #endregion GameEventMgr.AddHandler(GamePlayerEvent.AcceptQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.AddHandler(GamePlayerEvent.DeclineQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.AddHandler(CemmethBudgwold, GameLivingEvent.Interact, new DOLEventHandler(TalkToCemmethBudgwold)); GameEventMgr.AddHandler(CemmethBudgwold, GameLivingEvent.WhisperReceive, new DOLEventHandler(TalkToCemmethBudgwold)); CemmethBudgwold.AddQuestToGive(typeof(CemmethsOrders)); if (log.IsInfoEnabled) log.Info("Quest \"" + questTitle + "\" initialized"); } [ScriptUnloadedEvent] public static void ScriptUnloaded(DOLEvent e, object sender, EventArgs args) { if (CemmethBudgwold == null) return; GameEventMgr.RemoveHandler(GamePlayerEvent.AcceptQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.RemoveHandler(GamePlayerEvent.DeclineQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.RemoveHandler(CemmethBudgwold, GameObjectEvent.Interact, new DOLEventHandler(TalkToCemmethBudgwold)); GameEventMgr.RemoveHandler(CemmethBudgwold, GameLivingEvent.WhisperReceive, new DOLEventHandler(TalkToCemmethBudgwold)); CemmethBudgwold.RemoveQuestToGive(typeof(CemmethsOrders)); } protected static void TalkToCemmethBudgwold(DOLEvent e, object sender, EventArgs args) { //We get the player from the event arguments and check if he qualifies GamePlayer player = ((SourceEventArgs)args).Source as GamePlayer; if (player == null) return; if (CemmethBudgwold.CanGiveQuest(typeof(CemmethsOrders), player) <= 0) return; CemmethsOrders quest = player.IsDoingQuest(typeof(CemmethsOrders)) as CemmethsOrders; CemmethBudgwold.TurnTo(player); if (e == GameObjectEvent.Interact) { if (quest == null) { quest = new CemmethsOrders(); quest.QuestGiver = CemmethBudgwold; quest.OfferQuest(player); } else { if (quest.Step == 1 && quest.SkeletonsKilled.IsAchieved && quest.DecayingGhoulsKilled.IsAchieved) { quest.ChooseRewards(player); } } } } /// <summary> /// Callback for player accept/decline action. /// </summary> /// <param name="e"></param> /// <param name="sender"></param> /// <param name="args"></param> protected static void SubscribeQuest(DOLEvent e, object sender, EventArgs args) { QuestEventArgs qargs = args as QuestEventArgs; if (qargs == null) return; if (qargs.QuestID != QuestMgr.GetIDForQuestType(typeof(CemmethsOrders))) return; if (e == GamePlayerEvent.AcceptQuest) CheckPlayerAcceptQuest(qargs.Player, 0x01); else if (e == GamePlayerEvent.DeclineQuest) CheckPlayerAcceptQuest(qargs.Player, 0x00); } /// <summary> /// This method checks if a player qualifies for this quest /// </summary> /// <returns>true if qualified, false if not</returns> public override bool CheckQuestQualification(GamePlayer player) { // if the player is already doing the quest his level is no longer of relevance if (player.IsDoingQuest(typeof(CemmethsOrders)) != null) return true; // This checks below are only performed is player isn't doing quest already if (player.Level < minimumLevel || player.Level > maximumLevel) return false; return true; } /* This is our callback hook that will be called when the player clicks * on any button in the quest offer dialog. We check if he accepts or * declines here... */ private static void CheckPlayerAbortQuest(GamePlayer player, byte response) { CemmethsOrders quest = player.IsDoingQuest(typeof(CemmethsOrders)) as CemmethsOrders; if (quest == null) return; if (response == 0x00) { SendSystemMessage(player, LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.CheckPlayerAbortQuest.Text1")); } else { SendSystemMessage(player, LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.CheckPlayerAbortQuest.Text2", questTitle)); quest.AbortQuest(); } } /* This is our callback hook that will be called when the player clicks * on any button in the quest offer dialog. We check if he accepts or * declines here... */ private static void CheckPlayerAcceptQuest(GamePlayer player, byte response) { // We recheck the qualification, because we don't talk to players // who are not doing the quest. if (CemmethBudgwold.CanGiveQuest(typeof(CemmethsOrders), player) <= 0) return; if (player.IsDoingQuest(typeof(CemmethsOrders)) != null) return; if (response == 0x00) { // Player declined, don't do anything. } else { // Player accepted, let's try to give him the quest. if (!CemmethBudgwold.GiveQuest(typeof(CemmethsOrders), player, 1)) return; } } /// <summary> /// The quest title. /// </summary> public override string Name { get { return questTitle; } } /// <summary> /// The text for individual quest steps as shown in the journal. /// </summary> public override string Description { get { switch (Step) { case 1: return Summary; default: return "No Queststep Description available."; } } } /// <summary> /// The fully-fledged story to the quest. /// </summary> public override string Story { get { String desc = LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Story"); return desc; } } /// <summary> /// A summary of the quest's story. /// </summary> public override string Summary { get { return LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Summary"); } } /// <summary> /// Text showing upon finishing the quest. /// </summary> public override String Conclusion { get { String text = String.Format(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Conclusion.Text1", QuestPlayer.CharacterClass.Name)); return text; } } /// <summary> /// The level of the quest as it shows in the journal. /// </summary> public override int Level { get { return 1; } } /// <summary> /// Handles quest events. /// </summary> /// <param name="e"></param> /// <param name="sender"></param> /// <param name="args"></param> public override void Notify(DOLEvent e, object sender, EventArgs args) { base.Notify(e, sender, args); GamePlayer player = sender as GamePlayer; if (player == null) return; if (player.IsDoingQuest(typeof(CemmethsOrders)) == null) return; if (Step == 1 && e == GameLivingEvent.EnemyKilled) { EnemyKilledEventArgs gArgs = (EnemyKilledEventArgs)args; if (gArgs.Target.Name.IndexOf(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Notify.Text1")) >= 0) { if (!SkeletonsKilled.IsAchieved) { SkeletonsKilled.Advance(); return; } } if (gArgs.Target.Name.IndexOf(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Notify.Text2")) >= 0) { if (!DecayingGhoulsKilled.IsAchieved) { DecayingGhoulsKilled.Advance(); return; } } } } public override void AbortQuest() { base.AbortQuest(); //Defined in Quest, changes the state, stores in DB etc ... } public override void FinishQuest() { base.FinishQuest(); } } }
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby HunabKu » Mon Nov 24, 2014 12:24 pm

Normalement tu devrais avoir une erreur dans errors.log ou dans gameserver.log qui pourra t'aiguiller.
"C'est l'ignorance qui apporte le chaos, pas la connaissance."
Scarlett Johansson dans "Lucy" de Luc Besson
-------------------------------------------------------------------------------
"Ignorance brings chaos, not knowledge."
Scarlett Johansson on "Lucy" by Luc Besson
User avatar
HunabKu
Developer
 
Posts: 1905
Joined: Sat Jun 18, 2011 4:48 am

Re: Comment debugger une quête ?

Postby NealWeiss » Mon Nov 24, 2014 1:25 pm

Merci HunabKu J'ai effectivement trouvé ceci dans errors.log
19:41:18,025 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,026 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'SkeletonSkull' n'existe pas dans le contexte actuel
19:41:18,026 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:212 Col:13
19:41:18,026 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,026 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'SkeletonSkull' n'existe pas dans le contexte actuel
19:41:18,027 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:213 Col:17
19:41:18,027 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,027 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'SkeletonSkull' n'existe pas dans le contexte actuel
19:41:18,027 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:216 Col:17
19:41:18,028 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,028 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'SkeletonSkull' n'existe pas dans le contexte actuel
19:41:18,028 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:223 Col:47
19:41:18,028 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,028 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,029 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:226 Col:13
19:41:18,029 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,029 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,029 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:227 Col:17
19:41:18,030 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,030 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,030 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:230 Col:17
19:41:18,030 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,030 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,031 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:231 Col:17
19:41:18,031 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,031 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,031 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:232 Col:17
19:41:18,032 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,032 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,032 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:233 Col:17
19:41:18,032 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,032 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,033 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:234 Col:17
19:41:18,033 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,033 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,033 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:235 Col:17
19:41:18,033 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,034 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,034 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:236 Col:17
19:41:18,034 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,034 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'ZombieSkin' n'existe pas dans le contexte actuel
19:41:18,034 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:237 Col:47
19:41:18,035 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,035 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'skeletonskull' n'existe pas dans le contexte actuel
19:41:18,035 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:249 Col:166
19:41:18,035 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Script compilation failed because:
19:41:18,036 - [MAIN] - ERROR - DOL.GS.ScriptMgr - Le nom 'zombieskin' n'existe pas dans le contexte actuel
19:41:18,036 - [MAIN] - ERROR - DOL.GS.ScriptMgr - f:\ServeurPrivé\Dawn of Light\scripts\quests\Albion\CemmethsOrders.cs Line:250 Col:171
Comment réparer ça?
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby snoopydo » Mon Nov 24, 2014 1:59 pm

bah donc ca se passe dans cemmethorders scripts deja et faut creer les template des mob ds bdd .
si je lis bien :p
snoopydo
DOL Freak
 
Posts: 578
Joined: Mon Jan 02, 2006 12:48 pm

Re: Comment debugger une quête ?

Postby Xanth » Mon Nov 24, 2014 2:00 pm

you need to set like this :
Code: Select all
private static ItemTemplate RecruitsQuiltedVest = null;
to
Code: Select all
private static ItemTemplate ZombieSkin = null;
then create this item in quest or create in db, it needs a reference to the quest (the item)
User avatar
Xanth
DOL Acolyte
 
Posts: 141
Joined: Tue Sep 30, 2014 7:01 pm
Location: Germany

Re: Comment debugger une quête ?

Postby NealWeiss » Mon Nov 24, 2014 5:04 pm

Il ne me reste plus qu'à savoir comment procéder...
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby Xanth » Mon Nov 24, 2014 8:24 pm

Code: Select all
/* * DAWN OF LIGHT - The first free open source DAoC server emulator * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Author: k109 * * Date: 12/5/07 * Directory: /scripts/quests/albion/ * * Compiled on SVN 905 * * Description: The "Cemmeths Orders" quest, mimics live US servers. */ using System; using DOL.Database; using DOL.Events; using DOL.Language; namespace DOL.GS.Quests { public class CemmethsOrders : RewardQuest { private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); protected static string questTitle = LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.QuestTitle"); protected const int minimumLevel = 4; protected const int maximumLevel = 7; private static GameNPC CemmethBudgwold = null; private QuestGoal SkeletonsKilled; private QuestGoal DecayingGhoulsKilled; private static ItemTemplate SkeletonSkull = null; private static ItemTemplate ZombieSkin = null; private static ItemTemplate RecruitsQuiltedVest = null; private static ItemTemplate RecruitsLeatherJerkin = null; private static ItemTemplate RecruitsStuddedVest = null; public CemmethsOrders() : base() { Init(); } public CemmethsOrders(GamePlayer questingPlayer) : this(questingPlayer, 1) { } public CemmethsOrders(GamePlayer questingPlayer, int step) : base(questingPlayer, step) { Init(); } public CemmethsOrders(GamePlayer questingPlayer, DBQuest dbQuest) : base(questingPlayer, dbQuest) { Init(); } private void Init() { #region defineItems // item db check RecruitsQuiltedVest = GameServer.Database.FindObjectByKey<ItemTemplate>("k109_recruits_quilted_vest"); if (RecruitsQuiltedVest == null) { RecruitsQuiltedVest = new ItemTemplate(); RecruitsQuiltedVest.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text1"); if (log.IsWarnEnabled) log.Warn("Could not find " + RecruitsQuiltedVest.Name + ", creating it ..."); RecruitsQuiltedVest.Level = 5; RecruitsQuiltedVest.Weight = 20; RecruitsQuiltedVest.Model = 139; RecruitsQuiltedVest.Color = 28; RecruitsQuiltedVest.Object_Type = (int)eObjectType.Cloth; RecruitsQuiltedVest.Item_Type = (int)eEquipmentItems.TORSO; RecruitsQuiltedVest.Id_nb = "k109_recruits_quilted_vest"; RecruitsQuiltedVest.Price = Money.GetMoney(0, 0, 0, 0, 40); RecruitsQuiltedVest.IsPickable = true; RecruitsQuiltedVest.IsDropable = true; // can't be sold to merchand RecruitsQuiltedVest.DPS_AF = 6; RecruitsQuiltedVest.SPD_ABS = 0; RecruitsQuiltedVest.Bonus1 = 3; RecruitsQuiltedVest.Bonus1Type = (int)eProperty.Dexterity; RecruitsQuiltedVest.Bonus2 = 4; RecruitsQuiltedVest.Bonus2Type = (int)eProperty.Acuity; RecruitsQuiltedVest.Bonus3 = 1; RecruitsQuiltedVest.Bonus3Type = (int)eProperty.Resist_Spirit; RecruitsQuiltedVest.Bonus4 = 1; RecruitsQuiltedVest.Bonus4Type = (int)eProperty.Resist_Matter; RecruitsQuiltedVest.Quality = 100; RecruitsQuiltedVest.Condition = 50000; RecruitsQuiltedVest.MaxCondition = 50000; RecruitsQuiltedVest.Durability = 50000; RecruitsQuiltedVest.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(RecruitsQuiltedVest); } RecruitsLeatherJerkin = GameServer.Database.FindObjectByKey<ItemTemplate>("k109_recruits_leather_jerkin"); if (RecruitsLeatherJerkin == null) { RecruitsLeatherJerkin = new ItemTemplate(); RecruitsLeatherJerkin.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text2"); if (log.IsWarnEnabled) log.Warn("Could not find " + RecruitsLeatherJerkin.Name + ", creating it ..."); RecruitsLeatherJerkin.Level = 5; RecruitsLeatherJerkin.Weight = 40; RecruitsLeatherJerkin.Model = 31; RecruitsLeatherJerkin.Color = 11; RecruitsLeatherJerkin.Object_Type = (int)eObjectType.Leather; RecruitsLeatherJerkin.Item_Type = (int)eEquipmentItems.TORSO; RecruitsLeatherJerkin.Id_nb = "k109_recruits_leather_jerkin"; RecruitsLeatherJerkin.Price = Money.GetMoney(0, 0, 0, 0, 40); RecruitsLeatherJerkin.IsPickable = true; RecruitsLeatherJerkin.IsDropable = true; // can't be sold to merchand RecruitsLeatherJerkin.DPS_AF = 12; RecruitsLeatherJerkin.SPD_ABS = 10; RecruitsLeatherJerkin.Bonus1 = 4; RecruitsLeatherJerkin.Bonus1Type = (int)eProperty.Dexterity; RecruitsLeatherJerkin.Bonus2 = 3; RecruitsLeatherJerkin.Bonus2Type = (int)eProperty.Strength; RecruitsLeatherJerkin.Bonus3 = 1; RecruitsLeatherJerkin.Bonus3Type = (int)eProperty.Constitution; RecruitsLeatherJerkin.Bonus4 = 1; RecruitsLeatherJerkin.Bonus4Type = (int)eProperty.Resist_Spirit; RecruitsLeatherJerkin.Quality = 100; RecruitsLeatherJerkin.Condition = 50000; RecruitsLeatherJerkin.MaxCondition = 50000; RecruitsLeatherJerkin.Durability = 50000; RecruitsLeatherJerkin.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(RecruitsLeatherJerkin); } RecruitsStuddedVest = GameServer.Database.FindObjectByKey<ItemTemplate>("k109_recruits_studded_vest"); if (RecruitsStuddedVest == null) { RecruitsStuddedVest = new ItemTemplate(); RecruitsStuddedVest.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text3"); if (log.IsWarnEnabled) log.Warn("Could not find " + RecruitsStuddedVest.Name + ", creating it ..."); RecruitsStuddedVest.Level = 5; RecruitsStuddedVest.Weight = 60; RecruitsStuddedVest.Model = 81; RecruitsStuddedVest.Color = 11; RecruitsStuddedVest.Object_Type = (int)eObjectType.Studded; RecruitsStuddedVest.Item_Type = (int)eEquipmentItems.TORSO; RecruitsStuddedVest.Id_nb = "k109_recruits_studded_vest"; RecruitsStuddedVest.Price = Money.GetMoney(0, 0, 0, 0, 40); RecruitsStuddedVest.IsPickable = true; RecruitsStuddedVest.IsDropable = true; // can't be sold to merchand RecruitsStuddedVest.DPS_AF = 12; RecruitsStuddedVest.SPD_ABS = 19; RecruitsStuddedVest.Bonus1 = 1; RecruitsStuddedVest.Bonus1Type = (int)eProperty.Dexterity; RecruitsStuddedVest.Bonus2 = 4; RecruitsStuddedVest.Bonus2Type = (int)eProperty.Strength; RecruitsStuddedVest.Bonus3 = 3; RecruitsStuddedVest.Bonus3Type = (int)eProperty.Constitution; RecruitsStuddedVest.Bonus4 = 1; RecruitsStuddedVest.Bonus4Type = (int)eProperty.Resist_Spirit; RecruitsStuddedVest.Quality = 100; RecruitsStuddedVest.Condition = 50000; RecruitsStuddedVest.MaxCondition = 50000; RecruitsStuddedVest.Durability = 50000; RecruitsStuddedVest.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(RecruitsStuddedVest); } #endregion SkeletonSkull = GameServer.Database.FindObjectByKey<ItemTemplate>("skeletonskull"); if (SkeletonSkull == null) { SkeletonSkull = new ItemTemplate(); SkeletonSkull.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text3"); if (log.IsWarnEnabled) log.Warn("Could not find " + SkeletonSkull.Name + ", creating it ..."); SkeletonSkull.Level = 5; SkeletonSkull.Weight = 0; SkeletonSkull.Model = 81; SkeletonSkull.Color = 11; SkeletonSkull.Condition = 50000; SkeletonSkull.MaxCondition = 50000; SkeletonSkull.Model = 540; SkeletonSkull.Extension = 1; SkeletonSkull.Id_nb = "skeletonskull"; SkeletonSkull.IsPickable = true; SkeletonSkull.IsDropable = true; // can't be sold to merchand SkeletonSkull.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text4"); SkeletonSkull.Quality = 100; SkeletonSkull.Durability = 50000; SkeletonSkull.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(SkeletonSkull); } ZombieSkin = GameServer.Database.FindObjectByKey<ItemTemplate>("zombieskin"); if (ZombieSkin == null) { ZombieSkin = new ItemTemplate(); ZombieSkin.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text3"); if (log.IsWarnEnabled) log.Warn("Could not find " + ZombieSkin.Name + ", creating it ..."); ZombieSkin.Weight = 0; ZombieSkin.Condition = 50000; ZombieSkin.MaxCondition = 50000; ZombieSkin.Model = 540; ZombieSkin.Extension = 1; ZombieSkin.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text5"); ZombieSkin.Level = 5; ZombieSkin.Color = 11; ZombieSkin.Model = 540; ZombieSkin.Id_nb = "zombieskin"; ZombieSkin.IsPickable = true; ZombieSkin.IsDropable = true; // can't be sold to merchand ZombieSkin.Name = LanguageMgr.GetTranslation(ServerProperties.Properties.DB_LANGUAGE, "Alb.CemmethsOrders.Init.Text4"); ZombieSkin.Quality = 100; ZombieSkin.Durability = 50000; ZombieSkin.MaxDurability = 50000; //You don't have to store the created item in the db if you don't want, //it will be recreated each time it is not found, just comment the following //line if you rather not modify your database GameServer.Database.AddObject(ZombieSkin); } QuestGiver = CemmethBudgwold; Rewards.Experience = 625; Rewards.MoneyPercent = 100; Rewards.AddOptionalItem(RecruitsQuiltedVest); Rewards.AddOptionalItem(RecruitsLeatherJerkin); Rewards.AddOptionalItem(RecruitsStuddedVest); Rewards.ChoiceOf = 1; SkeletonsKilled = AddGoal(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Init.Text6"), QuestGoal.GoalType.KillTask, 1, SkeletonSkull); DecayingGhoulsKilled = AddGoal(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Init.Text7"), QuestGoal.GoalType.KillTask, 1, ZombieSkin); } [ScriptLoadedEvent] public static void ScriptLoaded(DOLEvent e, object sender, EventArgs args) { if (!ServerProperties.Properties.LOAD_QUESTS) return; if (log.IsInfoEnabled) log.Info("Quest \"" + questTitle + "\" initializing ..."); #region defineNPCS GameNPC[] npcs = WorldMgr.GetNPCsByName("Cemmeth Budgwold", eRealm.Albion); if (npcs.Length == 0) { CemmethBudgwold = new GameNPC(); CemmethBudgwold.Model = 28; CemmethBudgwold.Name = "Cemmeth Budgwold"; if (log.IsWarnEnabled) log.Warn("Could not find " + CemmethBudgwold.Name + ", creating him ..."); //k109: My preference, no guildname for quest NPCs. Uncomment if you like that... //Cemmeth.GuildName = "Part of " + questTitle + " Quest"; CemmethBudgwold.Realm = eRealm.Albion; CemmethBudgwold.CurrentRegionID = 1; GameNpcInventoryTemplate template = new GameNpcInventoryTemplate(); template.AddNPCEquipment(eInventorySlot.HandsArmor, 49); //Slot 22 template.AddNPCEquipment(eInventorySlot.HeadArmor, 93); //Slot 21 template.AddNPCEquipment(eInventorySlot.FeetArmor, 50); //Slot 23 template.AddNPCEquipment(eInventorySlot.TorsoArmor, 46); //Slot 25 template.AddNPCEquipment(eInventorySlot.Cloak, 91); //Slot 26 template.AddNPCEquipment(eInventorySlot.LegsArmor, 47); //Slot 27 template.AddNPCEquipment(eInventorySlot.ArmsArmor, 48); //Slot 28 template.AddNPCEquipment(eInventorySlot.TwoHandWeapon, 68); //Slot 12 CemmethBudgwold.Inventory = template.CloseTemplate(); CemmethBudgwold.SwitchWeapon(GameLiving.eActiveWeaponSlot.Standard); CemmethBudgwold.Size = 50; CemmethBudgwold.Level = 38; CemmethBudgwold.X = 560528; CemmethBudgwold.Y = 513140; CemmethBudgwold.Z = 2394; CemmethBudgwold.Heading = 2275; if (SAVE_INTO_DATABASE) CemmethBudgwold.SaveIntoDatabase(); CemmethBudgwold.AddToWorld(); } else CemmethBudgwold = npcs[0]; #endregion GameEventMgr.AddHandler(GamePlayerEvent.AcceptQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.AddHandler(GamePlayerEvent.DeclineQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.AddHandler(CemmethBudgwold, GameLivingEvent.Interact, new DOLEventHandler(TalkToCemmethBudgwold)); GameEventMgr.AddHandler(CemmethBudgwold, GameLivingEvent.WhisperReceive, new DOLEventHandler(TalkToCemmethBudgwold)); CemmethBudgwold.AddQuestToGive(typeof(CemmethsOrders)); if (log.IsInfoEnabled) log.Info("Quest \"" + questTitle + "\" initialized"); } [ScriptUnloadedEvent] public static void ScriptUnloaded(DOLEvent e, object sender, EventArgs args) { if (CemmethBudgwold == null) return; GameEventMgr.RemoveHandler(GamePlayerEvent.AcceptQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.RemoveHandler(GamePlayerEvent.DeclineQuest, new DOLEventHandler(SubscribeQuest)); GameEventMgr.RemoveHandler(CemmethBudgwold, GameObjectEvent.Interact, new DOLEventHandler(TalkToCemmethBudgwold)); GameEventMgr.RemoveHandler(CemmethBudgwold, GameLivingEvent.WhisperReceive, new DOLEventHandler(TalkToCemmethBudgwold)); CemmethBudgwold.RemoveQuestToGive(typeof(CemmethsOrders)); } protected static void TalkToCemmethBudgwold(DOLEvent e, object sender, EventArgs args) { //We get the player from the event arguments and check if he qualifies GamePlayer player = ((SourceEventArgs)args).Source as GamePlayer; if (player == null) return; if (CemmethBudgwold.CanGiveQuest(typeof(CemmethsOrders), player) <= 0) return; CemmethsOrders quest = player.IsDoingQuest(typeof(CemmethsOrders)) as CemmethsOrders; CemmethBudgwold.TurnTo(player); if (e == GameObjectEvent.Interact) { if (quest == null) { quest = new CemmethsOrders(); quest.QuestGiver = CemmethBudgwold; quest.OfferQuest(player); } else { if (quest.Step == 1 && quest.SkeletonsKilled.IsAchieved && quest.DecayingGhoulsKilled.IsAchieved) { quest.ChooseRewards(player); } } } } /// <summary> /// Callback for player accept/decline action. /// </summary> /// <param name="e"></param> /// <param name="sender"></param> /// <param name="args"></param> protected static void SubscribeQuest(DOLEvent e, object sender, EventArgs args) { QuestEventArgs qargs = args as QuestEventArgs; if (qargs == null) return; if (qargs.QuestID != QuestMgr.GetIDForQuestType(typeof(CemmethsOrders))) return; if (e == GamePlayerEvent.AcceptQuest) CheckPlayerAcceptQuest(qargs.Player, 0x01); else if (e == GamePlayerEvent.DeclineQuest) CheckPlayerAcceptQuest(qargs.Player, 0x00); } /// <summary> /// This method checks if a player qualifies for this quest /// </summary> /// <returns>true if qualified, false if not</returns> public override bool CheckQuestQualification(GamePlayer player) { // if the player is already doing the quest his level is no longer of relevance if (player.IsDoingQuest(typeof(CemmethsOrders)) != null) return true; // This checks below are only performed is player isn't doing quest already if (player.Level < minimumLevel || player.Level > maximumLevel) return false; return true; } /* This is our callback hook that will be called when the player clicks * on any button in the quest offer dialog. We check if he accepts or * declines here... */ private static void CheckPlayerAbortQuest(GamePlayer player, byte response) { CemmethsOrders quest = player.IsDoingQuest(typeof(CemmethsOrders)) as CemmethsOrders; if (quest == null) return; if (response == 0x00) { SendSystemMessage(player, LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.CheckPlayerAbortQuest.Text1")); } else { SendSystemMessage(player, LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.CheckPlayerAbortQuest.Text2", questTitle)); quest.AbortQuest(); } } /* This is our callback hook that will be called when the player clicks * on any button in the quest offer dialog. We check if he accepts or * declines here... */ private static void CheckPlayerAcceptQuest(GamePlayer player, byte response) { // We recheck the qualification, because we don't talk to players // who are not doing the quest. if (CemmethBudgwold.CanGiveQuest(typeof(CemmethsOrders), player) <= 0) return; if (player.IsDoingQuest(typeof(CemmethsOrders)) != null) return; if (response == 0x00) { // Player declined, don't do anything. } else { // Player accepted, let's try to give him the quest. if (!CemmethBudgwold.GiveQuest(typeof(CemmethsOrders), player, 1)) return; } } /// <summary> /// The quest title. /// </summary> public override string Name { get { return questTitle; } } /// <summary> /// The text for individual quest steps as shown in the journal. /// </summary> public override string Description { get { switch (Step) { case 1: return Summary; default: return "No Queststep Description available."; } } } /// <summary> /// The fully-fledged story to the quest. /// </summary> public override string Story { get { String desc = LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Story"); return desc; } } /// <summary> /// A summary of the quest's story. /// </summary> public override string Summary { get { return LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Summary"); } } /// <summary> /// Text showing upon finishing the quest. /// </summary> public override String Conclusion { get { String text = String.Format(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Conclusion.Text1", QuestPlayer.CharacterClass.Name)); return text; } } /// <summary> /// The level of the quest as it shows in the journal. /// </summary> public override int Level { get { return 1; } } /// <summary> /// Handles quest events. /// </summary> /// <param name="e"></param> /// <param name="sender"></param> /// <param name="args"></param> public override void Notify(DOLEvent e, object sender, EventArgs args) { base.Notify(e, sender, args); GamePlayer player = sender as GamePlayer; if (player == null) return; if (player.IsDoingQuest(typeof(CemmethsOrders)) == null) return; if (Step == 1 && e == GameLivingEvent.EnemyKilled) { EnemyKilledEventArgs gArgs = (EnemyKilledEventArgs)args; if (gArgs.Target.Name.IndexOf(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Notify.Text1")) >= 0) { if (!SkeletonsKilled.IsAchieved) { SkeletonsKilled.Advance(); return; } } if (gArgs.Target.Name.IndexOf(LanguageMgr.GetTranslation(ServerProperties.Properties.SERV_LANGUAGE, "Alb.CemmethsOrders.Notify.Text2")) >= 0) { if (!DecayingGhoulsKilled.IsAchieved) { DecayingGhoulsKilled.Advance(); return; } } } } public override void AbortQuest() { base.AbortQuest(); //Defined in Quest, changes the state, stores in DB etc ... } public override void FinishQuest() { base.FinishQuest(); } } }
here test this, and tell me if its fixed
User avatar
Xanth
DOL Acolyte
 
Posts: 141
Joined: Tue Sep 30, 2014 7:01 pm
Location: Germany

Re: Comment debugger une quête ?

Postby NealWeiss » Mon Nov 24, 2014 10:03 pm

J'ai fait une copie de sauvegarde de laquête. J'ai copié le code de Xanth, j'ai remplacé le code de la quête et j'ai enregistré. J'ai lancé le serveur et le client j'ai testé : encore planté. Aurais je mal fait quelque chose?
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby NealWeiss » Tue Nov 25, 2014 3:53 pm

J'ai certainement fait quelque chose de travers le serveur me dit qui ne trouve pas la quête.
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby Leodagan » Tue Nov 25, 2014 3:58 pm

Si le serveur te dis quelque chose alors tu as des logs :)

Il faut toujours accompagner l'extrait de log avec ce genre de problème.
User avatar
Leodagan
Developer
 
Posts: 1350
Joined: Tue May 01, 2012 9:30 am
Website: https://daoc.freyad.net
Location: Lyon

Re: Comment debugger une quête ?

Postby NealWeiss » Tue Nov 25, 2014 4:49 pm

Les logs du serveur :
16:42:25,189 - [MAIN] - DEBUG - DOL.GS.GameServer - Current directory is: F:\ServeurPrivé\Dawn of Light
16:42:25,200 - [MAIN] - DEBUG - DOL.GS.GameServer - Gameserver root directory is: F:\ServeurPrivé\Dawn of Light
16:42:25,200 - [MAIN] - DEBUG - DOL.GS.GameServer - Changing directory to root directory
16:42:25,866 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.GS.GameInventoryItem
16:42:26,279 - [MAIN] - INFO - DOL.Database.Connection.DataConnection - New DB connection created
16:42:26,329 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.GS.GameInventoryRelic
16:42:26,329 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.GS.GuildBannerItem
16:42:26,348 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.CharacterXDataQuest
16:42:26,384 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.HouseConsignmentMerchant
16:42:26,407 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageGameObject
16:42:26,432 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageNPC
16:42:26,451 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBRegions
16:42:26,484 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.SalvageYield
16:42:26,516 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.LootTemplate
16:42:26,599 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DropTemplateXItemTemplate
16:42:26,642 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageArea
16:42:26,673 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageZone
16:42:26,703 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.MobXLootTemplate
16:42:26,744 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.MobDropTemplate
16:42:26,814 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.StartupLocation
16:42:26,871 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBDataQuest
16:42:26,901 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Zones
16:42:26,925 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DOLCharacters
16:42:26,951 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DOLCharactersBackup
16:42:26,983 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: MobXAmbientBehaviour
16:42:27,006 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Account
16:42:27,041 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DBAppeal
16:42:27,061 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Artifact
16:42:27,126 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ArtifactBonus
16:42:27,161 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ArtifactXItem
16:42:27,215 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.BindPoint
16:42:27,264 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.BugReport
16:42:27,303 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.CharacterXOneTimeDrop
16:42:27,335 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ItemTemplate
16:42:27,449 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ItemUnique
16:42:27,487 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ServerStats
16:42:27,537 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ClassXRealmAbility
16:42:27,579 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Battleground
16:42:27,616 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.AuditEntry
16:42:27,642 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguage
16:42:27,683 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.PvPKillsLog
16:42:27,712 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.HouseHookpointOffset
16:42:27,743 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBInstanceXElement
16:42:27,766 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBMinotaurRelic
16:42:27,788 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.KeepCaptureLog
16:42:27,814 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Race
16:42:27,852 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ServerPropertyCategory
16:42:27,874 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.StarterEquipment
16:42:27,908 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBBoat
16:42:27,936 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBChampSpecs
16:42:27,968 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBCharacterXMasterLevel
16:42:27,989 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseHookpointItem
16:42:28,043 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseCharsXPerms
16:42:28,061 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHousePermissions
16:42:28,078 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepHookPointItem
16:42:28,104 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepPosition
16:42:28,136 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBNews
16:42:28,155 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBRelic
16:42:28,186 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBStyleXSpell
16:42:28,211 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.PlayerXEffect
16:42:28,233 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ServerProperty
16:42:28,255 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBAbility
16:42:28,291 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBAlliance
16:42:28,318 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBArea
16:42:28,341 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBBannedAccount
16:42:28,357 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBCraftedItem
16:42:28,385 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBCraftedXItem
16:42:28,428 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBDoor
16:42:28,444 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBFaction
16:42:28,466 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBFactionAggroLevel
16:42:28,480 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBGuild
16:42:28,507 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouse
16:42:28,541 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseIndoorItem
16:42:28,564 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseOutdoorItem
16:42:28,588 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeep
16:42:28,620 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepComponent
16:42:28,652 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepHookPoint
16:42:28,684 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLineXSpell
16:42:28,716 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLinkedFaction
16:42:28,740 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.LootGenerator
16:42:28,763 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.LootOTD
16:42:28,779 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBNpcTemplate
16:42:28,812 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBPath
16:42:28,837 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBPathPoint
16:42:28,958 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBQuest
16:42:28,979 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBRank
16:42:28,999 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSalvage
16:42:29,031 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSinglePermission
16:42:29,079 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpecialization
16:42:29,102 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpecXAbility
16:42:29,123 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpell
16:42:29,157 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpellLine
16:42:29,186 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBStyle
16:42:29,211 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBTask
16:42:29,229 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.InventoryItem
16:42:29,230 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.MerchantItem
16:42:29,386 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Mob
16:42:29,436 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.NPCEquipment
16:42:29,544 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Teleport
16:42:29,582 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.WorldObject
16:42:29,606 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ZonePoint
16:42:30,071 - [MAIN] - INFO - DOL.GS.GameServer - Database Initialization: true
16:42:30,071 - [MAIN] - INFO - DOL.GS.GameServer - Game Server Initialization finished!
16:42:30,075 - [MAIN] - DEBUG - DOL.GS.GameServer - Starting Server, Memory is 4
16:42:30,076 - [MAIN] - INFO - DOL.GS.GameServer - Checking database for updates ...
16:42:30,100 - [MAIN] - INFO - DOL.GS.GameServer - Database update complete.
16:42:30,102 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory InitSocket(): 4
16:42:30,102 - [MAIN] - INFO - DOL.GS.GameServer - InitSocket(): True
16:42:30,103 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory InitSocket(): 4
16:42:30,107 - [MAIN] - DEBUG - DOL.GS.GameServer - allocated packet buffers: 1500
16:42:30,110 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory AllocatePacketBuffers(): 7
16:42:30,111 - [MAIN] - INFO - DOL.GS.GameServer - AllocatePacketBuffers(): True
16:42:30,112 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory AllocatePacketBuffers(): 7
16:42:30,114 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory StartUDP(): 7
16:42:30,114 - [MAIN] - INFO - DOL.GS.GameServer - StartUDP(): True
16:42:30,115 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory StartUDP(): 7
16:42:30,124 - [MAIN] - INFO - DOL.Language.LanguageMgr - [LanguageMgr] Loading translations ID...
16:42:30,146 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_debug Value is False
16:42:30,148 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_sync_timer Value is True
16:42:30,149 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading ignore_too_long_outcoming_packet Value is False
16:42:30,150 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_rewardquest_description_length Value is 255
16:42:30,151 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading staff_login Value is False
16:42:30,152 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading client_version_min Value is -1
16:42:30,153 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading client_type_max Value is -1
16:42:30,154 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading client_version_max Value is -1
16:42:30,155 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_quests Value is True
16:42:30,156 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_buff_tokens Value is True
16:42:30,158 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_arrow_summoning Value is True
16:42:30,159 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_housing_items Value is True
16:42:30,160 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_housing_npc Value is True
16:42:30,161 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_bug_reports Value is True
16:42:30,162 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_players Value is 0
16:42:30,163 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading player_class Value is DOL.GS.GamePlayer
16:42:30,164 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading debug_load_regions Value is
16:42:30,166 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_expansions Value is
16:42:30,167 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading server_language Value is EN
16:42:30,168 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_change_language Value is False
16:42:30,169 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading statsave_interval Value is -1
16:42:30,170 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bug_report_email_addresses Value is
16:42:30,171 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading ban_hackers Value is False
16:42:30,172 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading db_language Value is EN
16:42:30,173 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading statprint_frequency Value is 30000
16:42:30,174 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_all_realms Value is False
16:42:30,176 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_dual_logins Value is True
16:42:30,177 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading emote_delay Value is 3000
16:42:30,178 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading command_spam_delay Value is 1500
16:42:30,179 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_items_per_packet Value is 30
16:42:30,180 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading speedhack_tolerance Value is 20
16:42:30,181 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_movedetect Value is False
16:42:30,182 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cps_tolerance Value is 1000
16:42:30,183 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cps_time_tolerance Value is 200
16:42:30,184 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading jump_tolerance Value is 200
16:42:30,186 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading display_area_enter_screen_desc Value is False
16:42:30,187 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_audit_log Value is False
16:42:30,188 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_pvp_kills Value is False
16:42:30,189 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_all_gm_commands Value is False
16:42:30,190 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_trades Value is False
16:42:30,191 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_email_addresses Value is
16:42:30,192 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory Value is False
16:42:30,193 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_trade Value is True
16:42:30,194 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_craft Value is True
16:42:30,195 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_loot Value is True
16:42:30,196 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_quest Value is True
16:42:30,197 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_merchant Value is True
16:42:30,199 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_other Value is True
16:42:30,200 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_passives_ras_scaling Value is False
16:42:30,201 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading custom_train Value is True
16:42:30,202 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading record_news Value is True
16:42:30,203 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading motd Value is Welcome to a Dawn of Light server, please edit this MOTD
16:42:30,204 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_msg Value is Welcome for your first time to a Dawn of Light server, please edit this Starter Message
16:42:30,206 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading broadcast_type Value is 1
16:42:30,207 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading anon_modifier Value is 0
16:42:30,208 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_examples Value is True
16:42:30,209 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_custom_start_locations Value is False
16:42:30,210 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading death_messages_all_realms Value is False
16:42:30,211 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_instances Value is False
16:42:30,212 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading save_quest_mobs_into_database Value is True
16:42:30,213 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading battlegroup_max_member Value is 64
16:42:30,214 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading group_max_member Value is 8
16:42:30,215 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_commands Value is
16:42:30,216 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_appeal_system Value is False
16:42:30,217 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_dblanguage Value is False
16:42:30,218 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading region_max_objects Value is 30000
16:42:30,219 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading show_logins Value is True
16:42:30,223 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading show_logins_channel Value is 0
16:42:30,225 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_pve_speed Value is True
16:42:30,226 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_encumberance_speed_loss Value is True
16:42:30,227 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_difficulty_on_epic_encounters Value is 100
16:42:30,228 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_regions Value is
16:42:30,229 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_tutorial Value is False
16:42:30,230 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_item_decay_time Value is 180000
16:42:30,231 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_pickup_distance Value is 256
16:42:30,233 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_day_increment Value is 24
16:42:30,234 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_npc_update_interval Value is 30000
16:42:30,235 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_object_update_interval Value is 30000
16:42:30,236 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_player_update_interval Value is 300
16:42:30,237 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading weather_check_interval Value is 300000
16:42:30,238 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading weather_chance Value is 5
16:42:30,239 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading weather_log_events Value is True
16:42:30,240 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading always_check_los Value is False
16:42:30,241 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading check_los_during_cast Value is True
16:42:30,243 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading always_check_pet_los Value is False
16:42:30,245 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading los_player_check_frequency Value is 5
16:42:30,246 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading hps_per_championlevel Value is 40
16:42:30,247 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading task_pause_ticks Value is 300000
16:42:30,248 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading task_give_random_item Value is False
16:42:30,249 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_zone_bonuses Value is False
16:42:30,250 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_personnal_mount_in_regions Value is
16:42:30,251 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading timer_player_init Value is 15
16:42:30,253 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading zonepoint_npctemplate Value is 0
16:42:30,254 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_Cap_Percent Value is 125
16:42:30,255 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_Group_Cap_Percent Value is 125
16:42:30,256 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_PVP_Cap_Percent Value is 125
16:42:30,257 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_HardCap_Percent Value is 500
16:42:30,258 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading xp_rate Value is 1
16:42:30,259 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cl_xp_rate Value is 1
16:42:30,261 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rvr_zones_xp_rate Value is 1
16:42:30,262 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rp_rate Value is 1
16:42:30,263 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bp_rate Value is 1
16:42:30,264 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pve_melee_damage Value is 1
16:42:30,265 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pve_spell_damage Value is 1
16:42:30,266 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pve_spell_conhitpercent Value is 10
16:42:30,267 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pvp_melee_damage Value is 1
16:42:30,268 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pvp_spell_damage Value is 1
16:42:30,269 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading heal_pvp_damage_value_rp Value is 8
16:42:30,270 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading block_cap Value is 0,6
16:42:30,317 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading evade_cap Value is 0,5
16:42:30,354 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading parry_cap Value is 0,5
16:42:30,411 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cs_opening_effectiveness Value is 1
16:42:30,413 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading money_drop Value is 1
16:42:30,415 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rp_worth_seconds Value is 300
16:42:30,416 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading health_regen_rate Value is 1
16:42:30,418 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading endurance_regen_rate Value is 1
16:42:30,419 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mana_regen_rate Value is 1
16:42:30,421 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading item_sell_ratio Value is 50
16:42:30,422 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading item_condition_loss_chance Value is 5
16:42:30,423 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mount_under_level_35_speed Value is 135
16:42:30,424 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mount_over_level_35_speed Value is 145
16:42:30,425 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_str_base Value is 30
16:42:30,426 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_str_multiplier Value is 1
16:42:30,428 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_con_base Value is 30
16:42:30,429 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_con_multiplier Value is 1
16:42:30,430 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_qui_base Value is 30
16:42:30,431 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_qui_multiplier Value is 1
16:42:30,432 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_dex_base Value is 30
16:42:30,433 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_dex_multiplier Value is 1
16:42:30,434 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_str_base Value is 20
16:42:30,435 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_str_multiplier Value is 6
16:42:30,436 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_con_base Value is 30
16:42:30,437 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_con_multiplier Value is 1
16:42:30,438 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_dex_base Value is 30
16:42:30,439 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_dex_multiplier Value is 1
16:42:30,440 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_qui_base Value is 30
16:42:30,442 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_qui_multiplier Value is 1
16:42:30,443 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_think_interval Value is 1500
16:42:30,444 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_damage_increase_startlevel Value is 30
16:42:30,445 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_damage_increase_perlevel Value is 0
16:42:30,446 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading npc_min_respawn_interval Value is 5
16:42:30,447 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_roam Value is True
16:42:30,448 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_base_hp Value is 500
16:42:30,449 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_hp_gain_per_con Value is 2
16:42:30,450 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_base_con Value is 30
16:42:30,452 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_randomwalk_chance Value is 20
16:42:30,453 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_followcheck_time Value is 500
16:42:30,454 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_default_classtype Value is DOL.GS.GameNPC
16:42:30,455 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_chances_to_style Value is 20
16:42:30,456 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_chances_to_cast Value is 25
16:42:30,457 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading RvRLinkDeathRelogGracePeriod Value is 20
16:42:30,458 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Timer_Killed_By_Mob Value is 30
16:42:30,459 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Timer_Killed_By_Player Value is 120
16:42:30,460 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Timer_Region_Changed Value is 30
16:42:30,461 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Relic_Return_Time Value is 1200
16:42:30,463 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_all_realms_df Value is False
16:42:30,464 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_bps_in_bgs Value is False
16:42:30,465 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bg_zones_open Value is True
16:42:30,466 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bg_zones_closed_message Value is The battlegrounds are not open on this server.
16:42:30,468 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading relic_players_required_on_pad Value is 16
16:42:30,469 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_minotaur_relics Value is False
16:42:30,470 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_warmapmgr Value is False
16:42:30,471 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_guard_los_check_time Value is 5
16:42:30,472 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading claim_num Value is 8
16:42:30,473 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_keep_balancing Value is False
16:42:30,474 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_live_keep_bonuses Value is False
16:42:30,475 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_supply_chain Value is False
16:42:30,476 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_hookpoints Value is True
16:42:30,477 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_keeps Value is True
16:42:30,479 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_keep_level Value is 4
16:42:30,480 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_keep_claim_level Value is 5
16:42:30,481 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_keep_level Value is 5
16:42:30,482 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_keep_upgrade_timer Value is False
16:42:30,483 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_structures_toughness Value is 100
16:42:30,484 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_keep_door_toughness Value is 100
16:42:30,485 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_tower_door_toughness Value is 100
16:42:30,486 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading structures_allowpetattack Value is True
16:42:30,487 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading doors_allowpetattack Value is True
16:42:30,489 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_rp_claim_multiplier Value is 100
16:42:30,490 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_rp_claim_multiplier Value is 1000
16:42:30,491 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_keep_captures Value is False
16:42:30,492 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_rp_base Value is 4500
16:42:30,493 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_rp_base Value is 500
16:42:30,494 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading lord_rp_worth_seconds Value is 300
16:42:30,495 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_rp_multiplier Value is 50
16:42:30,496 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_rp_multiplier Value is 50
16:42:30,497 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading upgrade_multiplier Value is 100
16:42:30,498 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_balance_multiplier Value is 1
16:42:30,499 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_balance_multiplier Value is 0,15
16:42:30,529 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading balance_towers_separate Value is True
16:42:30,530 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_guard_level_multiplier Value is 1,6
16:42:30,562 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_damage_multiplier Value is 1
16:42:30,566 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_spam_damage_multiplier Value is 1
16:42:30,570 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_guard_level_multiplier Value is 1
16:42:30,573 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_keeps Value is 2
16:42:30,577 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading autoequip_guards_loaded_from_db Value is True
16:42:30,581 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading automodel_guards_loaded_from_db Value is True
16:42:30,585 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pvp_unclaimed_keeps_enemy Value is False
16:42:30,588 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading missrate_reduction_per_attackers Value is 0
16:42:30,592 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_hitchance_damage_reduction_multiplier Value is 4,3
16:42:30,621 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading artifact_xp_rate Value is 350
16:42:30,623 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading scroll_drop_rate Value is 25
16:42:30,626 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_camp_bonus Value is 2
16:42:30,628 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading atlantis_teleport_plvl Value is 2
16:42:30,630 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_num_houses Value is 5000
16:42:30,632 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_starting_npctemplate_id Value is 500
16:42:30,634 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_indoor_house_items Value is 40
16:42:30,636 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_outdoor_house_items Value is 30
16:42:30,638 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading indoor_items_depend_on_size Value is True
16:42:30,640 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_cottage Value is 200000
16:42:30,642 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_house Value is 350000
16:42:30,644 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_villa Value is 600000
16:42:30,647 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_mansion Value is 1000000
16:42:30,649 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_lot_price_start Value is 950000000
16:42:30,651 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_lot_price_per_hour Value is 12000000
16:42:30,653 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_lot_price_minimum Value is 3000000
16:42:30,655 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_due_days Value is 7
16:42:30,657 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_check_interval Value is 120
16:42:30,659 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_lockbox_payments Value is 4
16:42:30,661 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_bounty_point_to_gold Value is 10000
16:42:30,662 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading consignment_use_bp Value is False
16:42:30,663 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_enabled Value is True
16:42:30,665 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_enable Value is True
16:42:30,666 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_enable_log Value is True
16:42:30,667 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_fee_percent Value is 20
16:42:30,668 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_search_limit Value is 300
16:42:30,669 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_realm_level Value is 0
16:42:30,671 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_money Value is 0
16:42:30,672 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_bps Value is 0
16:42:30,673 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_level Value is 1
16:42:30,674 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_classes Value is
16:42:30,675 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_races Value is
16:42:30,677 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading freelevel_days Value is 7
16:42:30,678 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading buff_range Value is 0
16:42:30,679 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_cata_slash_level Value is False
16:42:30,681 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading turret_player_cap_count Value is 5
16:42:30,682 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading turret_area_cap_count Value is 10
16:42:30,683 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading turret_area_cap_radius Value is 1000
16:42:30,698 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading theurgist_pet_cap Value is 16
16:42:30,699 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_cross_realm_items Value is False
16:42:30,700 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading slash_level_target Value is 0
16:42:30,701 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading slash_level_requirement Value is 50
16:42:30,702 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading give_dol_respec_at_level Value is 0
16:42:30,704 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading start_as_base_class Value is False
16:42:30,705 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_old_archery Value is False
16:42:30,706 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_duration Value is 4500
16:42:30,707 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_recast Value is 2000
16:42:30,708 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_again Value is 100
16:42:30,709 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_maxstagelength Value is 1500
16:42:30,711 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_guild Value is True
16:42:30,712 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading alliance_max Value is -1
16:42:30,713 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_num Value is 8
16:42:30,714 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading new_guild_dues Value is False
16:42:30,715 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_cross_realm_guilds Value is False
16:42:30,716 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guilds_claim_limit Value is 1
16:42:30,718 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_crafting Value is 5
16:42:30,719 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_xp Value is 5
16:42:30,720 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_rp Value is 2
16:42:30,721 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_bp Value is 0
16:42:30,722 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_artifact_xp Value is 5
16:42:30,723 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_masterlevel_xp Value is 20
16:42:30,724 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_merit_on_dragon_kill Value is 0
16:42:30,725 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_banner_lost_time Value is 1440
16:42:30,727 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading crafting_speed Value is 1
16:42:30,728 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading capital_city_crafting_skill_gain_bonus Value is 5
16:42:30,729 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading capital_city_crafting_speed_bonus Value is 1
16:42:30,730 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_craft_norealm_items Value is False
16:42:30,731 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_salvage_per_realm Value is False
16:42:30,732 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_salvage Value is False
16:42:30,733 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_auto_account_creation Value is True
16:42:30,734 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading time_between_account_creation Value is 0
16:42:30,735 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading time_between_account_creation_sameip Value is 15
16:42:30,736 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading total_accounts_allowed_sameip Value is 20
16:42:30,737 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading backup_deleted_characters Value is True
16:42:30,738 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allowed_custom_language_keys Value is CU; DE; FR; IT
16:42:30,739 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_language_system Value is False
16:42:33,143 - [MAIN] - INFO - DOL.Language.LanguageMgr - [LanguageMgr] Translations ID loaded.
16:42:33,151 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Multi Language Initialization: 12
16:42:33,151 - [MAIN] - INFO - DOL.GS.GameServer - Multi Language Initialization: True
16:42:33,151 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Multi Language Initialization: 12
16:42:33,158 - [MAIN] - INFO - DOL.Mail.MailMgr - Mail disabled
16:42:33,165 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Mail Manager Initialization: 12
16:42:33,165 - [MAIN] - INFO - DOL.GS.GameServer - Mail Manager Initialization: True
16:42:33,165 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Mail Manager Initialization: 12
16:42:33,178 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - Found script info file
16:42:33,304 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - Precompiled script assembly loaded: GameServerScripts, Version=1.9.6.3061, Culture=neutral, PublicKeyToken=null
16:42:33,306 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Searching for commands in GameServerScripts, Version=1.9.6.3061, Culture=neutral, PublicKeyToken=null
16:42:33,317 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&serverinfo' - (Shows information about the server) required plvl:1
16:42:33,318 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&switch' - (Equip Weapons from bag. (/switch 1h 1, will replace ur mainhand weapon with the first slot in ur backpack)) required plvl:1
16:42:33,318 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&version' - (Get the version of the GameServer) required plvl:1
16:42:33,318 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&npcdebug' - (Writes information of all npcs in a region to the console) required plvl:3
16:42:33,319 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Searching for commands in GameServer, Version=1.9.6.3061, Culture=neutral, PublicKeyToken=null
16:42:33,320 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&account' - (AdminCommands.Account.Description) required plvl:3
16:42:33,320 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&code' - (AdminCommands.Code.Description) required plvl:3
16:42:33,320 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&Reload' - (Reload various elements) required plvl:3
16:42:33,321 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&serverproperties' - (AdminCommands.ServerProperties.Description) required plvl:3
16:42:33,321 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&plvl' - (AdminCommands.plvl.Description) required plvl:3
16:42:33,321 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&addbind' - (GMCommands.AddBind.Description) required plvl:2
16:42:33,322 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&addhookpoint' - (GMCommands.HookPoint.Description) required plvl:2
16:42:33,322 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&announce' - (GMCommands.Announce.Description) required plvl:2
16:42:33,322 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&area' - (GMCommands.Area.Description) required plvl:2
16:42:33,322 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&ban' - (GMCommands.Ban.Description) required plvl:2
16:42:33,323 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&blink' - (Makes the specified UI Part of your target or yourself blinking.) required plvl:2
16:42:33,323 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cast' - (GMCommands.Cast.Description) required plvl:2
16:42:33,323 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&clientlist' - (Show a list of currently playing clients and their ID's) required plvl:2
16:42:33,324 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&translate' - ('/translate <TranslationID> <text in your actual language>' : translate the string in current language) required plvl:2
16:42:33,324 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&zone' - (/zone info) required plvl:2
16:42:33,324 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&crafting' - (GMCommands.Crafting.Description) required plvl:2
16:42:33,324 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&debug' - (GMCommands.Debug.Description) required plvl:2
16:42:33,325 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - ']jump' - (GMCommands.DebugJump.Description) required plvl:2
16:42:33,325 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&door' - (GMCommands.door.Description) required plvl:2
16:42:33,325 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&faction' - (GMCommands.Faction.Description) required plvl:2
16:42:33,326 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gmappeal' - (Commands for server staff to assist players with their Appeals.) required plvl:2
16:42:33,326 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gmrelic' - (GMCommands.GMRelic.Description) required plvl:2
16:42:33,327 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gmrelicpad' - (GMCommands.GMRelicPad.Description) required plvl:2
16:42:33,327 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&harm' - (GMCommands.Harm.Description) required plvl:2
16:42:33,327 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&heal' - (GMCommands.Heal.Description) required plvl:2
16:42:33,327 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&GMinfo' - (Various Information) required plvl:2
16:42:33,328 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&instance' - (This command assists in the creation of instances.) required plvl:2
16:42:33,328 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&item' - (GMCommands.Item.Description) required plvl:2
16:42:33,328 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&jump' - (GMCommands.Jump.Description) required plvl:2
16:42:33,329 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&keep' - (GMCommands.Keep.Description) required plvl:2
16:42:33,329 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&keepcomponent' - (GMCommands.KeepComponents.Description) required plvl:2
16:42:33,329 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&keepguard' - (GMCommands.KeepGuard.Description) required plvl:2
16:42:33,330 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&kick' - (GMCommands.Kick.Description) required plvl:2
16:42:33,330 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&merchant' - (GMCommands.Merchant.Description) required plvl:2
16:42:33,330 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&minorelic' - (GMCommands.MinoRelic.Description) required plvl:2
16:42:33,330 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mob' - (Mob creation and modification commands) required plvl:2
16:42:33,334 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&morph' - (Temporarily changes the target player's model) required plvl:2
16:42:33,334 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mountgm' - (Mount a steed) required plvl:2
16:42:33,335 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mute' - (Command to mute annoying players. Player mutes are temporary, allchars are set on an account and must be removed.) required plvl:2
16:42:33,335 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&npc' - (Various npc commands) required plvl:2
16:42:33,335 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&object' - (Various Object commands!) required plvl:2
16:42:33,336 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&path' - (There are several path functions) required plvl:2
16:42:33,336 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&player' - (Various Admin/GM commands to edit characters.) required plvl:2
16:42:33,336 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&removehouse' - (Remove House or you are) required plvl:2
16:42:33,336 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&resetability' - (/resetability - <self|target|group|cg|bg>) required plvl:2
16:42:33,337 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&siegeweapon' - (creates siege weapons) required plvl:2
16:42:33,337 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&speed' - (Change base speed of target (no parameter to see current speed)) required plvl:2
16:42:33,337 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&team' - (Server broadcast message for administrators) required plvl:2
16:42:33,338 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&teleport' - (Manage teleport destinations) required plvl:2
16:42:33,338 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&titlegm' - (Changes target player's titles) required plvl:2
16:42:33,338 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&walk' - (Commands a npc to walk!) required plvl:2
16:42:33,338 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stop' - (Stops the npc's movement!) required plvl:2
16:42:33,339 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&weather' - (Sets the weather for the current region) required plvl:2
16:42:33,339 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&advice' - (Ask for advice from an advisor) required plvl:1
16:42:33,339 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&advisor' - (Toggles Advisor status) required plvl:1
16:42:33,340 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&afk' - (Toggle away from keyboard. You may optional set a message to display.) required plvl:1
16:42:33,340 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&anonymous' - (Toggle anonymous mode (name doesn't show up in /who)) required plvl:1
16:42:33,340 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&assist' - (Assist your target) required plvl:1
16:42:33,340 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&autoloot' - (automaticly pick up any loot that drops in your area) required plvl:1
16:42:33,341 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&autosplit' - (Choose how the loot and money are split between members of group) required plvl:1
16:42:33,341 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&battlechat' - (Battle group command) required plvl:1
16:42:33,357 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&battlegroup' - (Battle group command) required plvl:1
16:42:33,357 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bind' - (Binds your soul to a bind location, you will start from there after you die and /release) required plvl:1
16:42:33,357 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&boat' - (Boat command (use /boat for options)) required plvl:1
16:42:33,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&boot' - (Kicks a player out of your house) required plvl:1
16:42:33,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bountyrent' - (Pay house rent with bountypoints) required plvl:1
16:42:33,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&broadcast' - (Broadcast something to other players in the same zone) required plvl:1
16:42:33,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cancelstyle' - (Toggle cancelstyle flag.) required plvl:1
16:42:33,359 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&chat' - (Chat group command) required plvl:1
16:42:33,359 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&chatgroup' - (Chat group command) required plvl:1
16:42:33,359 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&checkappeal' - (Checks the status of your appeal or cancels it.) required plvl:1
16:42:33,360 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rearrange' - (Allows you to rearrange your character overview.) required plvl:1
16:42:33,360 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&webdisplay' - (Set informations displayed on the herald) required plvl:1
16:42:33,360 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cloak' - (Show / hide your cloak.) required plvl:1
16:42:33,361 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cmdhelp' - (Displays available commands) required plvl:1
16:42:33,361 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&appeal' - (Usage: '/appeal <appeal type> <appeal text>) required plvl:1
16:42:33,361 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reportbug' - (Use /appeal to file an appeal) required plvl:1
16:42:33,361 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reportharass' - (Use /appeal to file an appeal) required plvl:1
16:42:33,365 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reporttos' - (Use /appeal to file an appeal) required plvl:1
16:42:33,365 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reportstuck' - (Use /appeal to file an appeal) required plvl:1
16:42:33,365 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&appea' - (Use /appeal to file an appeal) required plvl:1
16:42:33,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&trade' - (Broadcast a trade message to other players in the same region) required plvl:1
16:42:33,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&lfg' - (Broadcast a LFG message to other players in the same region) required plvl:1
16:42:33,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&region' - (Broadcast something to other players in the same region) required plvl:1
16:42:33,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&search' - (Search the current area.) required plvl:1
16:42:33,367 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&filter' - (Turns off the bad word filter.) required plvl:1
16:42:33,382 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&realm' - (Displays the current realm status.) required plvl:1
16:42:33,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&relics' - (Displays the current relic status.) required plvl:1
16:42:33,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&roleplay' - (Flags a player with an tag to indicate the player is a role player.) required plvl:1
16:42:33,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&deal' - (Deal one card to a player in your group. Cards must first be prepared with /shuffle.) required plvl:1
16:42:33,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&disband' - (Disband from a group) required plvl:1
16:42:33,384 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&discard' - (Discard card # from your hand, or discard all cards.) required plvl:1
16:42:33,384 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dismount' - (Dismount your steed) required plvl:1
16:42:33,384 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dropmr' - (Drops the Minotaurrelic.) required plvl:1
16:42:33,385 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&duel' - (Duel another player) required plvl:1
16:42:33,385 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&email' - (Set e-mail address for current account) required plvl:1
16:42:33,385 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&emote' - (Roleplay an action or emotion) required plvl:1
16:42:33,386 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&clap' - (Make a clapping gesture) required plvl:1
16:42:33,388 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dismiss' - (Make a dismissing gesture) required plvl:1
16:42:33,388 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&flex' - (Makes a flexing gesture) required plvl:1
16:42:33,389 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&hug' - (Makes a hugging gesture) required plvl:1
16:42:33,389 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&induct' - (Make a ceremonial induction gesture) required plvl:1
16:42:33,389 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&kiss' - (Blow a kiss) required plvl:1
16:42:33,392 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&laugh' - (Makes a laughing gesture) required plvl:1
16:42:33,392 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&military' - (A military salute) required plvl:1
16:42:33,393 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&no' - (Shake your head) required plvl:1
16:42:33,393 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&point' - (Points to something in front of you) required plvl:1
16:42:33,394 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&ponder' - (For when you just want to go "hmmmmmmm") required plvl:1
16:42:33,394 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&present' - (To present someone with something) required plvl:1
16:42:33,395 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&raise' - (Raise your hand, as in volunteering or getting attention) required plvl:1
16:42:33,395 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rude' - (A rude gesture) required plvl:1
16:42:33,396 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&salute' - (Makes a stiff salute) required plvl:1
16:42:33,396 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&shrug' - (Shrug your shoulders) required plvl:1
16:42:33,410 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&slap' - (Slap someone) required plvl:1
16:42:33,410 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&slit' - (Let your enemy know what you want to do to him) required plvl:1
16:42:33,411 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&surrender' - (I give up!) required plvl:1
16:42:33,411 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&taunt' - (A very mean gesture when you really want to insult someone) required plvl:1
16:42:33,412 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&victory' - (Make a victory cheer) required plvl:1
16:42:33,412 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&wave' - (Makes a waving gesture) required plvl:1
16:42:33,413 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cheer' - (Cheer with both hands in the air) required plvl:1
16:42:33,413 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&sweat' - (sweat) required plvl:1
16:42:33,414 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stagger' - (stagger) required plvl:1
16:42:33,414 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&yawn' - (yawn) required plvl:1
16:42:33,414 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&doh' - (doh) required plvl:1
16:42:33,415 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&confuse' - (Confused) required plvl:1
16:42:33,415 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&shiver' - (shiver) required plvl:1
16:42:33,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rofl' - (rofl) required plvl:1
16:42:33,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mememe' - (mememe) required plvl:1
16:42:33,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&worship' - (worship) required plvl:1
16:42:33,417 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&drink' - (drink) required plvl:1
16:42:33,417 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&angry' - (Look angrily around) required plvl:1
16:42:33,427 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&lookfar' - (Lets you look into the distance) required plvl:1
16:42:33,427 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&smile' - (Make a big smile) required plvl:1
16:42:33,428 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stench' - (Wave away the local stench) required plvl:1
16:42:33,428 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&yes' - (Nod your head) required plvl:1
16:42:33,428 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cry' - (Sob pathetically) required plvl:1
16:42:33,429 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&curtsey' - (Give a low curtsey) required plvl:1
16:42:33,429 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dance' - (Dance a little jig) required plvl:1
16:42:33,429 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bang' - (Bang on your shield) required plvl:1
16:42:33,430 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&beckon' - (Makes a beckoning gesture with character's hand) required plvl:1
16:42:33,430 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&beg' - (Plea for items or money) required plvl:1
16:42:33,430 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&blush' - (Act in a shy manner) required plvl:1
16:42:33,431 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bow' - (Give an honorable bow) required plvl:1
16:42:33,431 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&charge' - (Onward!) required plvl:1
16:42:33,431 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&facegloc' - (Turns and faces your character into the direction of the x, y coordinates provided (using DOL region global coordinates).) required plvl:1
16:42:33,432 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&faceloc' - (Turns and faces your character into the direction of the x, y coordinates provided (using Mythic zone coordinates).) required plvl:1
16:42:33,432 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&formation' - (Change the formation of your pets!) required plvl:1
16:42:33,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&freelevel' - (Display state of FreeLevel) required plvl:1
16:42:33,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&friend' - (Adds/Removes a player to/from your friendlist!) required plvl:1
16:42:33,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gloc' - (Show the current coordinates) required plvl:1
16:42:33,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&groundassist' - (Show the current coordinates) required plvl:1
16:42:33,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&group' - (Say something to other chat group players) required plvl:1
16:42:33,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gtrange' - (Gives a range to a ground target) required plvl:1
16:42:33,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gc' - (Guild command (use /gc help for options)) required plvl:1
16:42:33,438 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gu' - (Guild Chat command) required plvl:1
16:42:33,438 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&o' - (Speak in officer chat (Must be a guild officer)) required plvl:1
16:42:33,439 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&as' - (Sends a message to the alliance chat) required plvl:1
16:42:33,453 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&held' - (List the cards in your hand. Use 'held g' to display faceup cards held by group members.) required plvl:1
16:42:33,454 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&helm' - (Toggles the helm on and off when wearing an helm.) required plvl:1
16:42:33,454 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&hood' - (Toggles the hood on and off when wearing a hooded cloak.) required plvl:1
16:42:33,454 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&horse' - (Horse emotes) required plvl:1
16:42:33,455 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&summon' - (Summon horse) required plvl:1
16:42:33,455 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&house' - (Show various housing information) required plvl:1
16:42:33,455 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&houseface' - (Points to the specified guildhouse of the guild noted, or the lot number noted in the command. /houseface alone will point to one's personal home.) required plvl:1
16:42:33,456 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&housefriend' - (Invite a specified player to your house) required plvl:1
16:42:33,456 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&housepoints' - (Toggles display of housepoints) required plvl:1
16:42:33,457 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&ignore' - (Adds/Removes a player to/from your Ignorelist!) required plvl:1
16:42:33,457 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&invite' - (Invite a specified or targeted player to join your group) required plvl:1
16:42:33,457 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&knock' - (Knock on a house) required plvl:1
16:42:33,458 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&language' - (Change your server-language display. Custom 'CU' is what your administrator decides.) required plvl:1
16:42:33,458 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&lastname' - (Set/change your lastname.) required plvl:1
16:42:33,459 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&level' - (Allows you to level 20 instantly if you have a level 50) required plvl:1
16:42:33,459 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&makeleader' - (Set a new group leader (can be used by current leader).) required plvl:1
16:42:33,459 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&namemount' - (Name your hourse) required plvl:1
16:42:33,460 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&news' - (Show news on social interface) required plvl:1
16:42:33,460 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&nohelp' - (Toggle nohelp on or off, to stop receiving help from your realm) required plvl:1
16:42:33,461 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&Noqueue' - (Allows you to disable/enable queuing) required plvl:1
16:42:33,461 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&password' - (Changes your account password) required plvl:1
16:42:33,461 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&played' - (Returns the age of the character) required plvl:1
16:42:33,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&pray' - (You can pray on your gravestones to get some experience back) required plvl:1
16:42:33,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&quest' - (Display the players completed quests) required plvl:1
16:42:33,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&quit' - (Removes the player from the world) required plvl:1
16:42:33,476 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&random' - (prints out a random number between 1 and the number specified.) required plvl:1
16:42:33,476 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&range' - (Gives a range to a target) required plvl:1
16:42:33,477 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&release' - (When you are dead you can '/release'. This will bring you back to your bindpoint!) required plvl:1
16:42:33,477 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&repair' - (You can repair an item when you are a crafter) required plvl:1
16:42:33,477 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&report' - (Reports a bug) required plvl:1
16:42:33,478 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&respec' - (Respecs the char) required plvl:1
16:42:33,478 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&roll' - (simulates a dice roll.) required plvl:1
16:42:33,479 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rp' - (toggle receiving realm points) required plvl:1
16:42:33,479 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&safety' - (Turns off PvP safety flag.) required plvl:1
16:42:33,489 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&salvage' - (You can salvage an item when you are a crafter) required plvl:1
16:42:33,490 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&say' - (Say something to other players around you) required plvl:1
16:42:33,490 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&send' - (Sends a private message to a player) required plvl:1
16:42:33,490 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&settitle' - (Sets the current player title) required plvl:1
16:42:33,491 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&setwho' - (Set your class or trade for /who output) required plvl:1
16:42:33,491 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&show' - (Show all your cards to the other players (all cards become 'up').) required plvl:1
16:42:33,491 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&shuffle' - (Shuffle # of decks, minimum 1. Must be used before /deal.) required plvl:1
16:42:33,492 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&spacing' - (Change the spacing of your pets!) required plvl:1
16:42:33,492 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&sprint' - (Toggles sprint mode) required plvl:1
16:42:33,493 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stand' - (Stands up when sitting) required plvl:1
16:42:33,493 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&sit' - (Sit) required plvl:1
16:42:33,493 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stats' - (Displays player statistics) required plvl:1
16:42:33,494 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&statsanon' - (Hides your statistics) required plvl:1
16:42:33,494 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stuck' - (Removes the player from the world and put it to a safe location) required plvl:1
16:42:33,494 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&target' - (target a player by name) required plvl:1
16:42:33,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&task' - (Show the actual task) required plvl:1
16:42:33,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&time' - (time in game) required plvl:1
16:42:33,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&train' - (Trains a line by the specified amount) required plvl:1
16:42:33,502 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&viewreports' - (Allows you to view submitted bug reports.) required plvl:1
16:42:33,502 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&where' - (Ask where an NPC is from Guards) required plvl:1
16:42:33,503 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&whisper' - (Sends a private message to your target if it is close enough) required plvl:1
16:42:33,503 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&who' - (Shows who is online) required plvl:1
16:42:33,503 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&xp' - (toggle receiving experience points) required plvl:1
16:42:33,504 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&yell' - (Yell something to other players around you) required plvl:1
16:42:33,505 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&xfire' - (Xfire support) required plvl:1
16:42:33,510 - [MAIN] - INFO - DOL.GS.ScriptMgr - Loaded 249 commands!
16:42:33,510 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Script compilation: 8
16:42:33,510 - [MAIN] - INFO - DOL.GS.GameServer - Script compilation: True
16:42:33,519 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Script compilation: 8
16:42:33,545 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 8MB - World Manager: EarlyInit
16:42:33,596 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 346 blocks read from F:\ServeurPrivé\Dawn of Light\.\config\regions.xml
16:42:33,597 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 473 blocks read from F:\ServeurPrivé\Dawn of Light\.\config\zones.xml
16:42:33,607 - [MAIN] - INFO - DOL.GS.WorldMgr - Loaded 27 Albion, 20 Midgard and 14 Hibernia teleport locations
16:42:33,608 - [MAIN] - DEBUG - DOL.GS.WorldMgr - loading mobs from DB...
16:42:36,789 - [MAIN] - WARN - DOL.Database.Connection.DataConnection - SQL Select (DEFAULT) took 3167ms!
SELECT `Mob_ID`, `ClassType`, `TranslationId`, `Name`, `Suffix`, `Guild`, `ExamineArticle`, `MessageArticle`, `X`, `Y`, `Z`, `Speed`, `Heading`, `Region`, `Model`, `Size`, `Strength`, `Constitution`, `Dexterity`, `Quickness`, `Intelligence`, `Piety`, `Empathy`, `Charisma`, `Level`, `Realm`, `EquipmentTemplateID`, `ItemsListTemplateID`, `NPCTemplateID`, `Race`, `Flags`, `AggroLevel`, `AggroRange`, `MeleeDamageType`, `RespawnInterval`, `FactionID`, `BodyType`, `HouseNumber`, `Brain`, `PathID`, `MaxDistance`, `OwnerID`, `RoamingRange`, `IsCloakHoodUp`, `Gender`, `PackageID`, `VisibleWeaponSlots` FROM `Mob`
16:42:36,887 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 32MB - Region Data Loaded
16:42:36,934 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 37MB - 346 Regions Loaded
16:42:36,949 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Camelot Hills, to region Region001
16:42:36,950 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Salisbury Plains, to region Region001
16:42:36,950 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Black Mtns. South, to region Region001
16:42:36,950 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Black Mtns. North, to region Region001
16:42:36,951 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dartmoor, to region Region001
16:42:36,951 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cornwall, to region Region001
16:42:36,951 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Llyn Barfog, to region Region001
16:42:36,951 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Campacorentin Forest, to region Region001
16:42:36,951 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Avalon Marsh, to region Region001
16:42:36,951 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lyonesse, to region Region001
16:42:36,952 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forest Sauvage, to region Region001
16:42:36,952 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snowdonia, to region Region001
16:42:36,952 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caerwent, to region Region002
16:42:36,952 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Pennine Mountains, to region Region001
16:42:36,952 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Labyrinth, to region Region245
16:42:36,953 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hadrian's Wall, to region Region001
16:42:36,953 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Old Sarum, to region Region002
16:42:36,953 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rilan, to region Region002
16:42:36,953 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dalton, to region Region002
16:42:36,953 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stonehenge Barrows, to region Region020
16:42:36,954 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Brisworthy, to region Region002
16:42:36,954 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tomb of Mithra, to region Region021
16:42:36,954 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Keltoi Fogou, to region Region022
16:42:36,955 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Catacombs of Cardova, to region Region023
16:42:36,955 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tepok's Mine, to region Region024
16:42:36,955 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Camelot, to region Region010
16:42:36,955 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Constantine's Sound, to region Region027
16:42:36,955 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Grenlock's Sound, to region Region027
16:42:36,956 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lamfhota's Sound, to region Region027
16:42:36,956 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Hesperos, to region Region030
16:42:36,956 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mesothalassa, to region Region030
16:42:36,956 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Boreal, to region Region030
16:42:36,956 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Notos, to region Region030
16:42:36,957 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Anatole, to region Region030
16:42:36,957 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cetus' Pit, to region Region035
16:42:36,957 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sobekite Eternal, to region Region036
16:42:36,957 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Temple of Twilight, to region Region037
16:42:36,958 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stygian Delta, to region Region030
16:42:36,958 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Land of Atum, to region Region030
16:42:36,958 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Ma'ati, to region Region040
16:42:36,958 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Typhon's Reach, to region Region030
16:42:36,958 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ashen Isles, to region Region030
16:42:36,958 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Green Glades, to region Region030
16:42:36,959 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arbor Glen, to region Region030
16:42:36,959 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Great Pyramid of Stygia, to region Region045
16:42:36,959 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deep Volcanus, to region Region046
16:42:36,959 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Aerus, to region Region047
16:42:36,959 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region048
16:42:36,960 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rugnog's Haven, to region Region049
16:42:36,960 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Avalon City, to region Region050
16:42:36,960 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Isle of Glass, to region Region051
16:42:36,960 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Avalon Isle, to region Region051
16:42:36,960 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dales of Devwy, to region Region051
16:42:36,960 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caldey, to region Region051
16:42:36,961 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gwyddneau, to region Region051
16:42:36,961 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aldland, to region Region051
16:42:36,961 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Inishail Island, to region Region051
16:42:36,961 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Underground Forest, to region Region058
16:42:36,961 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Glashtin Forges, to region Region059
16:42:36,962 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caer Sidi, to region Region060
16:42:36,962 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Krondon, to region Region061
16:42:36,962 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Crystal Cave, to region Region062
16:42:36,962 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Roman Aqueducts, to region Region063
16:42:36,962 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aylesbury, to region Region002
16:42:36,963 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Inconnu Crypt, to region Region065
16:42:36,963 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Underground Forest, to region Region066
16:42:36,963 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Deadlands of Annwn, to region Region067
16:42:36,963 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lower Crypt, to region Region068
16:42:36,963 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Darkspire, to region Region069
16:42:36,964 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ruins of Atlantis, to region Region070
16:42:36,964 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ruinerar av Atlantis, to region Region071
16:42:36,964 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Scrios de Atlantis, to region Region072
16:42:36,964 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Hesperos, to region Region073
16:42:36,964 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mesothalassa, to region Region073
16:42:36,965 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Boreal, to region Region073
16:42:36,965 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Notos, to region Region073
16:42:36,965 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Anatole, to region Region073
16:42:36,965 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cetus' Pit, to region Region078
16:42:36,965 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sobekite Eternal, to region Region079
16:42:36,966 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Temple of Twilight, to region Region080
16:42:36,966 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stygian Delta, to region Region073
16:42:36,966 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Land of Atum, to region Region073
16:42:36,966 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Ma'ati, to region Region083
16:42:36,966 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Typhon's Reach, to region Region073
16:42:36,966 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ashen Isles, to region Region073
16:42:36,967 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Green Glades, to region Region073
16:42:36,967 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arbor Glen, to region Region073
16:42:36,967 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Great Pyramid of Stygia, to region Region088
16:42:36,967 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deep Volcanus, to region Region089
16:42:36,967 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Aerus, to region Region090
16:42:36,968 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Celestius, to region Region091
16:42:36,968 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Veil Rift, to region Region092
16:42:36,968 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shar Labyrinth, to region Region093
16:42:36,968 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Queen's Labyrinth, to region Region094
16:42:36,968 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Frontlines, to region Region095
16:42:36,968 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Underground Forest, to region Region096
16:42:36,969 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Deadlands, to region Region097
16:42:36,969 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Darkspire, to region Region098
16:42:36,969 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Glashtin Forge, to region Region099
16:42:36,969 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vale of Mularn, to region Region100
16:42:36,969 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, East Svealand, to region Region100
16:42:36,970 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, West Svealand, to region Region100
16:42:36,970 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gotar, to region Region100
16:42:36,976 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Muspelheim, to region Region100
16:42:36,976 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Myrkwood Forest, to region Region100
16:42:36,976 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Skona Ravine, to region Region100
16:42:36,976 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vanern Swamp, to region Region100
16:42:36,976 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Raumarik, to region Region100
16:42:36,977 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Frontlines, to region Region109
16:42:36,977 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Uppland, to region Region100
16:42:36,977 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Yggdra Forest, to region Region100
16:42:36,977 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jamtland Mountains, to region Region100
16:42:36,977 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Erikstaad, to region Region102
16:42:36,977 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Odin's Gate, to region Region100
16:42:36,978 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Malmohus, to region Region100
16:42:36,978 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arothi, to region Region102
16:42:36,978 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Carlingford, to region Region102
16:42:36,978 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Wyndham, to region Region102
16:42:36,978 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jordheim, to region Region101
16:42:36,979 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Frisia, to region Region102
16:42:36,979 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Kaupang, to region Region102
16:42:36,979 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aphophian, to region Region123
16:42:36,979 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hephaestian, to region Region124
16:42:36,979 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Spindelhalla, to region Region125
16:42:36,979 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vendo Caverns, to region Region126
16:42:36,980 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Varulvhamn, to region Region127
16:42:36,980 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cursed Tomb, to region Region128
16:42:36,980 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nisse's Lair, to region Region129
16:42:36,980 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Hesperos, to region Region130
16:42:36,980 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mesothalassa, to region Region130
16:42:36,981 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Boreal, to region Region130
16:42:36,981 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Notos, to region Region130
16:42:36,981 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Anatole, to region Region130
16:42:36,981 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cetus' Pit, to region Region135
16:42:36,981 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sobekite Eternal, to region Region136
16:42:36,982 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Temple of Twilight, to region Region137
16:42:36,984 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stygian Delta, to region Region130
16:42:36,984 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Land of Atum, to region Region130
16:42:36,984 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Ma'ati, to region Region140
16:42:36,985 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Typhon's Reach, to region Region130
16:42:36,985 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ashen Isles, to region Region130
16:42:36,985 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Green Glades, to region Region130
16:42:36,985 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arbor Glen, to region Region130
16:42:36,985 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Great Pyramid of Stygia, to region Region145
16:42:36,986 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deep Volcanus, to region Region146
16:42:36,986 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Aerus, to region Region147
16:42:36,986 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Frontlines, to region Region148
16:42:36,986 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nyttheim, to region Region149
16:42:36,986 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Trollheim, to region Region150
16:42:36,986 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aegir's Landing, to region Region151
16:42:36,987 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gripklosa Mountains, to region Region151
16:42:36,987 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Delling Crater, to region Region151
16:42:36,987 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Faraheim, to region Region151
16:42:37,002 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Munin Sound, to region Region151
16:42:37,002 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Iarnwood, to region Region151
16:42:37,002 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dummy Zone, to region Region151
16:42:37,002 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Modernagrav, to region Region151
16:42:37,003 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tuscaran Glacier, to region Region160
16:42:37,003 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Iarnvidiur's Lair, to region Region161
16:42:37,003 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Deadlands, to region Region162
16:42:37,003 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Agramon, to region Region163
16:42:37,003 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Irish Sea, to region Region163
16:42:37,004 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cathal Valley, to region Region165
16:42:37,004 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unamed Sea 2, to region Region163
16:42:37,004 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Odin's Gate, to region Region163
16:42:37,004 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jamtland Mountains, to region Region163
16:42:37,004 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Yggdra Forest, to region Region163
16:42:37,004 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Uppland, to region Region163
16:42:37,005 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Emain Macha, to region Region163
16:42:37,005 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Breifine, to region Region163
16:42:37,005 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cruachan Gorge, to region Region163
16:42:37,005 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mount Collory, to region Region163
16:42:37,005 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snowdonia, to region Region163
16:42:37,006 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forest Sauvage, to region Region163
16:42:37,006 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Pennine Mountains, to region Region163
16:42:37,006 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hadrian's Wall, to region Region163
16:42:37,006 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Fomor, to region Region180
16:42:37,006 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Domnann, to region Region181
16:42:37,007 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caillte Garran, to region Region181
16:42:37,007 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vale of Balor, to region Region181
16:42:37,007 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cothrom Gorge, to region Region181
16:42:37,007 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, World's End, to region Region181
16:42:37,007 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vigilant Rock, to region Region181
16:42:37,007 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Allta Fearann, to region Region181
16:42:37,008 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Darkspire, to region Region188
16:42:37,008 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Glashtin Forges, to region Region189
16:42:37,010 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tur Suil, to region Region190
16:42:37,011 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Galladoria, to region Region191
16:42:37,011 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Le Sanctuaire Du Haut Consule, to region Region192
16:42:37,011 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Le Sanctuaire Du Haut Consule, to region Region193
16:42:37,011 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Le Sanctuaire Du Haut Consule, to region Region194
16:42:37,011 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Otherworld, to region Region195
16:42:37,011 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Otherworld, to region Region196
16:42:37,012 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Otherworld, to region Region197
16:42:37,012 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shaitan, to region Region198
16:42:37,012 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Volurgon, to region Region199
16:42:37,012 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lough Derg, to region Region200
16:42:37,012 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Silvermine Mts., to region Region200
16:42:37,013 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shannon Estuary, to region Region200
16:42:37,013 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cliffs of Moher, to region Region200
16:42:37,013 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lough Gur, to region Region200
16:42:37,013 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Bog of Cullen, to region Region200
16:42:37,028 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Valley of Bri Leith, to region Region200
16:42:37,028 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Connacht, to region Region200
16:42:37,028 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cursed Forest, to region Region200
16:42:37,028 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tir na Nog, to region Region201
16:42:37,029 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mount Collory, to region Region200
16:42:37,029 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cruachan Gorge, to region Region200
16:42:37,029 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Breifine, to region Region200
16:42:37,029 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Meath, to region Region202
16:42:37,029 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Emain Macha, to region Region200
16:42:37,030 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dunshire, to region Region202
16:42:37,030 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sheeroe Hills, to region Region200
16:42:37,030 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Torrylin, to region Region202
16:42:37,030 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Kilcullen, to region Region202
16:42:37,030 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Saeranthal, to region Region202
16:42:37,030 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Coruscating Mine, to region Region220
16:42:37,031 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Muire Tomb, to region Region221
16:42:37,031 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Spraggon Den, to region Region222
16:42:37,031 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Koalinth Caverns, to region Region223
16:42:37,031 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Treibh Caillte, to region Region224
16:42:37,031 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aberillan, to region Region202
16:42:37,032 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Abandoned Mines, to region Region226
16:42:37,032 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Abandoned Mines, to region Region227
16:42:37,032 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Abandoned Mines, to region Region228
16:42:37,032 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Grounds, to region Region229
16:42:37,032 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, ArtOutside, to region Region231
16:42:37,033 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, ArtInside, to region Region232
16:42:37,033 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Summoner's Hall, to region Region233
16:42:37,033 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Proving Grounds, to region Region234
16:42:37,033 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Lions Den, to region Region235
16:42:37,033 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Hills of Claret, to region Region236
16:42:37,034 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Killaloe, to region Region237
16:42:37,034 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Thidranki, to region Region238
16:42:37,034 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Braemar, to region Region239
16:42:37,037 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Wilton, to region Region240
16:42:37,037 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Molvik, to region Region241
16:42:37,037 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, TestBG, to region Region242
16:42:37,037 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Kobold Undercity, to region Region243
16:42:37,037 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Passage of Conflict, to region Region244
16:42:37,038 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Darkness Falls, to region Region249
16:42:37,038 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Leirvik, to region Region242
16:42:37,038 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region256
16:42:37,038 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region257
16:42:37,038 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region258
16:42:37,039 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Chiltern, to region Region002
16:42:37,039 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sherborne, to region Region002
16:42:37,039 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stoneleigh, to region Region002
16:42:37,039 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Holmestrand, to region Region102
16:42:37,039 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nittedal, to region Region102
16:42:37,040 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stavgaard, to region Region102
16:42:37,040 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tullamore, to region Region202
16:42:37,054 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Moycullen, to region Region202
16:42:37,054 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Broughshane, to region Region202
16:42:37,055 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region278
16:42:37,055 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region279
16:42:37,055 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region280
16:42:37,055 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region281
16:42:37,055 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region282
16:42:37,056 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region283
16:42:37,056 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region284
16:42:37,056 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region285
16:42:37,056 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region286
16:42:37,056 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region287
16:42:37,056 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region288
16:42:37,057 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region289
16:42:37,057 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region290
16:42:37,057 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region291
16:42:37,057 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region292
16:42:37,057 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region293
16:42:37,058 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region294
16:42:37,058 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region295
16:42:37,058 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region296
16:42:37,058 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region297
16:42:37,058 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region298
16:42:37,058 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region300
16:42:37,059 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region301
16:42:37,059 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region302
16:42:37,059 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region303
16:42:37,059 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region304
16:42:37,060 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region305
16:42:37,060 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region306
16:42:37,060 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region307
16:42:37,060 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region308
16:42:37,060 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region309
16:42:37,063 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region310
16:42:37,063 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region311
16:42:37,063 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region312
16:42:37,063 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region313
16:42:37,064 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region314
16:42:37,064 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region315
16:42:37,064 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region316
16:42:37,064 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region317
16:42:37,064 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region318
16:42:37,064 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region319
16:42:37,065 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region320
16:42:37,065 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region321
16:42:37,065 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region322
16:42:37,065 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region323
16:42:37,065 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region324
16:42:37,066 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib 30 Dungeon, to region Region325
16:42:37,080 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb 30 Dungeon, to region Region326
16:42:37,080 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caverns of Madness, to region Region327
16:42:37,081 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid 30 Dungeon, to region Region328
16:42:37,081 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jarlsberg's Hideout, to region Region329
16:42:37,081 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Foothills of Albion, to region Region330
16:42:37,081 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Thieves Den, to region Region331
16:42:37,081 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rebel Half Orc Lair, to region Region332
16:42:37,082 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Haunted Halls, to region Region333
16:42:37,082 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Foothills of Midgard, to region Region334
16:42:37,082 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Foothills of Hibernia, to region Region335
16:42:37,082 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demonic Prison, to region Region336
16:42:37,082 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demonic Prison, to region Region337
16:42:37,083 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demonic Prison, to region Region338
16:42:37,083 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Brimstone Caverns, to region Region339
16:42:37,083 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Helgardh, to region Region340
16:42:37,083 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cave of Cruachan, to region Region341
16:42:37,083 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid Launch 2, to region Region342
16:42:37,084 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb Launch 2, to region Region343
16:42:37,084 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib Launch 2, to region Region344
16:42:37,084 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tomte Prison, to region Region345
16:42:37,084 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nisse's Retreat, to region Region346
16:42:37,084 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lair of the Demon Lord, to region Region347
16:42:37,085 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Baron's Gaol, to region Region348
16:42:37,085 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lios's Eternal Rest, to region Region349
16:42:37,085 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Liche's Unrest, to region Region350
16:42:37,085 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nephraal's Gaol, to region Region351
16:42:37,085 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Morfesa's Gaol, to region Region352
16:42:37,085 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Den of Bones, to region Region353
16:42:37,086 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Lost Burrow, to region Region354
16:42:37,086 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib 45 Dungeon, to region Region355
16:42:37,086 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb 45 Dungeon, to region Region356
16:42:37,086 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Lair, to region Region357
16:42:37,086 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Burrow, to region Region358
16:42:37,089 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid 45 Dungeon, to region Region359
16:42:37,089 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, King Eirik's Throne Room, to region Region360
16:42:37,089 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arachnid's Labyrinth, to region Region361
16:42:37,090 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Master's Lair, to region Region362
16:42:37,090 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Anataeus' Sanctuary, to region Region363
16:42:37,090 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Keeper Iraeda's Sanctuary, to region Region364
16:42:37,090 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Bandit Lair, to region Region365
16:42:37,090 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gnoll Lair, to region Region366
16:42:37,091 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vandr's Bane, to region Region367
16:42:37,091 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Past and Present, to region Region368
16:42:37,091 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Half-Orc Camp, to region Region369
16:42:37,091 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Brutal Realization, to region Region370
16:42:37,091 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, History Repeats Itself, to region Region371
16:42:37,092 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hounds of Arawn, to region Region372
16:42:37,092 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Passage of Echoes, to region Region373
16:42:37,092 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unrestful Tomb, to region Region374
16:42:37,092 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lost Passages, to region Region375
16:42:37,107 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Goblin's Cookery, to region Region376
16:42:37,107 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Beastmaster's Den, to region Region377
16:42:37,107 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Keeper Garran's Sanctuary, to region Region378
16:42:37,107 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region379
16:42:37,107 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lair of Doom, to region Region380
16:42:37,108 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Arena, to region Region381
16:42:37,108 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region382
16:42:37,108 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region383
16:42:37,108 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Ritual Hall, to region Region384
16:42:37,108 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Betrayer's Den, to region Region385
16:42:37,108 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region386
16:42:37,109 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region387
16:42:37,109 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region388
16:42:37,109 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shafts of the Tenebrae, to region Region389
16:42:37,109 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lair of the Exiled, to region Region390
16:42:37,109 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, La Tour des Arcanes ALB, to region Region391
16:42:37,110 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Hall of Reawakening, to region Region392
16:42:37,110 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Hidden Crypt, to region Region393
16:42:37,110 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, King Constantine's Throne Room, to region Region394
16:42:37,110 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, King Lamfhotas' Throne Room, to region Region395
16:42:37,110 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Depths of Despair, to region Region396
16:42:37,111 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Realm of the Damned, to region Region397
16:42:37,111 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, La Tour des Arcanes MID, to region Region398
16:42:37,111 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, La Tour des Arcanes HIB, to region Region399
16:42:37,111 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region400
16:42:37,111 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region401
16:42:37,112 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region402
16:42:37,112 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region403
16:42:37,112 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region404
16:42:37,112 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region405
16:42:37,112 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region406
16:42:37,113 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region407
16:42:37,115 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region408
16:42:37,115 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region409
16:42:37,116 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region410
16:42:37,116 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region411
16:42:37,116 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region412
16:42:37,116 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region413
16:42:37,116 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region414
16:42:37,116 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region415
16:42:37,117 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region416
16:42:37,117 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region417
16:42:37,117 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region418
16:42:37,117 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region419
16:42:37,117 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region420
16:42:37,118 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region421
16:42:37,118 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region422
16:42:37,118 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region423
16:42:37,133 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region424
16:42:37,133 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Lost Wing, to region Region425
16:42:37,133 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deliah's Sanctuary, to region Region426
16:42:37,133 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region427
16:42:37,133 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region428
16:42:37,134 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snyblem's Lair, to region Region429
16:42:37,134 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Plutonian Shore, to region Region430
16:42:37,134 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region431
16:42:37,134 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region432
16:42:37,134 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snarg's Grotto, to region Region433
16:42:37,135 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Maze of Tribulation, to region Region434
16:42:37,135 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Smelting Pot, to region Region435
16:42:37,135 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forges of Flame, to region Region436
16:42:37,135 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hammer Hugak's Smithy, to region Region437
16:42:37,135 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Goblin Workshop, to region Region438
16:42:37,136 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Wolak's Crucible, to region Region439
16:42:37,136 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Marik's Workroom, to region Region440
16:42:37,136 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region441
16:42:37,136 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Steward's Crypt, to region Region442
16:42:37,136 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Serf's Folly, to region Region443
16:42:37,136 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region444
16:42:37,137 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region445
16:42:37,137 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Blathnait's Refuge, to region Region446
16:42:37,137 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Broken Mirrors, to region Region447
16:42:37,137 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region448
16:42:37,137 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region449
16:42:37,138 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region450
16:42:37,138 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region451
16:42:37,138 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region452
16:42:37,138 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region453
16:42:37,138 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region454
16:42:37,139 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region455
16:42:37,139 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region456
16:42:37,142 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region457
16:42:37,142 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region458
16:42:37,142 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region459
16:42:37,142 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region460
16:42:37,142 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region461
16:42:37,143 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region462
16:42:37,143 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region463
16:42:37,143 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region464
16:42:37,143 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region465
16:42:37,143 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region466
16:42:37,144 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region467
16:42:37,144 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region468
16:42:37,144 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region469
16:42:37,144 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Half Orc Command Post, to region Region470
16:42:37,144 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region471
16:42:37,144 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region472
16:42:37,145 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region473
16:42:37,159 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region474
16:42:37,159 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rise of the Spraggons, to region Region475
16:42:37,159 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Warrens, to region Region476
16:42:37,160 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region477
16:42:37,160 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region478
16:42:37,160 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Ancient's Retreat, to region Region479
16:42:37,160 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Shaman's Inner Sanctum, to region Region480
16:42:37,160 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region481
16:42:37,161 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region482
16:42:37,161 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Brawler's Den, to region Region483
16:42:37,161 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Felena's Sorrow, to region Region484
16:42:37,161 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region485
16:42:37,161 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region486
16:42:37,162 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Pit of Despair, to region Region487
16:42:37,162 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Forgotten Vein, to region Region488
16:42:37,162 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demons breach, to region Region489
16:42:37,162 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Maze of Madness, to region Region491
16:42:37,162 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Shattered Lands, to region Region492
16:42:37,162 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Gnolls Den, to region Region494
16:42:37,163 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Inner Sanctum, to region Region495
16:42:37,163 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Deep, to region Region496
16:42:37,163 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid Launch, to region Region497
16:42:37,163 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb Launch, to region Region498
16:42:37,163 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib Launch, to region Region499
16:42:37,206 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 39MB - Zones Loaded for All Regions
16:42:37,206 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory World Manager PreInitialization: 39
16:42:37,206 - [MAIN] - INFO - DOL.GS.GameServer - World Manager PreInitialization: True
16:42:37,206 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory World Manager PreInitialization: 39
16:42:37,213 - [MAIN] - INFO - DOL.GS.ScriptMgr - Found server rules for GST_Normal server type (standard Normal server rules).
16:42:37,213 - [MAIN] - INFO - DOL.GS.GameServer - Server rules: true
16:42:37,257 - [MAIN] - INFO - DOL.GS.SkillBase - Loading spells...
16:42:37,551 - [MAIN] - INFO - DOL.GS.SkillBase - Spells loaded: 5816
16:42:37,565 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path Spec Pet, 0 spells
16:42:37,569 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spectral Force, 30 spells
16:42:37,578 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spectral Guard, 31 spells
16:42:37,582 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Ethereal Shriek, 29 spells
16:42:37,583 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Phantasmal Wail, 32 spells
16:42:37,584 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Witchcraft, 38 spells
16:42:37,586 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Hexing, 39 spells
16:42:37,587 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Cursing, 31 spells
16:42:37,590 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valor, 47 spells
16:42:37,591 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Deathsight Spec, 34 spells
16:42:37,593 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Guardians, 41 spells
16:42:37,594 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Deathsight, 24 spells
16:42:37,596 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mind Mastery, 36 spells
16:42:37,596 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: SappLifeDrain, 0 spells
16:42:37,598 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Odin's Will, 47 spells
16:42:37,599 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Suppression, 38 spells
16:42:37,601 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Path, 27 spells
16:42:37,602 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valkyrie Mending Spec, 32 spells
16:42:37,603 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runes of Darkness, 34 spells
16:42:37,604 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: UnderhillCompanionDD, 0 spells
16:42:37,605 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Reserved Spells, 5 spells
16:42:37,606 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Army, 27 spells
16:42:37,608 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Potions, 130 spells
16:42:37,610 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Subterranean Spec, 39 spells
16:42:37,611 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Druid Nurture Spec, 51 spells
16:42:37,612 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mending, 28 spells
16:42:37,614 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 4573 not found but is referenced from LineXSpell table
16:42:37,614 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Void Mastery, 30 spells
16:42:37,615 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mob Spells, 22 spells
16:42:37,617 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pacification Spec, 37 spells
16:42:37,618 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mind Twisting, 27 spells
16:42:37,619 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Liquifaction, 34 spells
16:42:37,620 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Abrasion, 38 spells
16:42:37,621 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Death Servant Spec, 32 spells
16:42:37,622 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Domination, 31 spells
16:42:37,624 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Chants, 73 spells
16:42:37,626 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Battlesongs, 58 spells
16:42:37,626 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: UnderhillZealotDD, 0 spells
16:42:37,628 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Heretic Rejuvenation Spec, 48 spells
16:42:37,629 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Beastcraft, 22 spells
16:42:37,630 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Rebirth, 28 spells
16:42:37,631 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Ice, 18 spells
16:42:37,633 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Heretic Enhancement Spec, 42 spells
16:42:37,634 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Guardian Angel, 61 spells
16:42:37,635 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runecarving, 23 spells
16:42:37,637 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Rejuvenation, 28 spells
16:42:37,638 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 2892 not found but is referenced from LineXSpell table
16:42:37,638 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Enhancement, 47 spells
16:42:37,639 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Abilities Spells, 0 spells
16:42:37,640 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Mastery, 29 spells
16:42:37,640 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: SpiritBladeturn, 0 spells
16:42:37,642 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Enchantment Mastery, 35 spells
16:42:37,643 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mentalism, 37 spells
16:42:37,644 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Druid Nature Spec, 42 spells
16:42:37,646 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Terrible Hammer, 42 spells
16:42:37,646 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Path Pet, 0 spells
16:42:37,647 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: IceElementalDD, 0 spells
16:42:37,648 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vacuumancy, 40 spells
16:42:37,649 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pathfinding, 34 spells
16:42:37,650 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Character Abilities, 10 spells
16:42:37,652 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Healer Augmentation Spec, 45 spells
16:42:37,653 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Illusions, 25 spells
16:42:37,654 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vivification, 42 spells
16:42:37,655 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Path Spec Pet, 0 spells
16:42:37,656 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Enchantment, 18 spells
16:42:37,657 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Soulrending, 53 spells
16:42:37,658 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: PetBuff, 11 spells
16:42:37,660 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Holism, 31 spells
16:42:37,660 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: DefensiveProc, 0 spells
16:42:37,662 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shaman Augmentation Spec, 67 spells
16:42:37,663 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bard Music Spec, 42 spells
16:42:37,664 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Druid Nature Magic, 26 spells
16:42:37,666 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bard Nurture Spec, 34 spells
16:42:37,667 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Way of the Eclipse, 33 spells
16:42:37,667 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: OffensiveProc, 0 spells
16:42:37,668 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path, 26 spells
16:42:37,670 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path, 32 spells
16:42:37,671 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runes of Suppression, 33 spells
16:42:37,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Empowering, 25 spells
16:42:37,673 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: UnderhillAllyHeal, 0 spells
16:42:37,674 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth Bard Spec, 25 spells
16:42:37,675 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Instruments, 65 spells
16:42:37,677 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Friar Enhancement Spec, 67 spells
16:42:37,678 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Death Servant, 22 spells
16:42:37,680 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Dimming, 42 spells
16:42:37,680 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: AllyHealOverTime, 0 spells
16:42:37,681 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pyromancy, 26 spells
16:42:37,682 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Earth, 22 spells
16:42:37,683 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shaman Mend Spec, 30 spells
16:42:37,685 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path Spec, 34 spells
16:42:37,686 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Nightshade, 27 spells
16:42:37,687 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runes of Destruction, 31 spells
16:42:37,688 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Enhancement, 26 spells
16:42:37,693 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 30205 not found but is referenced from LineXSpell table
16:42:37,693 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 30166 not found but is referenced from LineXSpell table
16:42:37,693 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 30194 not found but is referenced from LineXSpell table
16:42:37,694 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 32179 not found but is referenced from LineXSpell table
16:42:37,694 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Item Effects, 321 spells
16:42:37,695 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path Pet, 0 spells
16:42:37,696 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Calefaction, 46 spells
16:42:37,698 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mundane Poisons, 46 spells
16:42:37,699 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Augmentation, 28 spells
16:42:37,700 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Suppression, 36 spells
16:42:37,702 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Nurture Warden Spec, 48 spells
16:42:37,703 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Stormcalling, 53 spells
16:42:37,704 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth, 28 spells
16:42:37,705 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth Warden Spec, 24 spells
16:42:37,706 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pacification, 31 spells
16:42:37,707 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Telekinesis, 29 spells
16:42:37,709 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vampiiric Embrace, 40 spells
16:42:37,710 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Dementia, 38 spells
16:42:37,711 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Painworking Spec, 37 spells
16:42:37,712 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Smiting, 15 spells
16:42:37,714 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Healer Mending Spec, 40 spells
16:42:37,715 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth Druid Spec, 40 spells
16:42:37,716 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Essence Manipulation, 37 spells
16:42:37,717 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Animation, 26 spells
16:42:37,718 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bedazzling, 29 spells
16:42:37,721 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Champion Abilities, 187 spells
16:42:37,723 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valewalker Arb Path Spec, 47 spells
16:42:37,724 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shadow Mastery, 44 spells
16:42:37,725 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Matter, 30 spells
16:42:37,727 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Warriors, 45 spells
16:42:37,727 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path Pet, 0 spells
16:42:37,729 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shadow Control, 27 spells
16:42:37,729 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Summoning, 14 spells
16:42:37,730 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Air, 12 spells
16:42:37,731 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Disorientation, 29 spells
16:42:37,732 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Painworking, 20 spells
16:42:37,736 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Dragon Magic, 222 spells
16:42:37,737 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Mystics, 32 spells
16:42:37,738 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Fire, 21 spells
16:42:37,740 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Subterranean Incantations, 29 spells
16:42:37,741 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Matter Manipulation, 31 spells
16:42:37,742 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path Spec Pet, 0 spells
16:42:37,743 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Way of the Sun, 16 spells
16:42:37,744 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Body Destruction, 28 spells
16:42:37,745 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Darkness, 20 spells
16:42:37,746 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Savagery, 48 spells
16:42:37,748 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Rebirth (Cleric), 40 spells
16:42:37,751 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20100 not found but is referenced from LineXSpell table
16:42:37,751 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20101 not found but is referenced from LineXSpell table
16:42:37,751 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20102 not found but is referenced from LineXSpell table
16:42:37,752 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20104 not found but is referenced from LineXSpell table
16:42:37,752 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Combat Style Effects, 179 spells
16:42:37,753 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Way of the Moon, 20 spells
16:42:37,754 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vapormancy, 20 spells
16:42:37,755 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bard Music, 22 spells
16:42:37,756 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Player poisons, 0 spells
16:42:37,757 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path Spec, 38 spells
16:42:37,757 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: AirElementalStun, 0 spells
16:42:37,759 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Nurture, 29 spells
16:42:37,760 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Refrigeration, 24 spells
16:42:37,761 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Fulltank Abilities, 0 spells
16:42:37,763 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Cursing Spec, 44 spells
16:42:37,764 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Heretic Enhancement, 28 spells
16:42:37,765 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Aura Manipulation, 38 spells
16:42:37,766 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Magnetism, 38 spells
16:42:37,768 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Power Strikes, 46 spells
16:42:37,769 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Banelord, 0 spells
16:42:37,770 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Banelord, 1 spells
16:42:37,770 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Banelord, 1 spells
16:42:37,771 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Banelord, 1 spells
16:42:37,772 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Banelord, 1 spells
16:42:37,773 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Banelord, 1 spells
16:42:37,774 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Banelord, 1 spells
16:42:37,774 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Banelord, 1 spells
16:42:37,775 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Banelord, 1 spells
16:42:37,776 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Banelord, 1 spells
16:42:37,776 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Banelord, 1 spells
16:42:37,777 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Battlemaster, 0 spells
16:42:37,778 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Battlemaster, 1 spells
16:42:37,778 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Battlemaster, 1 spells
16:42:37,779 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Battlemaster, 1 spells
16:42:37,780 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Battlemaster, 1 spells
16:42:37,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Battlemaster, 1 spells
16:42:37,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Battlemaster, 1 spells
16:42:37,782 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Battlemaster, 1 spells
16:42:37,783 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Battlemaster, 1 spells
16:42:37,783 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Battlemaster, 1 spells
16:42:37,784 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Battlemaster, 1 spells
16:42:37,785 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Convoker, 0 spells
16:42:37,786 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Convoker, 1 spells
16:42:37,786 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Convoker, 1 spells
16:42:37,787 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Convoker, 1 spells
16:42:37,788 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Convoker, 1 spells
16:42:37,788 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Convoker, 1 spells
16:42:37,789 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Convoker, 1 spells
16:42:37,790 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Convoker, 1 spells
16:42:37,790 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Convoker, 1 spells
16:42:37,791 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Convoker, 1 spells
16:42:37,792 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Convoker, 1 spells
16:42:37,792 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Perfecter, 0 spells
16:42:37,793 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Perfecter, 1 spells
16:42:37,794 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Perfecter, 1 spells
16:42:37,795 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Perfecter, 1 spells
16:42:37,795 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Perfecter, 1 spells
16:42:37,796 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Perfecter, 1 spells
16:42:37,797 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Perfecter, 1 spells
16:42:37,797 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Perfecter, 1 spells
16:42:37,798 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Perfecter, 1 spells
16:42:37,799 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Perfecter, 1 spells
16:42:37,800 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Perfecter, 1 spells
16:42:37,800 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Sojourner, 0 spells
16:42:37,801 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Sojourner, 1 spells
16:42:37,802 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Sojourner, 1 spells
16:42:37,802 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Sojourner, 1 spells
16:42:37,803 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Sojourner, 1 spells
16:42:37,804 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Sojourner, 1 spells
16:42:37,805 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Sojourner, 1 spells
16:42:37,805 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Sojourner, 1 spells
16:42:37,817 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Sojourner, 1 spells
16:42:37,818 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Sojourner, 1 spells
16:42:37,818 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Sojourner, 1 spells
16:42:37,819 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spymaster, 0 spells
16:42:37,820 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Spymaster, 1 spells
16:42:37,820 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Spymaster, 1 spells
16:42:37,821 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Spymaster, 1 spells
16:42:37,822 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Spymaster, 1 spells
16:42:37,822 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Spymaster, 1 spells
16:42:37,823 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Spymaster, 1 spells
16:42:37,824 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Spymaster, 1 spells
16:42:37,825 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Spymaster, 1 spells
16:42:37,825 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Spymaster, 1 spells
16:42:37,826 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Spymaster, 1 spells
16:42:37,827 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Stormlord, 0 spells
16:42:37,827 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Stormlord, 1 spells
16:42:37,828 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Stormlord, 1 spells
16:42:37,829 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Stormlord, 1 spells
16:42:37,829 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Stormlord, 1 spells
16:42:37,830 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Stormlord, 1 spells
16:42:37,831 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Stormlord, 1 spells
16:42:37,832 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Stormlord, 1 spells
16:42:37,832 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Stormlord, 1 spells
16:42:37,833 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Stormlord, 1 spells
16:42:37,834 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Stormlord, 1 spells
16:42:37,834 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Warlord, 0 spells
16:42:37,835 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Warlord, 1 spells
16:42:37,836 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Warlord, 1 spells
16:42:37,836 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Warlord, 1 spells
16:42:37,837 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Warlord, 1 spells
16:42:37,838 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Warlord, 1 spells
16:42:37,839 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Warlord, 1 spells
16:42:37,839 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Warlord, 1 spells
16:42:37,840 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Warlord, 1 spells
16:42:37,841 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Warlord, 1 spells
16:42:37,841 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Warlord, 1 spells
16:42:37,842 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Necro Pet Insta Spells, 14 spells
16:42:37,845 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Archery, 137 spells
16:42:37,846 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Sorts des dieux, 0 spells
16:42:37,846 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: InfiltratorAbilities, 0 spells
16:42:37,847 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ShadowbladeAbilities, 0 spells
16:42:37,848 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: NightshadeAbilities, 0 spells
16:42:37,849 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valewalker Arboreal Path Base, 29 spells
16:42:37,850 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Wintry, 1 spells
16:42:37,850 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Item Spells, 3 spells
16:42:37,851 - [MAIN] - INFO - DOL.GS.SkillBase - Total spell lines loaded: 246
16:42:37,852 - [MAIN] - INFO - DOL.GS.SkillBase - Loading Abilities...
16:42:37,859 - [MAIN] - WARN - DOL.GS.SkillBase - Ability implementation DOL.GS.RealmAbilities.AssasinateAbility for ability Assassinate not found
16:42:37,859 - [MAIN] - WARN - DOL.GS.SkillBase - Ability implementation DOL.GS.RealmAbilities.RemedyAbility for ability Remedy not found
16:42:37,860 - [MAIN] - WARN - DOL.GS.SkillBase - Ability implementation DOL.GS.RealmAbilities.ShadowStrikeAbility for ability Shadow Strike not found
16:42:37,860 - [MAIN] - INFO - DOL.GS.SkillBase - Total abilities loaded: 214
16:42:37,861 - [MAIN] - INFO - DOL.GS.SkillBase - Loading class to realm ability associations...
16:42:37,878 - [MAIN] - WARN - DOL.GS.SkillBase - Remedy is not a Realm Ability, this most likely is because no Implementation is set or an Implementation is set and is not a Realm Ability
16:42:37,880 - [MAIN] - WARN - DOL.GS.SkillBase - Remedy is not a Realm Ability, this most likely is because no Implementation is set or an Implementation is set and is not a Realm Ability
16:42:37,882 - [MAIN] - WARN - DOL.GS.SkillBase - Remedy is not a Realm Ability, this most likely is because no Implementation is set or an Implementation is set and is not a Realm Ability
16:42:37,885 - [MAIN] - INFO - DOL.GS.SkillBase - Realm Abilities assigned to classes!
16:42:37,886 - [MAIN] - INFO - DOL.GS.SkillBase - Loading procs...
16:42:37,892 - [MAIN] - INFO - DOL.GS.SkillBase - Total procs loaded: 444
16:42:37,893 - [MAIN] - INFO - DOL.GS.SkillBase - Loading specialization & styles...
16:42:37,896 - [MAIN] - WARN - DOL.GS.SkillBase - Associated ability Climbing for specialization Stealth not found!
16:42:37,896 - [MAIN] - WARN - DOL.GS.SkillBase - Associated ability Snapshot for specialization Crossbows not found!
16:42:37,912 - [MAIN] - INFO - DOL.Database.Connection.DataConnection - New DB connection created
16:42:38,025 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Odin's Will, 0 styles, 0 abilities
16:42:38,025 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Witchcraft, 0 styles, 0 abilities
16:42:38,026 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Hexing, 0 styles, 0 abilities
16:42:38,026 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Cursing, 0 styles, 0 abilities
16:42:38,026 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Recurve Bow, 0 styles, 0 abilities
16:42:38,033 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Sword, 129 styles, 0 abilities
16:42:38,034 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Polearm, 15 styles, 0 abilities
16:42:38,034 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Darkness, 0 styles, 0 abilities
16:42:38,034 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Nurture, 0 styles, 0 abilities
16:42:38,035 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spear, 32 styles, 0 abilities
16:42:38,036 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mentalism, 0 styles, 0 abilities
16:42:38,036 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Pacification, 0 styles, 0 abilities
16:42:38,036 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Envenom, 0 styles, 0 abilities
16:42:38,040 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Slash, 118 styles, 0 abilities
16:42:38,040 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Fire Magic, 0 styles, 0 abilities
16:42:38,040 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Liquifaction, 0 styles, 0 abilities
16:42:38,041 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Nature, 0 styles, 0 abilities
16:42:38,042 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Large Weapons, 30 styles, 0 abilities
16:42:38,042 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Subterranean, 0 styles, 0 abilities
16:42:38,042 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Creeping Path, 0 styles, 0 abilities
16:42:38,042 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Parry, 0 styles, 0 abilities
16:42:38,042 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Pathfinding, 0 styles, 0 abilities
16:42:38,043 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Celtic Spear, 15 styles, 0 abilities
16:42:38,043 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Chants, 0 styles, 0 abilities
16:42:38,043 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Rejuvenation, 0 styles, 0 abilities
16:42:38,044 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Battlesongs, 0 styles, 0 abilities
16:42:38,044 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Painworking, 0 styles, 0 abilities
16:42:38,052 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Blunt, 77 styles, 0 abilities
16:42:38,052 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Matter Magic, 0 styles, 0 abilities
16:42:38,052 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Verdant Path, 0 styles, 0 abilities
16:42:38,052 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Stealth, 0 styles, 8 abilities
16:42:38,053 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Regrowth, 0 styles, 0 abilities
16:42:38,054 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Critical Strike, 45 styles, 0 abilities
16:42:38,054 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Arboreal Path, 0 styles, 0 abilities
16:42:38,057 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Crush, 83 styles, 0 abilities
16:42:38,057 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Longbows, 0 styles, 0 abilities
16:42:38,057 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Earth Magic, 0 styles, 0 abilities
16:42:38,060 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Piercing, 101 styles, 0 abilities
16:42:38,060 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Savagery, 0 styles, 0 abilities
16:42:38,061 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Suppression, 0 styles, 0 abilities
16:42:38,061 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Enhancement, 0 styles, 0 abilities
16:42:38,061 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Death Servant, 0 styles, 0 abilities
16:42:38,061 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mind Magic, 0 styles, 0 abilities
16:42:38,061 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mana Magic, 0 styles, 0 abilities
16:42:38,062 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Music, 0 styles, 0 abilities
16:42:38,063 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Two Handed, 30 styles, 0 abilities
16:42:38,066 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Thrust, 118 styles, 0 abilities
16:42:38,067 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Smite, 0 styles, 0 abilities
16:42:38,067 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Staff, 15 styles, 0 abilities
16:42:38,068 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Bone Army, 0 styles, 0 abilities
16:42:38,069 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Celtic Dual, 46 styles, 0 abilities
16:42:38,069 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Body Magic, 0 styles, 0 abilities
16:42:38,069 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Crossbows, 0 styles, 0 abilities
16:42:38,070 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Void Magic, 0 styles, 0 abilities
16:42:38,071 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Dual Wield, 30 styles, 0 abilities
16:42:38,071 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Light Magic, 0 styles, 0 abilities
16:42:38,071 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Cold Magic, 0 styles, 0 abilities
16:42:38,071 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Archery, 0 styles, 0 abilities
16:42:38,071 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Enchantments, 0 styles, 0 abilities
16:42:38,072 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Thrown Weapons, 0 styles, 0 abilities
16:42:38,074 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Hammer, 88 styles, 0 abilities
16:42:38,075 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mending, 0 styles, 0 abilities
16:42:38,075 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Ethereal Shriek, 0 styles, 0 abilities
16:42:38,075 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Wind Magic, 0 styles, 0 abilities
16:42:38,080 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Battlemaster, 138 styles, 0 abilities
16:42:38,080 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Augmentation, 0 styles, 0 abilities
16:42:38,081 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Beastcraft, 0 styles, 0 abilities
16:42:38,081 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Hand to Hand, 27 styles, 0 abilities
16:42:38,081 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Summoning, 0 styles, 0 abilities
16:42:38,083 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mauler Staff, 48 styles, 0 abilities
16:42:38,083 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spectral Guard, 0 styles, 0 abilities
16:42:38,083 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Bow, 0 styles, 0 abilities
16:42:38,084 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Nightshade Magic, 0 styles, 0 abilities
16:42:38,088 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Shield, 124 styles, 4 abilities
16:42:38,088 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spirit Magic, 0 styles, 0 abilities
16:42:38,089 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Valor, 0 styles, 0 abilities
16:42:38,089 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Instruments, 0 styles, 0 abilities
16:42:38,092 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Axe, 99 styles, 0 abilities
16:42:38,095 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Blades, 110 styles, 0 abilities
16:42:38,095 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Deathsight, 0 styles, 0 abilities
16:42:38,096 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Left Axe, 30 styles, 0 abilities
16:42:38,097 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Scythe, 16 styles, 0 abilities
16:42:38,097 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Dementia, 0 styles, 0 abilities
16:42:38,098 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Flexible, 30 styles, 0 abilities
16:42:38,098 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mundane Poisons, 0 styles, 0 abilities
16:42:38,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Runecarving, 0 styles, 0 abilities
16:42:38,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Stormcalling, 0 styles, 0 abilities
16:42:38,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Composite Bow, 0 styles, 0 abilities
16:42:38,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Soulrending, 0 styles, 0 abilities
16:42:38,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Power Strikes, 0 styles, 0 abilities
16:42:38,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Magnetism, 0 styles, 0 abilities
16:42:38,100 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Aura Manipulation, 0 styles, 0 abilities
16:42:38,100 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spectral Force, 0 styles, 0 abilities
16:42:38,100 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Shadow Mastery, 0 styles, 0 abilities
16:42:38,100 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Vampiiric Embrace, 0 styles, 0 abilities
16:42:38,100 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: War Magic, 0 styles, 0 abilities
16:42:38,102 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Fist Wraps, 48 styles, 0 abilities
16:42:38,102 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Phantasmal Wail, 0 styles, 0 abilities
16:42:38,103 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Champion Abilities, 20 styles, 0 abilities
16:42:38,105 - [MAIN] - INFO - DOL.GS.SkillBase - Total specializations loaded: 99
16:42:38,107 - [MAIN] - INFO - DOL.GS.SkillBase - Searching ability handlers in GameServer
16:42:38,112 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for QuickCast
16:42:38,112 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Bodyguard
16:42:38,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Flurry
16:42:38,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Sprint
16:42:38,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Climbing Spikes
16:42:38,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Protect
16:42:38,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Critical Shot
16:42:38,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Rampage
16:42:38,114 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Engage
16:42:38,114 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Intercept
16:42:38,114 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Taunting Shout
16:42:38,114 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Fury
16:42:38,114 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Sure Shot
16:42:38,115 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Stag
16:42:38,115 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Dirty Tricks
16:42:38,115 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Triple Wield
16:42:38,115 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Guard
16:42:38,115 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Remedy
16:42:38,115 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Bolstering Roar
16:42:38,116 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Berserk
16:42:38,116 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Vampiir Bolt
16:42:38,116 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Rapid Fire
16:42:38,116 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Camouflage
16:42:38,116 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Metal Guard
16:42:38,117 - [MAIN] - INFO - DOL.GS.SkillBase - Searching AbilityHandlers in Scripts
16:42:38,117 - [MAIN] - INFO - DOL.GS.SkillBase - Total ability handlers loaded: 24
16:42:38,119 - [MAIN] - INFO - DOL.GS.SkillBase - Searching skill handlers in GameServer.
16:42:38,123 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found skill handler for Stealth
16:42:38,124 - [MAIN] - INFO - DOL.GS.SkillBase - Searching skill handlers in Scripts.
16:42:38,124 - [MAIN] - INFO - DOL.GS.SkillBase - Total skill handlers loaded: 1
16:42:38,124 - [MAIN] - INFO - DOL.GS.GameServer - Loading skills: true
16:42:38,308 - [MAIN] - INFO - DOL.GS.GameServer - Registering global event handlers: true
16:42:38,309 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Script components: 48
16:42:38,309 - [MAIN] - INFO - DOL.GS.GameServer - Script components: True
16:42:38,309 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Script components: 48
16:42:38,321 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Faction Managers: 49
16:42:38,321 - [MAIN] - INFO - DOL.GS.GameServer - Faction Managers: True
16:42:38,321 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Faction Managers: 49
16:42:38,329 - [MAIN] - INFO - DOL.GS.ArtifactMgr - 0 artifacts loaded
16:42:38,330 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Artifact Manager: 49
16:42:38,330 - [MAIN] - INFO - DOL.GS.GameServer - Artifact Manager: True
16:42:38,330 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Artifact Manager: 49
16:42:38,335 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory GameLiving.LoadCalculators(): 49
16:42:38,336 - [MAIN] - INFO - DOL.GS.GameServer - GameLiving.LoadCalculators(): True
16:42:38,336 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory GameLiving.LoadCalculators(): 49
16:42:38,592 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Npc Equipment: 53
16:42:38,593 - [MAIN] - INFO - DOL.GS.GameServer - Npc Equipment: True
16:42:38,593 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Npc Equipment: 53
16:42:38,676 - [MAIN] - WARN - DOL.GS.SkillBase - Ability '3464' unknown
16:42:38,677 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Npc Templates Manager: 55
16:42:38,677 - [MAIN] - INFO - DOL.GS.GameServer - Npc Templates Manager: True
16:42:38,677 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Npc Templates Manager: 55
16:42:39,042 - [MAIN] - INFO - DOL.GS.Housing.HouseMgr - [Housing] Loaded 0 houses and 2407 lotmarkers in 3 regions!
16:42:39,042 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory House Manager: 55
16:42:39,042 - [MAIN] - INFO - DOL.GS.GameServer - House Manager: True
16:42:39,043 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory House Manager: 55
16:42:39,044 - [MAIN] - INFO - DOL.GS.MarketCache - Building Market Cache ....
16:42:39,049 - [MAIN] - INFO - DOL.GS.MarketCache - Market Cache initialized with 0 items.
16:42:39,049 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Market Cache: 55
16:42:39,050 - [MAIN] - INFO - DOL.GS.GameServer - Market Cache: True
16:42:39,050 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Market Cache: 55
16:42:39,053 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Region Managers: 55
16:42:39,053 - [MAIN] - INFO - DOL.GS.GameServer - Region Managers: True
16:42:39,053 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Region Managers: 55
16:42:39,055 - [RegionTime2] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime2 (ID:8)
16:42:39,055 - [RegionTime3] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime3 (ID:9)
16:42:39,055 - [RegionTime4] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime4 (ID:11)
16:42:39,055 - [RegionTime1] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime1 (ID:10)
16:42:39,059 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Camelot Bind Area
16:42:39,059 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Jordheim Bind Area
16:42:39,060 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Godrborg
16:42:39,060 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Crair Treflan
16:42:39,060 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Tir na Nog Bind Area
16:42:39,060 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Aalid Feie
16:42:39,060 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Aegirhamn
16:42:39,061 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Catterick Hamlet
16:42:39,061 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Bjarken
16:42:39,061 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Caer Diogel
16:42:39,061 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Caer Gothwaite
16:42:39,061 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Droighaid
16:42:39,062 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Fort Gwyntell
16:42:39,062 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Gothwaite Harbor
16:42:39,062 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Grove of Domnann
16:42:39,062 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Hagall
16:42:39,062 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Knarr
16:42:39,063 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Necht
16:42:39,063 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Wearyall Village
16:42:39,063 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: thehiddenlair
16:42:39,063 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Areas: 55
16:42:39,063 - [MAIN] - INFO - DOL.GS.GameServer - Areas: True
16:42:39,064 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Areas: 55
16:42:39,064 - [MAIN] - INFO - DOL.GS.GameServer - World save timer: true
16:42:39,066 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Boat Manager: 55
16:42:39,067 - [MAIN] - INFO - DOL.GS.GameServer - Boat Manager: True
16:42:39,067 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Boat Manager: 55
16:42:39,121 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Guild Manager: 56
16:42:39,121 - [MAIN] - INFO - DOL.GS.GameServer - Guild Manager: True
16:42:39,121 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Guild Manager: 56
16:42:39,128 - [MAIN] - WARN - DOL.GS.GameServer - No Keep manager found, using DOL.GS.Keeps.DefaultKeepManager
16:42:39,138 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_archer
16:42:39,145 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_caster
16:42:39,145 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_fighter
16:42:39,146 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_lord
16:42:39,147 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_healer
16:42:39,147 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_stealther
16:42:39,148 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: alb_fighter_pk
16:42:39,148 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: alb_archer_pk
16:42:39,149 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: alb_caster_pk
16:42:39,150 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_archer
16:42:39,150 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_caster
16:42:39,151 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_fighter
16:42:39,151 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_lord
16:42:39,152 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_healer
16:42:39,153 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_hastener
16:42:39,153 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_stealther
16:42:39,154 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: mid_fighter_pk
16:42:39,155 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: mid_archer_pk
16:42:39,155 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: mid_caster_pk
16:42:39,156 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_archer
16:42:39,156 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_caster
16:42:39,157 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_fighter
16:42:39,157 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_lord
16:42:39,158 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_healer
16:42:39,158 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_stealther
16:42:39,159 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hib_fighter_pk
16:42:39,159 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hib_archer_pk
16:42:39,160 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hib_caster_pk
16:42:39,191 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,192 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,193 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,194 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Orseo
16:42:39,195 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc
16:42:39,196 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead
16:42:39,197 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh
16:42:39,198 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam
16:42:39,199 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke
16:42:39,200 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury
16:42:39,202 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris
16:42:39,203 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste
16:42:39,204 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste
16:42:39,205 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste
16:42:39,206 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste
16:42:39,207 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste
16:42:39,208 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste
16:42:39,209 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste
16:42:39,210 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon
16:42:39,212 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain
16:42:39,213 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg
16:42:39,214 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed
16:42:39,215 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn
16:42:39,215 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig
16:42:39,217 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne
16:42:39,217 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fort Brolorn
16:42:39,218 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leonis Keep
16:42:39,219 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Claret
16:42:39,220 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,221 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Thidranki Faste
16:42:39,223 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Braemar
16:42:39,224 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Wilton
16:42:39,225 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Faste
16:42:39,227 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leirvik Castle
16:42:39,227 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Guardtower
16:42:39,228 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Guardtower
16:42:39,228 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Watchtower
16:42:39,229 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Watchtower
16:42:39,229 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Watchtower
16:42:39,230 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Guardtower
16:42:39,230 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Guardtower
16:42:39,231 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Guardtower
16:42:39,232 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Watchtower
16:42:39,232 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Guardtower
16:42:39,233 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Watchtower
16:42:39,233 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Guardtower
16:42:39,234 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Guardtower
16:42:39,234 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Guardtower
16:42:39,235 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Guardtower
16:42:39,235 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Watchtower
16:42:39,236 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Watchtower
16:42:39,236 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Guardtower
16:42:39,237 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Watchtower
16:42:39,237 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Watchtower
16:42:39,248 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Guardtower
16:42:39,249 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,250 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,251 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,252 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,253 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,254 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,255 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,255 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,256 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Watchtower
16:42:39,257 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Watchtower
16:42:39,257 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Guardtower
16:42:39,258 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Guardtower
16:42:39,258 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Guardtower
16:42:39,259 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Watchtower
16:42:39,260 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Watchtower
16:42:39,260 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Watchtower
16:42:39,261 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Guardtower
16:42:39,261 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Watchtower
16:42:39,262 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Guardtower
16:42:39,263 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Watchtower
16:42:39,263 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Watchtower
16:42:39,264 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Watchtower
16:42:39,264 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Watchtower
16:42:39,265 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Guardtower
16:42:39,265 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Guardtower
16:42:39,266 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Watchtower
16:42:39,266 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Guardtower
16:42:39,267 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Guardtower
16:42:39,267 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Watchtower
16:42:39,268 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,269 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,270 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,271 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal keep
16:42:39,272 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,273 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,273 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,274 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,275 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,276 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Outpost
16:42:39,276 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Outpost
16:42:39,277 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Spire
16:42:39,278 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Outpost
16:42:39,278 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Outpost
16:42:39,279 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Outpost
16:42:39,279 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Spire
16:42:39,280 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Outpost
16:42:39,280 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Outpost
16:42:39,281 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Spire
16:42:39,282 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Spire
16:42:39,282 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Spire
16:42:39,283 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Outpost
16:42:39,283 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Outpost
16:42:39,284 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Outpost
16:42:39,285 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Outpost
16:42:39,285 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Outpost
16:42:39,286 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Spire
16:42:39,286 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Spire
16:42:39,287 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Spire
16:42:39,287 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Outpost
16:42:39,288 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,289 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,290 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,291 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,291 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,292 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,293 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,294 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,295 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Spire
16:42:39,295 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Spire
16:42:39,296 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Outpost
16:42:39,296 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Spire
16:42:39,297 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Spire
16:42:39,297 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Spire
16:42:39,298 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Outpost
16:42:39,299 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Spire
16:42:39,299 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Spire
16:42:39,300 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Outpost
16:42:39,300 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Outpost
16:42:39,301 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Outpost
16:42:39,302 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Spire
16:42:39,302 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Spire
16:42:39,303 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Spire
16:42:39,303 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Spire
16:42:39,304 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Spire
16:42:39,304 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Outpost
16:42:39,305 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Outpost
16:42:39,305 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Outpost
16:42:39,306 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Spire
16:42:39,306 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Albion Tower
16:42:39,307 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Leirvik Tower
16:42:39,307 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Midgard Tower
16:42:39,308 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Leirvik Tower
16:42:39,309 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Hibernian Tower
16:42:39,309 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Leirvik Tower
16:42:39,310 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Killaloe
16:42:39,311 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,312 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Leirvik Castle, loading that instead of creating a new one.
16:42:39,312 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leirvik Castle
16:42:39,313 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,314 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,315 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,315 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,316 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,316 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,317 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Leirvik Tower, loading that instead of creating a new one.
16:42:39,317 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Leirvik Tower
16:42:39,318 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Leirvik Tower, loading that instead of creating a new one.
16:42:39,318 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Leirvik Tower
16:42:39,319 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Leirvik Tower, loading that instead of creating a new one.
16:42:39,319 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Leirvik Tower
16:42:39,320 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste, loading that instead of creating a new one.
16:42:39,320 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste
16:42:39,321 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste Guardtower, loading that instead of creating a new one.
16:42:39,321 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Guardtower
16:42:39,322 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste Watchtower, loading that instead of creating a new one.
16:42:39,322 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Watchtower
16:42:39,322 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Outpost
16:42:39,323 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste Spire, loading that instead of creating a new one.
16:42:39,323 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Spire
16:42:39,324 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste, loading that instead of creating a new one.
16:42:39,324 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste
16:42:39,324 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Watchtower, loading that instead of creating a new one.
16:42:39,325 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Watchtower
16:42:39,325 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Guardtower, loading that instead of creating a new one.
16:42:39,325 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Guardtower
16:42:39,326 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Outpost, loading that instead of creating a new one.
16:42:39,327 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Outpost
16:42:39,327 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Spire, loading that instead of creating a new one.
16:42:39,327 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Spire
16:42:39,328 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste, loading that instead of creating a new one.
16:42:39,329 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste
16:42:39,329 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Guardtower, loading that instead of creating a new one.
16:42:39,330 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Guardtower
16:42:39,330 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Watchtower, loading that instead of creating a new one.
16:42:39,331 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Watchtower
16:42:39,331 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Spire, loading that instead of creating a new one.
16:42:39,331 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Spire
16:42:39,332 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Outpost, loading that instead of creating a new one.
16:42:39,332 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Outpost
16:42:39,333 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste, loading that instead of creating a new one.
16:42:39,334 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste
16:42:39,334 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Watchtower, loading that instead of creating a new one.
16:42:39,334 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Watchtower
16:42:39,335 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Guardtower, loading that instead of creating a new one.
16:42:39,335 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Guardtower
16:42:39,336 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Spire, loading that instead of creating a new one.
16:42:39,336 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Spire
16:42:39,337 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Outpost, loading that instead of creating a new one.
16:42:39,337 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Outpost
16:42:39,338 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste, loading that instead of creating a new one.
16:42:39,338 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste
16:42:39,339 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Guardtower, loading that instead of creating a new one.
16:42:39,339 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Guardtower
16:42:39,339 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Watchtower, loading that instead of creating a new one.
16:42:39,340 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Watchtower
16:42:39,340 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Spire, loading that instead of creating a new one.
16:42:39,340 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Spire
16:42:39,341 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Outpost, loading that instead of creating a new one.
16:42:39,341 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Outpost
16:42:39,342 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste, loading that instead of creating a new one.
16:42:39,342 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste
16:42:39,343 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste Guardtower, loading that instead of creating a new one.
16:42:39,343 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Guardtower
16:42:39,344 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste Watchtower, loading that instead of creating a new one.
16:42:39,344 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Watchtower
16:42:39,345 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste Outpost, loading that instead of creating a new one.
16:42:39,345 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Outpost
16:42:39,346 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Spire
16:42:39,347 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste, loading that instead of creating a new one.
16:42:39,347 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste
16:42:39,347 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Guardtower, loading that instead of creating a new one.
16:42:39,348 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Guardtower
16:42:39,348 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Watchtower, loading that instead of creating a new one.
16:42:39,348 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Watchtower
16:42:39,349 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Outpost, loading that instead of creating a new one.
16:42:39,349 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Outpost
16:42:39,350 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Spire, loading that instead of creating a new one.
16:42:39,350 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Spire
16:42:39,351 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon, loading that instead of creating a new one.
16:42:39,351 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon
16:42:39,352 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Guardtower, loading that instead of creating a new one.
16:42:39,352 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Guardtower
16:42:39,352 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Watchtower, loading that instead of creating a new one.
16:42:39,353 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Watchtower
16:42:39,353 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Outpost, loading that instead of creating a new one.
16:42:39,354 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Outpost
16:42:39,354 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Spire, loading that instead of creating a new one.
16:42:39,354 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Spire
16:42:39,355 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain, loading that instead of creating a new one.
16:42:39,355 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain
16:42:39,356 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Watchtower, loading that instead of creating a new one.
16:42:39,356 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Watchtower
16:42:39,357 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Guardtower, loading that instead of creating a new one.
16:42:39,357 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Guardtower
16:42:39,358 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Outpost, loading that instead of creating a new one.
16:42:39,358 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Outpost
16:42:39,358 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Spire, loading that instead of creating a new one.
16:42:39,359 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Spire
16:42:39,360 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg, loading that instead of creating a new one.
16:42:39,360 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg
16:42:39,361 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Watchtower, loading that instead of creating a new one.
16:42:39,361 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Watchtower
16:42:39,362 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Guardtower, loading that instead of creating a new one.
16:42:39,362 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Guardtower
16:42:39,363 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Outpost, loading that instead of creating a new one.
16:42:39,363 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Outpost
16:42:39,364 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Spire, loading that instead of creating a new one.
16:42:39,364 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Spire
16:42:39,365 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed, loading that instead of creating a new one.
16:42:39,365 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed
16:42:39,377 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Guardtower, loading that instead of creating a new one.
16:42:39,377 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Guardtower
16:42:39,378 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Watchtower, loading that instead of creating a new one.
16:42:39,378 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Watchtower
16:42:39,379 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Spire, loading that instead of creating a new one.
16:42:39,379 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Spire
16:42:39,379 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Outpost, loading that instead of creating a new one.
16:42:39,380 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Outpost
16:42:39,380 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn, loading that instead of creating a new one.
16:42:39,381 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn
16:42:39,381 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Watchtower, loading that instead of creating a new one.
16:42:39,381 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Watchtower
16:42:39,382 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Guardtower, loading that instead of creating a new one.
16:42:39,382 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Guardtower
16:42:39,383 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Spire, loading that instead of creating a new one.
16:42:39,383 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Spire
16:42:39,384 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Outpost, loading that instead of creating a new one.
16:42:39,384 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Outpost
16:42:39,385 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig, loading that instead of creating a new one.
16:42:39,385 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig
16:42:39,386 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Watchtower, loading that instead of creating a new one.
16:42:39,386 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Watchtower
16:42:39,386 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Guardtower, loading that instead of creating a new one.
16:42:39,387 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Guardtower
16:42:39,387 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Spire, loading that instead of creating a new one.
16:42:39,387 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Spire
16:42:39,388 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Outpost, loading that instead of creating a new one.
16:42:39,388 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Outpost
16:42:39,389 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne, loading that instead of creating a new one.
16:42:39,389 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne
16:42:39,389 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Guardtower, loading that instead of creating a new one.
16:42:39,390 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Guardtower
16:42:39,390 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Watchtower, loading that instead of creating a new one.
16:42:39,400 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Watchtower
16:42:39,401 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Outpost, loading that instead of creating a new one.
16:42:39,401 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Outpost
16:42:39,402 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Spire, loading that instead of creating a new one.
16:42:39,402 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Spire
16:42:39,403 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc, loading that instead of creating a new one.
16:42:39,403 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc
16:42:39,403 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Guardtower, loading that instead of creating a new one.
16:42:39,404 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Guardtower
16:42:39,404 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Watchtower, loading that instead of creating a new one.
16:42:39,404 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Watchtower
16:42:39,405 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Outpost, loading that instead of creating a new one.
16:42:39,405 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Outpost
16:42:39,406 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Spire, loading that instead of creating a new one.
16:42:39,406 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Spire
16:42:39,406 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead, loading that instead of creating a new one.
16:42:39,407 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead
16:42:39,407 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Guardtower, loading that instead of creating a new one.
16:42:39,407 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Guardtower
16:42:39,408 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Watchtower, loading that instead of creating a new one.
16:42:39,408 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Watchtower
16:42:39,409 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Outpost, loading that instead of creating a new one.
16:42:39,409 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Outpost
16:42:39,410 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Spire, loading that instead of creating a new one.
16:42:39,410 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Spire
16:42:39,411 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh, loading that instead of creating a new one.
16:42:39,411 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh
16:42:39,412 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Watchtower, loading that instead of creating a new one.
16:42:39,412 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Watchtower
16:42:39,412 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Guardtower, loading that instead of creating a new one.
16:42:39,413 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Guardtower
16:42:39,413 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Spire, loading that instead of creating a new one.
16:42:39,413 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Spire
16:42:39,414 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Outpost, loading that instead of creating a new one.
16:42:39,427 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Outpost
16:42:39,428 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam, loading that instead of creating a new one.
16:42:39,428 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam
16:42:39,429 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Watchtower, loading that instead of creating a new one.
16:42:39,429 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Watchtower
16:42:39,430 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Guardtower, loading that instead of creating a new one.
16:42:39,430 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Guardtower
16:42:39,430 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Outpost, loading that instead of creating a new one.
16:42:39,430 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Outpost
16:42:39,431 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Spire, loading that instead of creating a new one.
16:42:39,431 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Spire
16:42:39,432 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke, loading that instead of creating a new one.
16:42:39,432 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke
16:42:39,433 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Watchtower, loading that instead of creating a new one.
16:42:39,433 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Watchtower
16:42:39,433 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Guardtower, loading that instead of creating a new one.
16:42:39,434 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Guardtower
16:42:39,434 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Outpost, loading that instead of creating a new one.
16:42:39,434 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Outpost
16:42:39,435 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Spire, loading that instead of creating a new one.
16:42:39,435 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Spire
16:42:39,436 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury, loading that instead of creating a new one.
16:42:39,436 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury
16:42:39,437 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Guardtower, loading that instead of creating a new one.
16:42:39,437 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Guardtower
16:42:39,437 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Watchtower, loading that instead of creating a new one.
16:42:39,438 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Watchtower
16:42:39,438 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Outpost, loading that instead of creating a new one.
16:42:39,438 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Outpost
16:42:39,439 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Spire, loading that instead of creating a new one.
16:42:39,439 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Spire
16:42:39,440 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris, loading that instead of creating a new one.
16:42:39,440 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris
16:42:39,454 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Guardtower, loading that instead of creating a new one.
16:42:39,454 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Guardtower
16:42:39,455 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Watchtower, loading that instead of creating a new one.
16:42:39,455 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Watchtower
16:42:39,455 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Spire, loading that instead of creating a new one.
16:42:39,456 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Spire
16:42:39,456 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Outpost, loading that instead of creating a new one.
16:42:39,456 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Outpost
16:42:39,457 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Killaloe, loading that instead of creating a new one.
16:42:39,457 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Killaloe
16:42:39,458 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,458 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,459 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,460 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,460 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,461 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Thidranki Faste, loading that instead of creating a new one.
16:42:39,461 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Thidranki Faste
16:42:39,461 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,462 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,462 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,463 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,463 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,464 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,464 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Braemar, loading that instead of creating a new one.
16:42:39,464 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Braemar
16:42:39,465 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,465 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,466 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,466 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,467 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,467 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,468 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Wilton, loading that instead of creating a new one.
16:42:39,468 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Wilton
16:42:39,469 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,480 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,481 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,481 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,482 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,482 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,483 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Faste, loading that instead of creating a new one.
16:42:39,483 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Faste
16:42:39,484 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,485 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,485 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,485 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,486 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,487 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,487 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Albion Tower, loading that instead of creating a new one.
16:42:39,487 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Albion Tower
16:42:39,488 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Midgard Tower, loading that instead of creating a new one.
16:42:39,488 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Midgard Tower
16:42:39,489 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Hibernian Tower, loading that instead of creating a new one.
16:42:39,489 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Hibernian Tower
16:42:39,490 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,490 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,491 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,491 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,492 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,492 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,493 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Leonis Keep, loading that instead of creating a new one.
16:42:39,493 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leonis Keep
16:42:39,494 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,494 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,495 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,495 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,496 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,496 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,507 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Claret, loading that instead of creating a new one.
16:42:39,507 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Claret
16:42:39,508 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:42:39,508 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:42:39,509 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:42:39,509 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:42:39,510 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:42:39,510 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:42:39,511 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fort Brolorn, loading that instead of creating a new one.
16:42:39,511 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fort Brolorn
16:42:39,648 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,650 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,651 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:39,662 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,663 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,664 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:39,665 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,666 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,666 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:39,734 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,734 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,736 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,736 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,737 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,737 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,968 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:39,969 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:39,971 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:39,971 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:39,972 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:39,972 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:39,976 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,977 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,978 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,979 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:39,980 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:39,980 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,003 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,004 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,005 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,006 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,006 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,007 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,023 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,024 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,026 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,026 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,027 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,027 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,084 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,085 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,086 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,087 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,088 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,088 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,132 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,133 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,134 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,135 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,136 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,136 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,197 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,198 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,199 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,200 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,201 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,201 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,221 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,222 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,223 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,224 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,225 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,225 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,239 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,240 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,241 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,242 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,243 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,244 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,245 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,245 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,245 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,264 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,265 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,266 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,267 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,267 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,268 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,335 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,336 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,337 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,338 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,338 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,339 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,388 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,389 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,390 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,391 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,392 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,392 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,393 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,394 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,394 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,403 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,404 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,406 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,406 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,407 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,407 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,471 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,472 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,474 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,474 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,475 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,475 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,563 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:40,564 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Scout
16:42:40,565 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Cleric
16:42:40,566 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:40,567 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Scout
16:42:40,567 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Cleric
16:42:40,568 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:40,568 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Scout
16:42:40,569 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Cleric
16:42:40,599 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,600 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,601 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,602 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,603 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,603 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,670 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,671 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,672 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,673 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,673 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,674 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,680 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,681 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,682 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,683 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,684 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,684 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,685 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,685 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:42:40,686 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:42:40,709 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,719 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,721 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,721 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,722 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,722 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:42:40,727 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,729 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,730 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,734 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,735 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,736 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,740 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,741 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,742 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,746 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,748 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,749 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,753 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,754 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,755 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,759 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,760 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,761 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,765 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armsman
16:42:40,767 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armsman
16:42:40,768 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armsman
16:42:40,772 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,773 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,774 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,778 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,779 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,780 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,784 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,786 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,787 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,790 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,792 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,793 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,797 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,798 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,799 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,803 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,805 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,806 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,810 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,811 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,812 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,816 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,818 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,818 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,822 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,824 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,825 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,829 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,830 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,831 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,835 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,837 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,837 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,841 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,842 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,843 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,848 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,849 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,850 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,854 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,855 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,856 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,869 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,871 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,872 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,876 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,878 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,879 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,882 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,884 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,885 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,889 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,890 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,891 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,895 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,897 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,897 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,901 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,903 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,904 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,908 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:40,909 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:40,910 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:40,914 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,916 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,916 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,920 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,922 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,923 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,927 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,928 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,929 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,933 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,935 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,936 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,940 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,941 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,942 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,946 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,947 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,948 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,952 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,954 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,954 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:40,958 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,960 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,961 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,964 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,966 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,967 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,971 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,972 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,973 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,977 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,979 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,980 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,984 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,985 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,986 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,990 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,991 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,992 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,997 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,998 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:40,999 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,003 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,004 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,005 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,018 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,019 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,020 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,024 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,025 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,027 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,031 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,032 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,033 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,037 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,038 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,039 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,043 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,045 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,046 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,050 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:41,051 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:41,052 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:42:41,056 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,057 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,058 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,062 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,064 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,065 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,068 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,070 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,071 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,075 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,076 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,077 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,082 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,083 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,084 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,088 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,089 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,090 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,094 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,095 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,096 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,100 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,102 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,103 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,107 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,108 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,109 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,113 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,115 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,115 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,119 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,121 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,122 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,126 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,127 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,128 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,132 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,134 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,135 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,139 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,140 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,141 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,145 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,147 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,148 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,152 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,153 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,154 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,158 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,160 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,170 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,174 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,175 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,176 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,181 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,182 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,183 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,187 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,188 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,189 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,193 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armsman
16:42:41,194 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armsman
16:42:41,195 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armsman
16:42:41,199 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,201 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,202 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,206 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,207 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,208 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,212 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,213 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,214 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,218 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,220 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,221 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,225 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,226 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,227 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,231 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,233 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,234 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,238 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,239 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,240 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:42:41,244 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,245 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,246 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,250 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,251 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,252 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,256 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,257 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,258 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,263 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,264 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,265 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,269 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,270 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,271 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,275 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,277 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,278 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,282 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,283 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,284 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:42:41,996 - [MAIN] - WARN - DOL.GS.Keeps.DefaultKeepManager - Some keeps not found while loading components, possibly old/new keeptype; see server properties
16:42:42,052 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Loading HookPoint items
16:42:42,612 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Loaded 298 keeps successfully
16:42:42,612 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Keep Manager: 88
16:42:42,612 - [MAIN] - INFO - DOL.GS.GameServer - Keep Manager: True
16:42:42,612 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Keep Manager: 88
16:42:42,615 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Door Manager: 88
16:42:42,615 - [MAIN] - INFO - DOL.GS.GameServer - Door Manager: True
16:42:42,616 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Door Manager: 88
16:42:42,619 - [MAIN] - INFO - DOL.GS.LootMgr - Loading LootGenerators...
16:42:50,256 - [MAIN] - INFO - DOL.GS.LootGeneratorTemplate - LootTemplates pre-loaded.
16:42:50,266 - [MAIN] - INFO - DOL.GS.LootGeneratorTemplate - MobXLootTemplates pre-loaded.
16:42:50,270 - [MAIN] - DEBUG - DOL.GS.LootMgr - Found 4 Global LootGenerators
16:42:50,271 - [MAIN] - DEBUG - DOL.GS.LootMgr - Found 0 Mobnames registered by LootGenerators
16:42:50,271 - [MAIN] - DEBUG - DOL.GS.LootMgr - Found 0 Guildnames registered by LootGenerators
16:42:50,271 - [MAIN] - INFO - DOL.GS.LootMgr - LootGenerator initialized: true
16:42:50,693 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:42:50,694 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:42:50,695 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:42:50,696 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:42:50,697 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:42:53,581 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: c3dc4243-73e9-4893-8da3-b2fbde4d4dfc
16:42:55,062 - [MAIN] - INFO - DOL.GS.Movement.MovementMgr - Path cache filled with 367 paths.
16:42:56,099 - [MAIN] - INFO - DOL.GS.Region - Region: Albion (1) loaded 16119 mobs, 220 merchants, 248 items 29 bindpoints, from DB (RegionTime1)
16:42:56,100 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 135MB
16:42:59,669 - [MAIN] - INFO - DOL.GS.Region - Region: Hibernia (200) loaded 11336 mobs, 193 merchants, 76 items 24 bindpoints, from DB (RegionTime4)
16:42:59,670 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 158MB
16:43:00,608 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 5100798
16:43:02,796 - [MAIN] - INFO - DOL.GS.Region - Region: Midgard (100) loaded 10065 mobs, 205 merchants, 128 items 20 bindpoints, from DB (RegionTime3)
16:43:02,797 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 174MB
16:43:03,128 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Error adding NPC equipment, ObjectId=af85d44a-38bd-4738-b559-96afd74b4971
16:43:04,344 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Error adding NPC equipment, ObjectId=af85d44a-38bd-4738-b559-96afd74b4971
16:43:05,232 - [MAIN] - INFO - DOL.GS.Region - Region: New Frontiers (163) loaded 8024 mobs, 52 merchants, 91 items 12 bindpoints, from DB (RegionTime2)
16:43:05,232 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 194MB
16:43:05,253 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,256 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,265 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,270 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,292 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 0b9e4b91-6238-4a38-b71c-cce175bc06bf
16:43:05,314 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,328 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,344 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,354 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,359 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,370 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,373 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,374 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,397 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:05,400 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,413 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:05,417 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,434 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,436 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: c0ecb12e-2127-4181-95e6-5693a375938b
16:43:05,446 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,453 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,472 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1da9bd94-d5ef-41b7-9260-ed4fb95ea3ee
16:43:05,480 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,489 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,499 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,500 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,504 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,510 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,545 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,553 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,565 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,567 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,570 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,589 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,595 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,600 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,607 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,613 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:05,621 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,624 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,627 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,628 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,662 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,665 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 3b033578-c3cb-4930-8b89-20c44f848142
16:43:05,668 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,691 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:05,700 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,745 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:05,755 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,759 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,770 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,780 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,812 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,813 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,815 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,816 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,820 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,822 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,823 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,826 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,831 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,835 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:43:05,849 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,866 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:05,869 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,871 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,879 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,883 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,888 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,893 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:05,896 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,913 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,924 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,928 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,940 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,945 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,950 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,951 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,961 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,972 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,976 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:05,981 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:05,989 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,991 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,998 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:05,999 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,008 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,015 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,017 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,019 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,022 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,032 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,034 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,036 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,047 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,053 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,073 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,074 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,078 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:06,081 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,082 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,095 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,105 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,107 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,108 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,108 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,110 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,110 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,113 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,114 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,115 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,117 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,118 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,119 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,119 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,120 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,121 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,122 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,123 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,124 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,125 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,127 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,128 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,129 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,130 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,131 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,132 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,133 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,134 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,135 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,136 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,137 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,138 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,139 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,140 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:43:06,142 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,143 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,144 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,145 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,146 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,147 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,148 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,151 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,151 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,153 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,154 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,155 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,156 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,157 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,158 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,159 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,160 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,161 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,162 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,163 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,164 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,165 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,166 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,167 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,168 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,169 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,170 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,171 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,173 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,174 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,175 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:06,176 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:06,177 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:43:06,179 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:43:06,180 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,181 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,182 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,183 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,184 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,185 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,188 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,189 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,190 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,191 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,192 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,193 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,194 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,196 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,197 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,198 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,201 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,203 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,204 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:43:06,423 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,425 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,426 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,427 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,428 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,429 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,430 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,431 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,433 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,434 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,435 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,436 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,438 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,439 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,440 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,441 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,442 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,443 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,444 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,445 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,446 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,448 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,449 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,450 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,451 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,452 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,453 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,454 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,456 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,457 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,458 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,459 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,461 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,462 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,463 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,464 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,465 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,466 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,467 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,468 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,469 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,471 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,472 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,473 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,474 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,475 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,476 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,477 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:43:06,637 - [MAIN] - INFO - DOL.GS.Region - Region: Tutorial (27) loaded 3216 mobs, 51 merchants, 395 items 9 bindpoints, from DB (RegionTime1)
16:43:06,638 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 201MB
16:43:07,078 - [MAIN] - INFO - DOL.GS.Region - Region: Darkness Falls (249) loaded 1447 mobs, 30 merchants, 0 items 0 bindpoints, from DB (RegionTime2)
16:43:07,078 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 201MB
16:43:07,221 - [MAIN] - INFO - DOL.GS.Region - Region: Varulvhamn (127) loaded 486 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:43:07,222 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 201MB
16:43:07,273 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 65d1ab0c-01bf-480e-9a85-d3ef0196cc9e
16:43:07,287 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 65d1ab0c-01bf-480e-9a85-d3ef0196cc9e
16:43:07,325 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 65d1ab0c-01bf-480e-9a85-d3ef0196cc9e
16:43:07,368 - [MAIN] - INFO - DOL.GS.Region - Region: Stonehenge Barrows (20) loaded 458 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:43:07,368 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 204MB
16:43:07,507 - [MAIN] - INFO - DOL.GS.Region - Region: Spindelhalla (125) loaded 449 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:43:07,507 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 204MB
16:43:07,510 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,511 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,512 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,513 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,514 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,514 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,515 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,517 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,518 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,518 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,520 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,521 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,523 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,524 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,526 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:43:07,527 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,528 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,529 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,530 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,531 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,532 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,533 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,535 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,536 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,538 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,539 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,540 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,542 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,544 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,544 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,545 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,547 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,548 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,548 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,550 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,551 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,552 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,554 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,555 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,556 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,557 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,559 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,560 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,561 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,562 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,564 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,565 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,566 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,566 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,578 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,579 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,581 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,582 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,583 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,584 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,586 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,587 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,588 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,589 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,590 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,592 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,593 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,594 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,595 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,596 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,597 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,598 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,599 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,600 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,602 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,604 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,605 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,606 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,607 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,608 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,609 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,610 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,611 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,613 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,614 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,615 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,616 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,617 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,619 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,620 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,620 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,622 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,623 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,624 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,626 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,627 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:43:07,629 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,629 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,630 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,631 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,632 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,635 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,637 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,638 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,640 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:43:07,641 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,642 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,644 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,645 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,647 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,648 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,649 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,650 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,652 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,652 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,653 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,654 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,655 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,656 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,657 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,658 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,659 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,661 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,662 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,664 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,664 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,665 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,666 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,667 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,668 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,670 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,670 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,672 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,673 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,675 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,676 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,677 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,678 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,680 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,681 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,681 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,682 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,684 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,685 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,687 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,689 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,690 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,691 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,693 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,695 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,696 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,698 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,699 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,699 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,701 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,702 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,703 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,704 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,705 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,706 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,706 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,707 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,708 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,709 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,710 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,713 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,714 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,716 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,717 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,718 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,719 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,720 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,721 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,721 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,722 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,723 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,724 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,725 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,726 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,727 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,728 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,729 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,730 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,731 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,733 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,734 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,735 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,736 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,737 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,747 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,748 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,749 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,751 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,752 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:43:07,753 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,754 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,755 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,756 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,757 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,759 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,760 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,761 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,762 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,764 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,765 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,767 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,767 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,770 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,772 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,772 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:43:07,774 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:43:07,776 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,777 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:43:07,779 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:43:07,780 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:43:07,780 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,781 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,782 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,784 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:43:07,785 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:43:07,786 - [MAIN] - INFO - DOL.GS.Region - Region: Tomb of Mithra (21) loaded 428 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:43:07,786 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 203MB
16:43:07,904 - [MAIN] - INFO - DOL.GS.Region - Region: Coruscating Mine (220) loaded 391 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:43:07,904 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 204MB
16:43:08,012 - [MAIN] - INFO - DOL.GS.Region - Region: Nisse's Lair (129) loaded 368 mobs, 0 merchants, 3 items 0 bindpoints, from DB (RegionTime2)
16:43:08,013 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 205MB
16:43:08,119 - [MAIN] - INFO - DOL.GS.Region - Region: Spraggon Den (222) loaded 368 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:43:08,120 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 205MB
16:43:08,242 - [MAIN] - INFO - DOL.GS.Region - Region: Tir na Nog (201) loaded 322 mobs, 30 merchants, 13 items 0 bindpoints, from DB (RegionTime2)
16:43:08,243 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 207MB
16:43:08,357 - [MAIN] - INFO - DOL.GS.Region - Region: Treibh Caillte (224) loaded 338 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:43:08,357 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 206MB
16:43:08,358 - [MAIN] - ERROR - DOL.GS.Region - Error loading the following NPC ClassType(s), GameNPC used instead: DOL.GS.Scripts.RockyGolem, DOL.GS.Scripts.BefuddledGolem
16:43:08,447 - [MAIN] - INFO - DOL.GS.Region - Region: Koalinth Tribal Caverns (223) loaded 329 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:43:08,447 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 210MB
16:43:08,555 - [MAIN] - INFO - DOL.GS.Region - Region: Camelot City (10) loaded 276 mobs, 40 merchants, 16 items 2 bindpoints, from DB (RegionTime1)
16:43:08,555 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 211MB
16:43:08,653 - [MAIN] - INFO - DOL.GS.Region - Region: Jordheim (101) loaded 255 mobs, 33 merchants, 18 items 1 bindpoints, from DB (RegionTime4)
16:43:08,653 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 212MB
16:43:08,730 - [MAIN] - INFO - DOL.GS.Region - Region: Muire Tomb (221) loaded 246 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:43:08,730 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 211MB
16:43:08,789 - [MAIN] - INFO - DOL.GS.Region - Region: Cursed Tomb (128) loaded 219 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime2)
16:43:08,789 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:08,805 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,807 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,809 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,812 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,815 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,817 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,818 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,819 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,822 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,824 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,826 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,827 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,831 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,832 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,834 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,835 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,837 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,839 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,843 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,844 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,845 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,847 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,850 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,876 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,878 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,879 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,881 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,883 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,885 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,887 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,890 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:43:08,892 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,895 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,896 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,897 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,898 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,899 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,901 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,903 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,906 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:43:08,907 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,908 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,909 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:43:08,912 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,915 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,918 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,919 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,922 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:43:08,924 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,925 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,926 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,927 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,928 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:43:08,931 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,934 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,935 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,938 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,939 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,941 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,943 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,945 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,947 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,948 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,950 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,952 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:43:08,954 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:43:08,955 - [MAIN] - INFO - DOL.GS.Region - Region: Catacombs of Cardova (23) loaded 215 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:43:08,956 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 212MB
16:43:08,963 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,965 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,967 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,972 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,977 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,978 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,987 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,989 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,993 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,994 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:08,997 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,000 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,007 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,013 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,015 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,016 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,019 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,020 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,022 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,032 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,035 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,037 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,040 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,041 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,043 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,049 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,056 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,061 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,062 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:43:09,063 - [MAIN] - INFO - DOL.GS.Region - Region: Keltoi Fogou (22) loaded 212 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime2)
16:43:09,064 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 212MB
16:43:09,122 - [MAIN] - INFO - DOL.GS.Region - Region: Vendo Caverns (126) loaded 211 mobs, 0 merchants, 1 items 0 bindpoints, from DB (RegionTime3)
16:43:09,123 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,143 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 77614543-a506-4706-8293-739331650e2a
16:43:09,171 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: Botok
16:43:09,193 - [MAIN] - INFO - DOL.GS.Region - Region: Tepok's Mine (24) loaded 186 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:43:09,194 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 213MB
16:43:09,201 - [MAIN] - INFO - DOL.GS.Region - Region: King Constantine's Throne Room (394) loaded 16 mobs, 3 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:43:09,201 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:09,208 - [MAIN] - INFO - DOL.GS.Region - Region: King Eirik's Throne Room (360) loaded 16 mobs, 3 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:43:09,208 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:09,214 - [MAIN] - INFO - DOL.GS.Region - Region: King Lamfhotas' Throne Room (395) loaded 14 mobs, 3 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:43:09,215 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:09,217 - [MAIN] - INFO - DOL.GS.Region - Region: Avalon (51) loaded 0 mobs, 1 merchants, 0 items 13 bindpoints, from DB (RegionTime2)
16:43:09,218 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,439 - [MAIN] - INFO - DOL.GS.Region - Region: Aegir (151) loaded 0 mobs, 0 merchants, 0 items 11 bindpoints, from DB (RegionTime4)
16:43:09,439 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:09,455 - [MAIN] - INFO - DOL.GS.Region - Region: Atlantis (130) loaded 0 mobs, 0 merchants, 0 items 4 bindpoints, from DB (RegionTime2)
16:43:09,455 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:09,474 - [MAIN] - INFO - DOL.GS.Region - Region: HyBrasil (181) loaded 0 mobs, 0 merchants, 0 items 11 bindpoints, from DB (RegionTime4)
16:43:09,475 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:43:09,493 - [MAIN] - INFO - DOL.GS.Region - Region: Inconnu Crypt (65) loaded 0 mobs, 0 merchants, 0 items 2 bindpoints, from DB (RegionTime4)
16:43:09,494 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,506 - [MAIN] - INFO - DOL.GS.Region - Region: Atlantis (30) loaded 0 mobs, 0 merchants, 0 items 4 bindpoints, from DB (RegionTime1)
16:43:09,506 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,526 - [MAIN] - INFO - DOL.GS.Region - Region: Shar Labyrinth (93) loaded 0 mobs, 0 merchants, 0 items 2 bindpoints, from DB (RegionTime4)
16:43:09,526 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,538 - [MAIN] - INFO - DOL.GS.Region - Region: Scrios de Atlantis (72) loaded 0 mobs, 0 merchants, 0 items 1 bindpoints, from DB (RegionTime1)
16:43:09,539 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,540 - [MAIN] - INFO - DOL.GS.Region - Region: Atlantis (73) loaded 0 mobs, 0 merchants, 0 items 5 bindpoints, from DB (RegionTime4)
16:43:09,541 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:43:09,598 - [MAIN] - INFO - DOL.GS.Region - Region: Braemar (239) loaded 0 mobs, 0 merchants, 0 items 3 bindpoints, from DB (RegionTime3)
16:43:09,599 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:43:09,603 - [MAIN] - INFO - DOL.GS.Region - Region: Labyrinth (245) loaded 0 mobs, 0 merchants, 0 items 4 bindpoints, from DB (RegionTime4)
16:43:09,603 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:43:09,644 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Mobs: 56010
16:43:09,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Merchants: 864
16:43:09,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Items: 989
16:43:09,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Bind Points: 157
16:43:09,646 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory World Manager Initialization: 217
16:43:09,646 - [MAIN] - INFO - DOL.GS.GameServer - World Manager Initialization: True
16:43:09,646 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory World Manager Initialization: 217
16:43:09,647 - [RelocateReg] - INFO - DOL.GS.WorldMgr - started RelocateRegions() thread ID:12
16:43:09,649 - [NpcUpdate] - DEBUG - DOL.GS.WorldMgr - NPCUpdateThread ThreadId=6
16:43:09,650 - [MAIN] - DEBUG - DOL.GS.RelicMgr - 18 relicpadss were loaded.
16:43:09,651 - [MAIN] - DEBUG - DOL.GS.RelicMgr - 0 relic was loaded.
16:43:09,651 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Relic Manager: 217
16:43:09,651 - [MAIN] - INFO - DOL.GS.GameServer - Relic Manager: True
16:43:09,651 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Relic Manager: 217
16:43:09,653 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Weather Managers: 217
16:43:09,653 - [MAIN] - INFO - DOL.GS.GameServer - Weather Managers: True
16:43:09,653 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Weather Managers: 217
16:43:09,655 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Crafting Managers: 217
16:43:09,655 - [MAIN] - INFO - DOL.GS.GameServer - Crafting Managers: True
16:43:09,655 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Crafting Managers: 217
16:43:09,659 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.FrontierProtector
16:43:09,659 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.FrontierChallengerTitle
16:43:09,659 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.FrontierVindicatorTitle
16:43:09,660 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.StrongholdChiefTitle
16:43:09,660 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.StrongholdSoldierTitle
16:43:09,660 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BattleEnforcer
16:43:09,660 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BattleMaster
16:43:09,661 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BaneOfAlbionTitle
16:43:09,661 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.SlayerOfAlbionTitle
16:43:09,661 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ScourgeOfAlbionTitle
16:43:09,661 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterAssassineTitle
16:43:09,662 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterEnforcerTitle
16:43:09,662 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterSoldierTitle
16:43:09,662 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DemonBaneTitle
16:43:09,663 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DemonScourgeTitle
16:43:09,663 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DemonSlayerTitle
16:43:09,663 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DreadVanquisherTitle
16:43:09,663 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonBaneTitle
16:43:09,664 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonFoeTitle
16:43:09,664 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonScourgeTitle
16:43:09,664 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonSlayerTitle
16:43:09,664 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.EpicChallengerTitle
16:43:09,665 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.EpicVictorTitle
16:43:09,665 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BaneOfHiberniaTitle
16:43:09,665 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.SlayerOfHiberniaTitle
16:43:09,665 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ScourgeOfHiberniaTitle
16:43:09,666 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BaneOfMidgardTitle
16:43:09,666 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.SlayerOfMidgardTitle
16:43:09,666 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ScourgeOfMidgardTitle
16:43:09,667 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ChampionlevelTitle
16:43:09,667 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.Level20Title
16:43:09,667 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterlevelTitle
16:43:09,667 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.AdministratorTitle
16:43:09,668 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.GamemasterTitle
16:43:09,668 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.CraftTitle
16:43:09,668 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR4
16:43:09,668 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR5
16:43:09,668 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR6
16:43:09,669 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR7
16:43:09,669 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR8
16:43:09,669 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR9
16:43:09,669 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR10
16:43:09,670 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR11M
16:43:09,670 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR11F
16:43:09,670 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR12M
16:43:09,670 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR12F
16:43:09,671 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR4
16:43:09,671 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR5
16:43:09,671 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR6
16:43:09,671 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR7
16:43:09,671 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR8
16:43:09,672 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR9
16:43:09,672 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR10
16:43:09,672 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR11M
16:43:09,672 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR11F
16:43:09,673 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR12M
16:43:09,673 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR12F
16:43:09,673 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR4
16:43:09,673 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR5
16:43:09,674 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR6
16:43:09,674 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR7
16:43:09,674 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR8
16:43:09,674 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR9
16:43:09,674 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR10
16:43:09,675 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR11M
16:43:09,675 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR11F
16:43:09,675 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR12M
16:43:09,675 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR12F
16:43:09,676 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DuelMasterTitle
16:43:09,676 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.LoneEnforcerTitle
16:43:09,676 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ElderTitle
16:43:09,676 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.VeteranTitle
16:43:09,677 - [MAIN] - INFO - DOL.GS.PlayerTitles.PlayerTitleMgr - Loaded 72 player titles
16:43:09,677 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Player Titles Manager: 217
16:43:09,677 - [MAIN] - INFO - DOL.GS.GameServer - Player Titles Manager: True
16:43:09,677 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Player Titles Manager: 217
16:43:09,681 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.AnimationAction
16:43:09,682 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.PlaySoundAction
16:43:09,682 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TrainerWindowAction
16:43:09,683 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.AttackAction
16:43:09,683 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MonsterSpawnAction
16:43:09,683 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.SetMonsterPathAction
16:43:09,684 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.WalkToSpawnAction
16:43:09,684 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MonsterUnspawnAction
16:43:09,684 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MoveToAction
16:43:09,684 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.SetGuildNameAction
16:43:09,685 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.WalkToAction
16:43:09,685 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TimerAction
16:43:09,685 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.CustomTimerAction
16:43:09,685 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TeleportAction
16:43:09,686 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MessageAction
16:43:09,686 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.CustomDialogAction
16:43:09,686 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.WhisperAction
16:43:09,687 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TalkAction
16:43:09,687 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TakeGoldAction
16:43:09,687 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.GiveGoldAction
16:43:09,687 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.GiveXPAction
16:43:09,687 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.ReplaceItemAction
16:43:09,688 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.DestroyItemAction
16:43:09,688 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.DropItemAction
16:43:09,701 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TakeItemAction
16:43:09,701 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.GiveItemAction
16:43:09,701 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.ClassRequirement
16:43:09,702 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RandomChanceRequirement
16:43:09,702 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RaceRequirement
16:43:09,703 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.LevelRequirement
16:43:09,703 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.HealthMaxRequirement
16:43:09,703 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.HealthRequirement
16:43:09,703 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GenderRequirement
16:43:09,703 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.ManaMaxRequirement
16:43:09,704 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.ManaRequirement
16:43:09,704 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EnduranceRequirement
16:43:09,704 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EncumbranceMaxRequirement
16:43:09,705 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EncumbranceRequirement
16:43:09,705 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GoldRequirement
16:43:09,705 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RegionRequirement
16:43:09,705 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RealmLevelRequirement
16:43:09,706 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RealmRequirement
16:43:09,706 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.DistanceRequirement
16:43:09,706 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GroupNumberRequirement
16:43:09,706 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GroupLevelRequirement
16:43:09,707 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EquippedItemRequirement
16:43:09,707 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GuildRequirement
16:43:09,707 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RealmPointsRequirement
16:43:09,707 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.InventoryItemRequirement
16:43:09,713 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.ItemUsedTrigger
16:43:09,714 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.TimerTrigger
16:43:09,714 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.LeaveAreaTrigger
16:43:09,714 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.EnterAreaTrigger
16:43:09,715 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.PlayerKilledTrigger
16:43:09,715 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.EnemyDyingTrigger
16:43:09,715 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.EnemyKilledTrigger
16:43:09,715 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.GiveItemTrigger
16:43:09,731 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.WhisperTrigger
16:43:09,731 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.InteractTrigger
16:43:09,731 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.AbortQuestAction
16:43:09,732 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.FinishQuestAction
16:43:09,732 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.GiveQuestAction
16:43:09,732 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.IncreaseQuestStepAction
16:43:09,732 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.OfferQuestAbortAction
16:43:09,733 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.OfferQuestAction
16:43:09,733 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.SetQuestStepAction
16:43:09,733 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestCompletedRequirement
16:43:09,733 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestGivableRequirement
16:43:09,734 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestPendingRequirement
16:43:09,734 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestStepRequirement
16:43:09,734 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.AbortQuestTrigger
16:43:09,734 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.AcceptQuestTrigger
16:43:09,735 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.ContinueQuestTrigger
16:43:09,735 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.DeclineQuestTrigger
16:43:10,027 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Behaviour Manager: 218
16:43:10,027 - [MAIN] - INFO - DOL.GS.GameServer - Behaviour Manager: True
16:43:10,028 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Behaviour Manager: 218
16:43:10,030 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.ArtifactEncounter
16:43:10,030 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.BaseQuest
16:43:10,031 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.ArtifactQuest
16:43:10,031 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.AHealersEmbrace
16:43:10,031 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.AHealersEmbrace
16:43:10,032 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Healer's Embrace
16:43:10,033 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.AlvarusLeggings
16:43:10,033 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.AlvarusLeggings
16:43:10,033 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Alvarus's Leggings
16:43:10,033 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ArmsOfTheWinds
16:43:10,034 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ArmsOfTheWinds
16:43:10,034 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Arms of the Winds
16:43:10,034 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.AtensShield
16:43:10,034 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.AtensShield
16:43:10,035 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Aten's Shield
16:43:10,035 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BandOfStars
16:43:10,035 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BandOfStars
16:43:10,035 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Band of Stars
16:43:10,035 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Battler
16:43:10,036 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Battler
16:43:10,036 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Battler
16:43:10,036 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BeltofOglidarsh
16:43:10,036 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BeltofOglidarsh
16:43:10,037 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Belt of Oglidarsh
16:43:10,037 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheMoon
16:43:10,037 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheMoon
16:43:10,037 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Belt of the Moon
16:43:10,038 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheSun
16:43:10,038 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheSun
16:43:10,038 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Belt of the Sun
16:43:10,038 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BracerofZoarkat
16:43:10,039 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BracerofZoarkat
16:43:10,039 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Bracer of Zo'arkat
16:43:10,039 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Bruiser
16:43:10,039 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Bruiser
16:43:10,040 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Bruiser
16:43:10,040 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.CeremonialBracers
16:43:10,040 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.CeremonialBracers
16:43:10,041 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Ceremonial Bracers
16:43:10,041 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Cloudsong
16:43:10,041 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Cloudsong
16:43:10,041 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Cloudsong
16:43:10,041 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.CrocodileTearRing
16:43:10,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.CrocodileTearRing
16:43:10,042 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Crocodile Tear Ring
16:43:10,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.DreamSphere
16:43:10,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.DreamSphere
16:43:10,043 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Dream Sphere
16:43:10,043 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EggofYouth
16:43:10,043 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EggofYouth
16:43:10,043 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Egg of Youth
16:43:10,043 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EirenesHauberk
16:43:10,044 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EirenesHauberk
16:43:10,044 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Eirene's Chestpiece
16:43:10,044 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EnyaliosBoots
16:43:10,044 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EnyaliosBoots
16:43:10,045 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Enyalio's Boots
16:43:10,045 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ErinysCharm
16:43:10,045 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ErinysCharm
16:43:10,045 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Erinys Charm
16:43:10,046 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EternalPlant
16:43:10,046 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EternalPlant
16:43:10,046 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Eternal Plant
16:43:10,046 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.GoddessNecklace
16:43:10,051 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.GoddessNecklace
16:43:10,052 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Goddess Necklace
16:43:10,052 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.GuardOfValor
16:43:10,052 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.GuardOfValor
16:43:10,052 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Guard of Valor
16:43:10,053 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.HarpyFeatherCloak
16:43:10,053 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.HarpyFeatherCloak
16:43:10,053 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Harpy Feather Cloak
16:43:10,053 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.JacinasSash
16:43:10,054 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.JacinasSash
16:43:10,054 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Jacina's Sash
16:43:10,054 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.KalaresNecklace
16:43:10,061 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.KalaresNecklace
16:43:10,061 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Kalare's Necklace
16:43:10,061 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.MaddeningScalars
16:43:10,062 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.MaddeningScalars
16:43:10,062 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Maddening Scalars
16:43:10,062 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.MalicesAxe
16:43:10,062 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.MalicesAxe
16:43:10,063 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Malice's Axe
16:43:10,063 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.NightsShroudBracelet
16:43:10,063 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.NightsShroudBracelet
16:43:10,063 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Night's Shroud Bracelet
16:43:10,064 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.RingofFire
16:43:10,064 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.RingofFire
16:43:10,064 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Ring of Fire
16:43:10,064 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.RingofUnyieldingWill
16:43:10,065 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.RingofUnyieldingWill
16:43:10,065 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Ring of Unyielding Will
16:43:10,065 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ScorpionsTail
16:43:10,065 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ScorpionsTail
16:43:10,066 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact The Scorpions Tail
16:43:10,066 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ShadesOfMist
16:43:10,066 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ShadesOfMist
16:43:10,066 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Shades of Mist
16:43:10,067 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ShieldOfKhaos
16:43:10,067 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ShieldOfKhaos
16:43:10,067 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Shield of Khaos
16:43:10,067 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Snatcher
16:43:10,067 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Snatcher
16:43:10,068 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Snatcher
16:43:10,068 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.StaffofGod
16:43:10,068 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.StaffofGod
16:43:10,068 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Staff of the God
16:43:10,068 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.StoneofAtlantis
16:43:10,069 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.StoneofAtlantis
16:43:10,072 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Stone of Atlantis
16:43:10,073 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.TabletofAtlantis
16:43:10,073 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.TabletofAtlantis
16:43:10,073 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Tablet of Atlantis
16:43:10,074 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.TartarosStaff
16:43:10,074 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.TartarosStaff
16:43:10,074 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Tartaros' Gift
16:43:10,074 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.ArtifactTurnInQuest
16:43:10,074 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.ArtifactTurnInQuest
16:43:10,076 - [MAIN] - INFO - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Quest "Artifact Turn-in Quest" initializing ...
16:43:10,091 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Could not find Artifact Scholar Alaria, creating her ...
16:43:10,108 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Could not find Artifact Scholar Jarron, creating him ...
16:43:10,124 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Could not find Artifact Scholar Elmer, creating him ...
16:43:10,128 - [MAIN] - INFO - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Quest "Artifact Turn-in Quest" initialized
16:43:10,128 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AFlask
16:43:10,128 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AHealersEmbrace
16:43:10,128 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AlvarusLeggings
16:43:10,129 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ArmsOfTheWinds
16:43:10,129 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AtensShield
16:43:10,129 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AtlantisTablet
16:43:10,129 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BandOfStars
16:43:10,130 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Battler
16:43:10,130 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BeltofOglidarsh
16:43:10,130 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BeltoftheMoon
16:43:10,130 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BeltoftheSun
16:43:10,130 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BracerofZoarkat
16:43:10,131 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BraggartsBow
16:43:10,131 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Bruiser
16:43:10,131 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CeremonialBracers
16:43:10,131 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Cloudsong
16:43:10,132 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CrocodilesTooth
16:43:10,132 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CrocodileTearRing
16:43:10,132 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CrownofZahur
16:43:10,132 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CyclopsEyeShield
16:43:10,132 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.DreamSphere
16:43:10,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EerieDarknessStone
16:43:10,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EggOfYouth
16:43:10,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EirenesHauberk
16:43:10,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EnyaliosBoots
16:43:10,134 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ErinysCharm
16:43:10,134 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EternalPlant
16:43:10,134 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.FlamedancersBoots
16:43:10,134 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.FoolsBow
16:43:10,134 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.FoppishSleeves
16:43:10,135 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GemofLostMemories
16:43:10,135 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GoddessNecklace
16:43:10,135 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GoldenScarabVest
16:43:10,135 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GoldenSpear
16:43:10,136 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GuardOfValor
16:43:10,136 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.HarpyFeatherCloak
16:43:10,136 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.JacinasSash
16:43:10,136 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.KalaresNecklace
16:43:10,136 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.MaddeningScalars
16:43:10,137 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.MalicesAxe
16:43:10,137 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.MariashasSharkskinGloves
16:43:10,137 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.NailahsRobes
16:43:10,137 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.NightsShroudBracelet
16:43:10,138 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.OrionsBelt
16:43:10,138 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.PhoebusHarp
16:43:10,138 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.RingofDances
16:43:10,138 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.RingofFire
16:43:10,138 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.RingofUnyieldingWill
16:43:10,139 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ScepteroftheMeritorious
16:43:10,139 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ScorpionsTail
16:43:10,139 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ShadesOfMist
16:43:10,139 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ShieldOfKhaos
16:43:10,140 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.SnakecharmersWeapon
16:43:10,140 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Snatcher
16:43:10,140 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.SpearofKings
16:43:10,140 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.StaffofGod
16:43:10,140 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.StoneOfAtlantis
16:43:10,141 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.TartarosStaff
16:43:10,141 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.TraitorsDagger
16:43:10,141 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.TraldorsOracle
16:43:10,141 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.WingedHelm
16:43:10,141 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.WingsDive
16:43:10,142 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.ObeliskCredit
16:43:10,142 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.InconnuCrypt
16:43:10,142 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.KoboldUndercity
16:43:10,142 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.SharLabyrinth
16:43:10,145 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.DataQuest
16:43:10,146 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.RewardQuest
16:43:10,146 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AFewRepairs
16:43:10,146 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AfterTheAccident
16:43:10,147 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AgainstTheGrain
16:43:10,147 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Aidingguardalakyrr
16:43:10,147 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AMessageToTheManes
16:43:10,147 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AndrewsSkins
16:43:10,147 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ANewHeroesWelcome
16:43:10,148 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ArgussArrows
16:43:10,148 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ArleighsAssistant
16:43:10,148 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ArrowsForYettaFletcher
16:43:10,148 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BaseFrederickQuest
16:43:10,148 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BeginningOfWar
16:43:10,149 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BoarStew
16:43:10,149 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BoulderlingBalm
16:43:10,163 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BreakingTheBandits
16:43:10,163 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BuildingABetterBow
16:43:10,163 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Cellarinfestation
16:43:10,164 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.CemmethsOrders
16:43:10,164 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.childsplay
16:43:10,164 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.CityOfCamelot
16:43:10,164 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ClericMulgrut
16:43:10,164 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Collection
16:43:10,165 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Culmination
16:43:10,165 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Disenchanted
16:43:10,165 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.DredgeUpAPledge
16:43:10,165 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Frontiers
16:43:10,165 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GodelevasNeed
16:43:10,165 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GreenerPastures
16:43:10,166 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GreetingsArmsman
16:43:10,166 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GreetingsPaladin
16:43:10,166 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HalfOgreAllMan
16:43:10,166 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HeartOfSephucoth
16:43:10,166 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HuntForArachneida
16:43:10,167 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HuntForSlith
16:43:10,167 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ImportantDelivery
16:43:10,167 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.IreFairyIre
16:43:10,167 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.LawrencesOil
16:43:10,167 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.MarlinsSalesPitch
16:43:10,168 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.MovementAndInteraction
16:43:10,168 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.NoHopeForTheHopeful
16:43:10,168 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Nuisances
16:43:10,168 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.RecruitingNothingButTrouble
16:43:10,168 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.RevengeTheOtherWhiteMeat
16:43:10,169 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ShakenSquire
16:43:10,169 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.TombWithAView
16:43:10,169 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ToReachTheBreach
16:43:10,172 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.TraitorInCotswold
16:43:10,172 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.TreviansBestFriend
16:43:10,172 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.WhenBloodSpeaks
16:43:10,172 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.WhenGoodBrowniesGoBad
16:43:10,173 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.WolfPeltCloak
16:43:10,173 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.YdeniasCrush
16:43:10,173 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Academy_50
16:43:10,173 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Church_50
16:43:10,173 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Defenders_50
16:43:10,174 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Shadows_50
16:43:10,174 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Examples.HelpSirQuait
16:43:10,174 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.WingsOfTheIsleHibernia
16:43:10,174 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.BaseAddrirQuest
16:43:10,174 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.BasicsOfCombat
16:43:10,175 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.BonesToBlades
16:43:10,175 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.childsplay
16:43:10,189 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.CityOfTirnaNog
16:43:10,190 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.ImportantDelivery
16:43:10,190 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.MagicalBacklash
16:43:10,190 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.MovementAndInteraction
16:43:10,190 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Nuisances
16:43:10,190 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.SearchForKnowledge
16:43:10,191 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.ToReachTheBreach
16:43:10,191 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.TraitorInMagMell
16:43:10,191 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Essence_50
16:43:10,191 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Focus_50
16:43:10,191 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Harmony_50
16:43:10,192 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Amorasaidmistyc
16:43:10,192 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Abearybadproblem
16:43:10,192 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.badfood
16:43:10,192 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.BaseDalikorQuest
16:43:10,192 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Bearskins
16:43:10,193 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.BeginningOfWar
16:43:10,193 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.childsplay
16:43:10,193 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.CityOfJordheim
16:43:10,193 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Collection
16:43:10,193 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Culmination
16:43:10,194 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.essenceoflife
16:43:10,194 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Frontiers
16:43:10,194 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.ImportantDelivery
16:43:10,194 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Learnthehunt
16:43:10,194 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.maulerinvasion
16:43:10,194 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.meadrun
16:43:10,195 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.MovementAndInteraction
16:43:10,195 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Nuisances
16:43:10,195 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.rindaslostkey
16:43:10,195 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.StolenEggs
16:43:10,195 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.sveabonehiltsword
16:43:10,196 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.thebirthdaygift
16:43:10,198 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.TraitorInMularn
16:43:10,198 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.trialofstrength
16:43:10,198 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Rogue_50
16:43:10,199 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Mystic_50
16:43:10,199 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Seer_50
16:43:10,199 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Viking_50
16:43:10,199 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Quest Manager: 218
16:43:10,199 - [MAIN] - INFO - DOL.GS.GameServer - Quest Manager: True
16:43:10,200 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Quest Manager: 218
16:43:10,232 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Viking_50 - Quest "An End to the Daggers" initializing ...
16:43:10,277 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Viking_50 - Could not find Ydenia , creating it ...
16:43:10,365 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Viking_50 - Quest "An End to the Daggers" initialized
16:43:10,372 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Seer_50 - Quest "The Desire of a God" initializing ...
16:43:10,402 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Seer_50 - Could not find Loken , creating it ...
16:43:10,437 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Seer_50 - Quest "The Desire of a God" initialized
16:43:10,456 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Mystic_50 - Quest "Saving the Clan" initializing ...
16:43:10,490 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Mystic_50 - Could not find Kelic , creating it ...
16:43:10,536 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Mystic_50 - Quest "Saving the Clan" initialized
16:43:10,543 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Rogue_50 - Quest "War Concluded" initializing ...
16:43:10,573 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Rogue_50 - Could not find Oona , creating it ...
16:43:10,611 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Rogue_50 - Quest "War Concluded" initialized
16:43:10,616 - [MAIN] - INFO - DOL.GS.Quests.Midgard.trialofstrength - Quest "Trial of Strength" initializing ...
16:43:10,631 - [MAIN] - WARN - DOL.GS.Quests.Midgard.trialofstrength - Could not find Torold Sterkkriger, creating ...
16:43:10,646 - [MAIN] - WARN - DOL.GS.Quests.Midgard.trialofstrength - Could not find Jorund Bruttstein, creating ...
16:43:10,665 - [MAIN] - INFO - DOL.GS.Quests.Midgard.trialofstrength - Quest "Trial of Strength" initialized
16:43:10,676 - [MAIN] - INFO - DOL.GS.Quests.Midgard.TraitorInMularn - Quest "Traitor in Mularn" initializing ...
16:43:10,715 - [MAIN] - INFO - DOL.GS.Quests.Midgard.TraitorInMularn - Quest "Traitor in Mularn" initialized
16:43:10,721 - [MAIN] - INFO - DOL.GS.Quests.Midgard.thebirthdaygift - Quest "The Birthday Gift" initializing ...
16:43:10,756 - [MAIN] - INFO - DOL.GS.Quests.Midgard.thebirthdaygift - Quest "The Birthday Gift" initialized
16:43:10,761 - [MAIN] - INFO - DOL.GS.Quests.Midgard.sveabonehiltsword - Quest "Sveabone Hilt Sword" initializing ...
16:43:10,782 - [MAIN] - INFO - DOL.GS.Quests.Midgard.sveabonehiltsword - Quest "Sveabone Hilt Sword" initialized
16:43:10,786 - [MAIN] - INFO - DOL.GS.Quests.Midgard.StolenEggs - Quest "Stolen Eggs" initializing ...
16:43:10,843 - [MAIN] - INFO - DOL.GS.Quests.Midgard.StolenEggs - Quest "Stolen Eggs" initialized
16:43:10,849 - [MAIN] - INFO - DOL.GS.Quests.Midgard.rindaslostkey - Quest "Rinda's Lost Key" initializing ...
16:43:10,886 - [MAIN] - INFO - DOL.GS.Quests.Midgard.rindaslostkey - Quest "Rinda's Lost Key" initialized
16:43:10,889 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Nuisances - Quest "Nuisances (Mid)" initializing ...
16:43:10,910 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Nuisances - Quest "Nuisances (Mid)" initialized
16:43:10,913 - [MAIN] - INFO - DOL.GS.Quests.Midgard.MovementAndInteraction - Quest "Movement and Interaction" initializing ...
16:43:10,927 - [MAIN] - WARN - DOL.GS.Quests.Midgard.MovementAndInteraction - Could not find Jarl Thorsa, creating him ...
16:43:10,942 - [MAIN] - INFO - DOL.GS.Quests.Midgard.MovementAndInteraction - Quest "Movement and Interaction" initialized
16:43:10,946 - [MAIN] - INFO - DOL.GS.Quests.Midgard.meadrun - Quest "Mead Run" initializing ...
16:43:10,975 - [MAIN] - WARN - DOL.GS.Quests.Midgard.meadrun - Could not find Guard Olja, creating ...
16:43:10,980 - [MAIN] - INFO - DOL.GS.Quests.Midgard.meadrun - Quest "Mead Run" initialized
16:43:10,985 - [MAIN] - INFO - DOL.GS.Quests.Midgard.maulerinvasion - Quest "Mauler Invasion" initializing ...
16:43:11,004 - [MAIN] - INFO - DOL.GS.Quests.Midgard.maulerinvasion - Quest "Mauler Invasion" initialized
16:43:11,007 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Learnthehunt - Quest "Learn the hunt" initializing ...
16:43:11,024 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Learnthehunt - Quest "Learn the hunt" initialized
16:43:11,027 - [MAIN] - INFO - DOL.GS.Quests.Midgard.ImportantDelivery - Quest "Important Delivery (Mid)" initializing ...
16:43:11,126 - [MAIN] - INFO - DOL.GS.Quests.Midgard.ImportantDelivery - Quest "Important Delivery (Mid)" initialized
16:43:11,132 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Frontiers - Quest "Frontiers (Mid)" initializing ...
16:43:11,160 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Frontiers - Could not find Stor Gothi Annark, creating ...
16:43:11,205 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Frontiers - Quest "Frontiers (Mid)" initialized
16:43:11,210 - [MAIN] - INFO - DOL.GS.Quests.Midgard.essenceoflife - Quest "Essence of Life" initializing ...
16:43:11,227 - [MAIN] - WARN - DOL.GS.Quests.Midgard.essenceoflife - Could not find Ambient Rat Statua, creating ...
16:43:11,242 - [MAIN] - WARN - DOL.GS.Quests.Midgard.essenceoflife - Could not find Ballach, creating ...
16:43:11,249 - [MAIN] - INFO - DOL.GS.Quests.Midgard.essenceoflife - Quest "Essence of Life" initialized
16:43:11,253 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Culmination - Quest "Culmination (Mid)" initializing ...
16:43:11,294 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Culmination - Quest "Culmination (Mid)" initialized
16:43:11,298 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Collection - Quest "Collection (Mid)" initializing ...
16:43:11,367 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Collection - Quest "Collection (Mid)" initialized
16:43:11,372 - [MAIN] - INFO - DOL.GS.Quests.Midgard.CityOfJordheim - Quest "City of Jordheim" initializing ...
16:43:11,426 - [MAIN] - INFO - DOL.GS.Quests.Midgard.CityOfJordheim - Quest "City of Jordheim" initialized
16:43:11,442 - [MAIN] - INFO - DOL.GS.Quests.Midgard.childsplay - Quest "Child's Play" (Mid) initializing ...
16:43:11,488 - [MAIN] - INFO - DOL.GS.Quests.Midgard.childsplay - Quest "Child's Play" initialized
16:43:11,494 - [MAIN] - INFO - DOL.GS.Quests.Midgard.BeginningOfWar - Quest "Beginning of War (Mid)" initializing ...
16:43:11,522 - [MAIN] - WARN - DOL.GS.Quests.Midgard.BeginningOfWar - Could not find Master Briedi, creating him ...
16:43:11,554 - [MAIN] - INFO - DOL.GS.Quests.Midgard.BeginningOfWar - Quest "Beginning of War (Mid)" initialized
16:43:11,558 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Bearskins - Quest "Bear Skins" initializing ...
16:43:11,575 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Bearskins - Quest "Bear Skins" initialized
16:43:11,579 - [MAIN] - INFO - DOL.GS.Quests.Midgard.badfood - Quest "Bad Food" initializing ...
16:43:11,593 - [MAIN] - WARN - DOL.GS.Quests.Midgard.badfood - Could not find Pedra, creating ...
16:43:11,608 - [MAIN] - WARN - DOL.GS.Quests.Midgard.badfood - Could not find Kedra, creating ...
16:43:11,612 - [MAIN] - INFO - DOL.GS.Quests.Midgard.badfood - Quest "Bad Food" initialized
16:43:11,616 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Abearybadproblem - Quest "A Beary Bad Problem" initializing ...
16:43:11,631 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Abearybadproblem - Quest "A Beary Bad Problem" initialized
16:43:11,636 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Amorasaidmistyc - Quest "Amora's Aid for Mistyc" initializing ...
16:43:11,681 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Amorasaidmistyc - Quest "Amora's Aid for Mistyc" initialized
16:43:11,709 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Harmony_50 - Quest "The Horn Twin" initializing ...
16:43:11,740 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.Harmony_50 - Could not find Cailean , creating it ...
16:43:11,814 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Harmony_50 - Quest "The Horn Twin" initialized
16:43:11,825 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Focus_50 - Quest "Unnatural Powers" initializing ...
16:43:11,855 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.Focus_50 - Could not find GreenMaw , creating it ...
16:43:11,908 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Focus_50 - Quest "Unnatural Powers" initialized
16:43:11,918 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Essence_50 - Quest "The Moonstone Twin" initializing ...
16:43:11,949 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.Essence_50 - Could not find Caithor , creating it ...
16:43:11,992 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Essence_50 - Quest "The Moonstone Twin" initialized
16:43:12,010 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.TraitorInMagMell - Quest "Traitor in Mag Mell" initializing ...
16:43:12,045 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.TraitorInMagMell - Quest "Traitor in Mag Mell" initialized
16:43:12,046 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ToReachTheBreach - Quest "To Reach the Breach" initializing ...
16:43:12,072 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ToReachTheBreach - Quest "To Reach the Breach" initialized
16:43:12,074 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.SearchForKnowledge - Quest "Search For Knowledge" initializing ...
16:43:12,107 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.SearchForKnowledge - Quest "Search For Knowledge" initialized
16:43:12,110 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Nuisances - Quest "Nuisances (Hib)" initializing ...
16:43:12,126 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Nuisances - Quest "Nuisances (Hib)" initialized
16:43:12,129 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MovementAndInteraction - Quest "Movement and Interaction" initializing ...
16:43:12,143 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.MovementAndInteraction - Could not find Chieftess Cormyra, creating her ...
16:43:12,159 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.MovementAndInteraction - Could not find Master Gethin, creating him ...
16:43:12,160 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MovementAndInteraction - Quest "Movement and Interaction" initialized
16:43:12,162 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MagicalBacklash - Quest "Magical Backlash" initializing ...
16:43:12,183 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MagicalBacklash - Quest "Magical Backlash" initialized
16:43:12,187 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ImportantDelivery - Quest "Important Delivery (Hib)" initializing ...
16:43:12,259 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ImportantDelivery - Quest "Important Delivery (Hib)" initialized
16:43:12,263 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.CityOfTirnaNog - Quest "City of Tir na Nog" initializing ...
16:43:12,334 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.CityOfTirnaNog - Quest "City of Tir na Nog" initialized
16:43:12,350 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.childsplay - Quest "Child's Play" (Hib) initializing ...
16:43:12,395 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.childsplay - Quest "Child's Play" (Hib) initialized
16:43:12,401 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BonesToBlades - Quest "Bones to Blades" initializing ...
16:43:12,434 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BonesToBlades - Quest "Bones to Blades" initialized
16:43:12,438 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BasicsOfCombat - Quest "Basics of Combat" initializing ...
16:43:12,497 - [MAIN] - ERROR - DOL.GS.Behaviour.AbstractAction`2 - Not nullable parameter was null, expected type is CustomDialogResponsefor =CustomDialogAction.
Recived parameter was
16:43:12,497 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BasicsOfCombat - Quest "Basics of Combat" initialized
16:43:12,509 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.WingsOfTheIsleHibernia - Quest "Wings of the Isle" initializing ...
16:43:12,539 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.WingsOfTheIsleHibernia - Quest "Wings of the Isle" initialized
16:43:12,545 - [MAIN] - WARN - DOL.GS.Ianetor - Loading Master Level 1: Fire Island. Spawned Ianetor's.
16:43:12,549 - [MAIN] - INFO - DOL.GS.Quests.Examples.HelpSirQuait - Quest "Help Sir Quait to find his sword" initializing ...
16:43:12,579 - [MAIN] - WARN - DOL.GS.Quests.Examples.HelpSirQuait - Could not find Evil Thief of the Shadowclan, creating ...
16:43:12,583 - [MAIN] - INFO - DOL.GS.Quests.Examples.HelpSirQuait - Quest "Help Sir Quait to find his sword" initialized
16:43:12,606 - [MAIN] - INFO - DOL.GS.Quests.Albion.Shadows_50 - Quest "Feast of the Decadent" initializing ...
16:43:12,691 - [MAIN] - INFO - DOL.GS.Quests.Albion.Shadows_50 - Quest "Feast of the Decadent" initialized
16:43:12,707 - [MAIN] - INFO - DOL.GS.Quests.Albion.Defenders_50 - Quest "Feast of the Decadent" initializing ...
16:43:12,789 - [MAIN] - INFO - DOL.GS.Quests.Albion.Defenders_50 - Quest "Feast of the Decadent" initialized
16:43:12,797 - [MAIN] - INFO - DOL.GS.Quests.Albion.Church_50 - Quest "Passage to Eternity" initializing ...
16:43:12,851 - [MAIN] - INFO - DOL.GS.Quests.Albion.Church_50 - Quest "Passage to Eternity" initialized
16:43:12,863 - [MAIN] - INFO - DOL.GS.Quests.Albion.Academy_50 - Quest "Symbol of the Broken" initializing ...
16:43:12,893 - [MAIN] - WARN - DOL.GS.Quests.Albion.Academy_50 - Could not find Morgana , creating it ...
16:43:12,910 - [MAIN] - WARN - DOL.GS.Quests.Albion.Academy_50 - Could not find Bechard , creating it ...
16:43:12,927 - [MAIN] - WARN - DOL.GS.Quests.Albion.Academy_50 - Could not find Silcharde , creating it ...
16:43:12,959 - [MAIN] - INFO - DOL.GS.Quests.Albion.Academy_50 - Quest "Symbol of the Broken" initialized
16:43:12,962 - [MAIN] - INFO - DOL.GS.Quests.Albion.YdeniasCrush - Quest "Ydenia's Crush" initializing ...
16:43:12,997 - [MAIN] - INFO - DOL.GS.Quests.Albion.YdeniasCrush - Quest "Ydenia's Crush" initialized
16:43:13,001 - [MAIN] - INFO - DOL.GS.Quests.Albion.WolfPeltCloak - Quest "Wolf Pelt Cloak" initializing ...
16:43:13,048 - [MAIN] - INFO - DOL.GS.Quests.Albion.WolfPeltCloak - Quest "Wolf Pelt Cloak" initialized
16:43:13,050 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenGoodBrowniesGoBad - Quest "When Good Brownies Go Bad" initializing ...
16:43:13,070 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenGoodBrowniesGoBad - Quest "When Good Brownies Go Bad" initialized
16:43:13,072 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenBloodSpeaks - Quest "When Blood Speaks" initializing ...
16:43:13,094 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenBloodSpeaks - Quest "When Blood Speaks" initialized
16:43:13,101 - [MAIN] - INFO - DOL.GS.Quests.Albion.TreviansBestFriend - Quest "Trevian's best Friend" initializing ...
16:43:13,147 - [MAIN] - WARN - DOL.GS.Quests.Albion.TreviansBestFriend - Could not find Mob Bandit Abductor Leader, creating him ...
16:43:13,152 - [MAIN] - WARN - DOL.GS.Quests.Albion.TreviansBestFriend - Could not find Mob Bandit Abductor Henchman, creating him ...
16:43:13,152 - [MAIN] - WARN - DOL.GS.Quests.Albion.TreviansBestFriend - Could not find Mob Bandit Abductor Henchman, creating him ...
16:43:13,171 - [MAIN] - INFO - DOL.GS.Quests.Albion.TreviansBestFriend - Quest "Trevian's best Friend" initialized
16:43:13,174 - [MAIN] - INFO - DOL.GS.Quests.Albion.TraitorInCotswold - Quest "Traitor in Cotswold" initializing ...
16:43:13,210 - [MAIN] - INFO - DOL.GS.Quests.Albion.TraitorInCotswold - Quest "Traitor in Cotswold" initialized
16:43:13,211 - [MAIN] - INFO - DOL.GS.Quests.Albion.ToReachTheBreach - Quest "To Reach the Breach" initializing ...
16:43:13,228 - [MAIN] - INFO - DOL.GS.Quests.Albion.ToReachTheBreach - Quest "To Reach the Breach" initialized
16:43:13,230 - [MAIN] - INFO - DOL.GS.Quests.Albion.TombWithAView - Quest "Tomb With A View" initializing ...
16:43:13,253 - [MAIN] - INFO - DOL.GS.Quests.Albion.TombWithAView - Quest "Tomb With A View" initialized
16:43:13,255 - [MAIN] - INFO - DOL.GS.Quests.Albion.ShakenSquire - Quest "Shaken Squire" initializing ...
16:43:13,283 - [MAIN] - WARN - DOL.GS.Quests.Albion.ShakenSquire - Could not find Squire Galune, creating him ...
16:43:13,284 - [MAIN] - WARN - DOL.GS.Quests.Albion.ShakenSquire - Could not find small spider, creating him ...
16:43:13,285 - [MAIN] - INFO - DOL.GS.Quests.Albion.ShakenSquire - Quest "Shaken Squire" initialized
16:43:13,286 - [MAIN] - INFO - DOL.GS.Quests.Albion.RevengeTheOtherWhiteMeat - Quest "Revenge, the Other White Meat" initializing ...
16:43:13,300 - [MAIN] - INFO - DOL.GS.Quests.Albion.RevengeTheOtherWhiteMeat - Quest "Revenge, the Other White Meat" initialized
16:43:13,302 - [MAIN] - INFO - DOL.GS.Quests.Albion.RecruitingNothingButTrouble - Quest "Recruiting Nothing But Trouble" initializing ...
16:43:13,326 - [MAIN] - INFO - DOL.GS.Quests.Albion.RecruitingNothingButTrouble - Quest "Recruiting Nothing But Trouble" initialized
16:43:13,329 - [MAIN] - INFO - DOL.GS.Quests.Albion.Nuisances - Quest "Nuisances" initializing ...
16:43:13,345 - [MAIN] - INFO - DOL.GS.Quests.Albion.Nuisances - Quest "Nuisances" initialized
16:43:13,347 - [MAIN] - INFO - DOL.GS.Quests.Albion.NoHopeForTheHopeful - Quest "No Hope For The Hopeful" initializing ...
16:43:13,370 - [MAIN] - INFO - DOL.GS.Quests.Albion.NoHopeForTheHopeful - Quest "No Hope For The Hopeful" initialized
16:43:13,373 - [MAIN] - INFO - DOL.GS.Quests.Albion.MovementAndInteraction - Quest "Movement and Interaction" initializing ...
16:43:13,387 - [MAIN] - WARN - DOL.GS.Quests.Albion.MovementAndInteraction - Could not find Lord Stamford, creating him ...
16:43:13,404 - [MAIN] - INFO - DOL.GS.Quests.Albion.MovementAndInteraction - Quest "Movement and Interaction" initialized
16:43:13,405 - [MAIN] - INFO - DOL.GS.Quests.Albion.MarlinsSalesPitch - Quest "Marlin's Sales Pitch" initializing ...
16:43:13,423 - [MAIN] - INFO - DOL.GS.Quests.Albion.MarlinsSalesPitch - Quest "Marlin's Sales Pitch" initialized
16:43:13,425 - [MAIN] - INFO - DOL.GS.Quests.Albion.LawrencesOil - Quest "Lawrence's Oil" initializing ...
16:43:13,444 - [MAIN] - INFO - DOL.GS.Quests.Albion.LawrencesOil - Quest "Lawrence's Oil" initialized
16:43:13,448 - [MAIN] - INFO - DOL.GS.Quests.Albion.IreFairyIre - Quest "Ire Fairy Ire" initializing ...
16:43:13,518 - [MAIN] - WARN - DOL.GS.Quests.Albion.IreFairyIre - Could not find Fairy Dragonfly Handler, creating ...
16:43:13,523 - [MAIN] - INFO - DOL.GS.Quests.Albion.IreFairyIre - Quest "Ire Fairy Ire" initialized
16:43:13,526 - [MAIN] - INFO - DOL.GS.Quests.Albion.ImportantDelivery - Quest "Important Delivery" initializing ...
16:43:13,600 - [MAIN] - INFO - DOL.GS.Quests.Albion.ImportantDelivery - Quest "Important Delivery" initialized
16:43:13,602 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForSlith - Quest "Hunt for Slith" initializing ...
16:43:13,618 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForSlith - Quest "Hunt for Slith" initialized
16:43:13,632 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForArachneida - Quest "The Hunt for Arachneida" initializing ...
16:43:13,676 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForArachneida - Quest "The Hunt for Arachneida" initialized
16:43:13,679 - [MAIN] - INFO - DOL.GS.Quests.Albion.HeartOfSephucoth - Quest "Heart of Sephucoth" initializing ...
16:43:13,698 - [MAIN] - INFO - DOL.GS.Quests.Albion.HeartOfSephucoth - Quest "Heart of Sephucoth" initialized
16:43:13,702 - [MAIN] - INFO - DOL.GS.Quests.Albion.HalfOgreAllMan - Quest "Half Ogre, All Man" initializing ...
16:43:13,730 - [MAIN] - WARN - DOL.GS.Quests.Albion.HalfOgreAllMan - Could not find Eileen Morton, creating him ...
16:43:13,765 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsPaladin - Quest "QuestTitle" initializing ...
16:43:13,793 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsPaladin - Quest "QuestTitle" initialized
16:43:13,795 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsArmsman - Quest "QuestTitle" initializing ...
16:43:13,818 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsArmsman - Quest "QuestTitle" initialized
16:43:13,821 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreenerPastures - Quest "Greener Pastures" initializing ...
16:43:13,837 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreenerPastures - Quest "Greener Pastures" initialized
16:43:13,839 - [MAIN] - INFO - DOL.GS.Quests.Albion.GodelevasNeed - Quest "Godeleva's Need" initializing ...
16:43:13,859 - [MAIN] - INFO - DOL.GS.Quests.Albion.GodelevasNeed - Quest "Godeleva's Need" initialized
16:43:13,865 - [MAIN] - INFO - DOL.GS.Quests.Albion.Frontiers - Quest "Frontiers" initializing ...
16:43:13,931 - [MAIN] - INFO - DOL.GS.Quests.Albion.Frontiers - Quest "Frontiers" initialized
16:43:13,933 - [MAIN] - INFO - DOL.GS.Quests.Albion.DredgeUpAPledge - Quest "Dredge Up a Pledge" initializing ...
16:43:13,947 - [MAIN] - INFO - DOL.GS.Quests.Albion.DredgeUpAPledge - Quest "Dredge Up a Pledge" initialized
16:43:13,949 - [MAIN] - INFO - DOL.GS.Quests.Albion.Disenchanted - Quest "Disenchanted" initializing ...
16:43:13,981 - [MAIN] - INFO - DOL.GS.Quests.Albion.Disenchanted - Quest "Disenchanted" initialized
16:43:13,985 - [MAIN] - INFO - DOL.GS.Quests.Albion.Culmination - Quest "Culmination" initializing ...
16:43:14,016 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find Queen Tatiana, creating ...
16:43:14,017 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:43:14,018 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:43:14,018 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:43:14,019 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:43:14,025 - [MAIN] - INFO - DOL.GS.Quests.Albion.Culmination - Quest "Culmination" initialized
16:43:14,029 - [MAIN] - INFO - DOL.GS.Quests.Albion.Collection - Quest "Collection" initializing ...
16:43:14,058 - [MAIN] - WARN - DOL.GS.Quests.Albion.Collection - Could not find Palearis, creating her ...
16:43:14,076 - [MAIN] - WARN - DOL.GS.Quests.Albion.Collection - Could not find Bohad, creating her ...
16:43:14,093 - [MAIN] - WARN - DOL.GS.Quests.Albion.Collection - Could not find Fluvale, creating her ...
16:43:14,098 - [MAIN] - INFO - DOL.GS.Quests.Albion.Collection - Quest "Collection" initialized
16:43:14,100 - [MAIN] - INFO - DOL.GS.Quests.Albion.ClericMulgrut - Quest "Cleric Mulgrut" initializing ...
16:43:14,116 - [MAIN] - INFO - DOL.GS.Quests.Albion.ClericMulgrut - Quest "Cleric Mulgrut" initialized
16:43:14,120 - [MAIN] - INFO - DOL.GS.Quests.Albion.CityOfCamelot - Quest "City of Camelot" initializing ...
16:43:14,169 - [MAIN] - INFO - DOL.GS.Quests.Albion.CityOfCamelot - Quest "City of Camelot" initialized
16:43:14,184 - [MAIN] - INFO - DOL.GS.Quests.Albion.childsplay - Quest "Child's Play" (Alb) initializing ...
16:43:14,230 - [MAIN] - INFO - DOL.GS.Quests.Albion.childsplay - Quest "Child's Play" initialized
16:43:14,232 - [MAIN] - INFO - DOL.GS.Quests.CemmethsOrders - Quest "Cemmeth's Orders" initializing ...
16:43:14,258 - [MAIN] - INFO - DOL.GS.Quests.CemmethsOrders - Quest "Cemmeth's Orders" initialized
16:43:14,262 - [MAIN] - INFO - DOL.GS.Quests.Albion.Cellarinfestation - Quest "Cellar Infestation" initializing ...
16:43:14,276 - [MAIN] - WARN - DOL.GS.Quests.Albion.Cellarinfestation - Could not find Mistress Laws, creating ...
16:43:14,294 - [MAIN] - INFO - DOL.GS.Quests.Albion.Cellarinfestation - Quest "Cellar Infestation" initialized
16:43:14,296 - [MAIN] - INFO - DOL.GS.Quests.Albion.BuildingABetterBow - Quest "Building a Better Bow" initializing ...
16:43:14,315 - [MAIN] - INFO - DOL.GS.Quests.Albion.BuildingABetterBow - Quest "Building a Better Bow" initialized
16:43:14,317 - [MAIN] - INFO - DOL.GS.Quests.Albion.BreakingTheBandits - Quest "Breaking the Bandits" initializing ...
16:43:14,347 - [MAIN] - INFO - DOL.GS.Quests.Albion.BreakingTheBandits - Quest "Breaking the Bandits" initialized
16:43:14,348 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoulderlingBalm - Quest "Boulderling Balm" initializing ...
16:43:14,365 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoulderlingBalm - Quest "Boulderling Balm" initialized
16:43:14,367 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoarStew - Quest "Boar Stew" initializing ...
16:43:14,383 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoarStew - Quest "Boar Stew" initialized
16:43:14,388 - [MAIN] - INFO - DOL.GS.Quests.Albion.BeginningOfWar - Quest "Beginning of War" initializing ...
16:43:14,416 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find Master Dunwyn, creating ...
16:43:14,435 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find Princess Obera, creating ...
16:43:14,436 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:43:14,437 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:43:14,437 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:43:14,438 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:43:14,452 - [MAIN] - INFO - DOL.GS.Quests.Albion.BeginningOfWar - Quest "Beginning of War" initialized
16:43:14,454 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArrowsForYettaFletcher - Quest "Arrows for Yetta Fletcher" initializing ...
16:43:14,469 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArrowsForYettaFletcher - Quest "Arrows for Yetta Fletcher" initialized
16:43:14,472 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArleighsAssistant - Quest "Arleigh's Assistant" initializing ...
16:43:14,491 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArleighsAssistant - Quest "Arleigh's Assistant" initialized
16:43:14,493 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArgussArrows - Quest "Argus's Arrows" initializing ...
16:43:14,512 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArgussArrows - Quest "Argus's Arrows" initialized
16:43:14,514 - [MAIN] - INFO - DOL.GS.Quests.Albion.ANewHeroesWelcome - Quest "A New Heroes Welcome" initializing ...
16:43:14,544 - [MAIN] - INFO - DOL.GS.Quests.Albion.ANewHeroesWelcome - Quest "A New Heroes Welcome" initialized
16:43:14,548 - [MAIN] - INFO - DOL.GS.Quests.Albion.AndrewsSkins - Quest "Andrew's Skins" initializing ...
16:43:14,595 - [MAIN] - INFO - DOL.GS.Quests.Albion.AndrewsSkins - Quest "Andrew's Skins" initialized
16:43:14,596 - [MAIN] - INFO - DOL.GS.Quests.Albion.AMessageToTheManes - Quest "A Message to the Manes" initializing ...
16:43:14,611 - [MAIN] - INFO - DOL.GS.Quests.Albion.AMessageToTheManes - Quest "A Message to the Manes" initialized
16:43:14,618 - [MAIN] - INFO - DOL.GS.Quests.Albion.Aidingguardalakyrr - Quest "Aiding Guard Alakyrr" initializing ...
16:43:14,633 - [MAIN] - WARN - DOL.GS.Quests.Albion.Aidingguardalakyrr - Could not find Guard Alakyrr, creating ...
16:43:14,645 - [MAIN] - INFO - DOL.GS.Quests.Albion.Aidingguardalakyrr - Quest "Aiding Guard Alakyrr" initialized
16:43:14,649 - [MAIN] - INFO - DOL.GS.Quests.Albion.AgainstTheGrain - Quest "Against the Grain" initializing ...
16:43:14,677 - [MAIN] - INFO - DOL.GS.Quests.Albion.AgainstTheGrain - Quest "Against the Grain" initialized
16:43:14,678 - [MAIN] - INFO - DOL.GS.Quests.Albion.AfterTheAccident - Quest "After The Accident" initializing ...
16:43:14,702 - [MAIN] - INFO - DOL.GS.Quests.Albion.AfterTheAccident - Quest "After The Accident" initialized
16:43:14,705 - [MAIN] - INFO - DOL.GS.Quests.Albion.AFewRepairs - Quest "A Few Repairs" initializing ...
16:43:14,736 - [MAIN] - INFO - DOL.GS.Quests.Albion.AFewRepairs - Quest "A Few Repairs" initialized
16:43:14,738 - [MAIN] - INFO - DOL.GS.GameEvents.TalkingNPCEvent - TalkingNPCEvent initialized
16:43:14,757 - [MAIN] - INFO - DOL.GS.GameEvents.StartupLocations - StartupLocations initialized
16:43:14,761 - [MAIN] - INFO - DOL.GS.GameEvents.HorseRace - HorseRace Event initialized: True
16:43:14,763 - [MAIN] - INFO - DOL.GS.GameEvents.FollowingNPCEvent - FollowingNPCEvent initialized
16:43:14,768 - [MAIN] - INFO - DOL.GS.GameEvents.FightingNPCEvent - FightingNPCEvent initialized: True
16:43:14,769 - [MAIN] - INFO - DOL.GS.GameEvents.DOLTestServer - DOLTestServer initialized
16:43:14,804 - [MAIN] - INFO - DOL.GS.Behaviour.Examples.TestBehaviour - Simple Test Behaviour added
16:43:14,843 - [MAIN] - INFO - DOL.GS.PacketHandler.PacketProcessor - PacketProcessor: Loaded 79 handlers from GameServer Assembly!
16:43:14,843 - [MAIN] - INFO - DOL.GS.PacketHandler.PacketProcessor - PacketProcessor: Loaded 0 handlers from Script Assemblys!
16:43:17,881 - [MAIN] - WARN - DOL.WeakMulticastDelegate - InvokeSafe took 2996ms! method: DOL.GS.GameEvents.StatPrint.OnScriptCompiled target: null
16:43:22,093 - [MAIN] - WARN - DOL.Network.BaseServer - Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu
System.Net16:50:20,210 - [MAIN] - DEBUG - DOL.GS.GameServer - Current directory is: F:\ServeurPrivé\Dawn of Light
16:50:20,221 - [MAIN] - DEBUG - DOL.GS.GameServer - Gameserver root directory is: F:\ServeurPrivé\Dawn of Light
16:50:20,222 - [MAIN] - DEBUG - DOL.GS.GameServer - Changing directory to root directory
16:50:20,402 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.GS.GameInventoryItem
16:50:20,528 - [MAIN] - INFO - DOL.Database.Connection.DataConnection - New DB connection created
16:50:20,548 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.GS.GameInventoryRelic
16:50:20,549 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.GS.GuildBannerItem
16:50:20,567 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.CharacterXDataQuest
16:50:20,588 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.HouseConsignmentMerchant
16:50:20,601 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageGameObject
16:50:20,614 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageNPC
16:50:20,629 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBRegions
16:50:20,643 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.SalvageYield
16:50:20,658 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.LootTemplate
16:50:20,670 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DropTemplateXItemTemplate
16:50:20,684 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageArea
16:50:20,696 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguageZone
16:50:20,708 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.MobXLootTemplate
16:50:20,720 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.MobDropTemplate
16:50:20,743 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.StartupLocation
16:50:20,767 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBDataQuest
16:50:20,783 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Zones
16:50:20,798 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DOLCharacters
16:50:20,823 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DOLCharactersBackup
16:50:20,844 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: MobXAmbientBehaviour
16:50:20,857 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Account
16:50:20,871 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DBAppeal
16:50:20,885 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Artifact
16:50:20,899 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ArtifactBonus
16:50:20,911 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ArtifactXItem
16:50:20,933 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.BindPoint
16:50:20,946 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.BugReport
16:50:20,959 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.CharacterXOneTimeDrop
16:50:20,973 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ItemTemplate
16:50:20,991 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ItemUnique
16:50:21,008 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ServerStats
16:50:21,032 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ClassXRealmAbility
16:50:21,046 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Battleground
16:50:21,058 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.AuditEntry
16:50:21,073 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLanguage
16:50:21,088 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.PvPKillsLog
16:50:21,101 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.HouseHookpointOffset
16:50:21,114 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBInstanceXElement
16:50:21,132 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBMinotaurRelic
16:50:21,149 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.KeepCaptureLog
16:50:21,168 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Race
16:50:21,191 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ServerPropertyCategory
16:50:21,205 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.StarterEquipment
16:50:21,220 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBBoat
16:50:21,235 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBChampSpecs
16:50:21,254 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBCharacterXMasterLevel
16:50:21,276 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseHookpointItem
16:50:21,290 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseCharsXPerms
16:50:21,303 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHousePermissions
16:50:21,316 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepHookPointItem
16:50:21,332 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepPosition
16:50:21,356 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBNews
16:50:21,371 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBRelic
16:50:21,399 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBStyleXSpell
16:50:21,428 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.PlayerXEffect
16:50:21,448 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ServerProperty
16:50:21,461 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBAbility
16:50:21,474 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBAlliance
16:50:21,486 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBArea
16:50:21,500 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBBannedAccount
16:50:21,513 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBCraftedItem
16:50:21,524 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBCraftedXItem
16:50:21,539 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBDoor
16:50:21,552 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBFaction
16:50:21,563 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBFactionAggroLevel
16:50:21,574 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBGuild
16:50:21,590 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouse
16:50:21,605 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseIndoorItem
16:50:21,618 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBHouseOutdoorItem
16:50:21,629 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeep
16:50:21,643 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepComponent
16:50:21,665 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBKeepHookPoint
16:50:21,690 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLineXSpell
16:50:21,706 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBLinkedFaction
16:50:21,720 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.LootGenerator
16:50:21,733 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.LootOTD
16:50:21,746 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBNpcTemplate
16:50:21,768 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBPath
16:50:21,784 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBPathPoint
16:50:21,803 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBQuest
16:50:21,815 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBRank
16:50:21,831 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSalvage
16:50:21,843 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSinglePermission
16:50:21,857 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpecialization
16:50:21,870 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpecXAbility
16:50:21,882 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpell
16:50:21,900 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBSpellLine
16:50:21,915 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBStyle
16:50:21,931 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.DBTask
16:50:21,946 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.InventoryItem
16:50:21,946 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.MerchantItem
16:50:21,975 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Mob
16:50:21,990 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.NPCEquipment
16:50:22,007 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.Teleport
16:50:22,028 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.WorldObject
16:50:22,043 - [MAIN] - INFO - DOL.GS.GameServer - Registering table: DOL.Database.ZonePoint
16:50:22,146 - [MAIN] - INFO - DOL.GS.GameServer - Database Initialization: true
16:50:22,146 - [MAIN] - INFO - DOL.GS.GameServer - Game Server Initialization finished!
16:50:22,149 - [MAIN] - DEBUG - DOL.GS.GameServer - Starting Server, Memory is 4
16:50:22,150 - [MAIN] - INFO - DOL.GS.GameServer - Checking database for updates ...
16:50:22,167 - [MAIN] - INFO - DOL.GS.GameServer - Database update complete.
16:50:22,169 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory InitSocket(): 5
16:50:22,169 - [MAIN] - INFO - DOL.GS.GameServer - InitSocket(): True
16:50:22,170 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory InitSocket(): 5
16:50:22,176 - [MAIN] - DEBUG - DOL.GS.GameServer - allocated packet buffers: 1500
16:50:22,178 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory AllocatePacketBuffers(): 5
16:50:22,179 - [MAIN] - INFO - DOL.GS.GameServer - AllocatePacketBuffers(): True
16:50:22,179 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory AllocatePacketBuffers(): 5
16:50:22,181 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory StartUDP(): 5
16:50:22,181 - [MAIN] - INFO - DOL.GS.GameServer - StartUDP(): True
16:50:22,182 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory StartUDP(): 5
16:50:22,190 - [MAIN] - INFO - DOL.Language.LanguageMgr - [LanguageMgr] Loading translations ID...
16:50:22,196 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_debug Value is False
16:50:22,198 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_sync_timer Value is True
16:50:22,199 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading ignore_too_long_outcoming_packet Value is False
16:50:22,201 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_rewardquest_description_length Value is 255
16:50:22,202 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading staff_login Value is False
16:50:22,203 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading client_version_min Value is -1
16:50:22,204 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading client_type_max Value is -1
16:50:22,206 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading client_version_max Value is -1
16:50:22,208 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_quests Value is True
16:50:22,209 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_buff_tokens Value is True
16:50:22,210 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_arrow_summoning Value is True
16:50:22,211 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_housing_items Value is True
16:50:22,212 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_housing_npc Value is True
16:50:22,214 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_bug_reports Value is True
16:50:22,215 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_players Value is 0
16:50:22,216 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading player_class Value is DOL.GS.GamePlayer
16:50:22,217 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading debug_load_regions Value is
16:50:22,219 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_expansions Value is
16:50:22,220 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading server_language Value is EN
16:50:22,222 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_change_language Value is False
16:50:22,223 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading statsave_interval Value is -1
16:50:22,224 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bug_report_email_addresses Value is
16:50:22,225 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading ban_hackers Value is False
16:50:22,227 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading db_language Value is EN
16:50:22,228 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading statprint_frequency Value is 30000
16:50:22,229 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_all_realms Value is False
16:50:22,230 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_dual_logins Value is True
16:50:22,232 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading emote_delay Value is 3000
16:50:22,233 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading command_spam_delay Value is 1500
16:50:22,234 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_items_per_packet Value is 30
16:50:22,235 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading speedhack_tolerance Value is 20
16:50:22,237 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_movedetect Value is False
16:50:22,238 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cps_tolerance Value is 1000
16:50:22,239 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cps_time_tolerance Value is 200
16:50:22,240 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading jump_tolerance Value is 200
16:50:22,241 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading display_area_enter_screen_desc Value is False
16:50:22,242 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_audit_log Value is False
16:50:22,243 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_pvp_kills Value is False
16:50:22,245 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_all_gm_commands Value is False
16:50:22,246 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_trades Value is False
16:50:22,248 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_email_addresses Value is
16:50:22,249 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory Value is False
16:50:22,250 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_trade Value is True
16:50:22,251 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_craft Value is True
16:50:22,252 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_loot Value is True
16:50:22,254 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_quest Value is True
16:50:22,255 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_merchant Value is True
16:50:22,256 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_inventory_other Value is True
16:50:22,258 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_passives_ras_scaling Value is False
16:50:22,259 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading custom_train Value is True
16:50:22,260 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading record_news Value is True
16:50:22,261 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading motd Value is Welcome to a Dawn of Light server, please edit this MOTD
16:50:22,263 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_msg Value is Welcome for your first time to a Dawn of Light server, please edit this Starter Message
16:50:22,264 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading broadcast_type Value is 1
16:50:22,265 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading anon_modifier Value is 0
16:50:22,266 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_examples Value is True
16:50:22,268 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_custom_start_locations Value is False
16:50:22,269 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading death_messages_all_realms Value is False
16:50:22,270 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_instances Value is False
16:50:22,271 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading save_quest_mobs_into_database Value is True
16:50:22,273 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading battlegroup_max_member Value is 64
16:50:22,274 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading group_max_member Value is 8
16:50:22,275 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_commands Value is
16:50:22,277 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_appeal_system Value is False
16:50:22,278 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_dblanguage Value is False
16:50:22,279 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading region_max_objects Value is 30000
16:50:22,280 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading show_logins Value is True
16:50:22,281 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading show_logins_channel Value is 0
16:50:22,282 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_pve_speed Value is True
16:50:22,283 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_encumberance_speed_loss Value is True
16:50:22,285 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_difficulty_on_epic_encounters Value is 100
16:50:22,286 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_regions Value is
16:50:22,288 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disable_tutorial Value is False
16:50:22,289 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_item_decay_time Value is 180000
16:50:22,290 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_pickup_distance Value is 256
16:50:22,292 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_day_increment Value is 24
16:50:22,293 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_npc_update_interval Value is 30000
16:50:22,294 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_object_update_interval Value is 30000
16:50:22,295 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading world_player_update_interval Value is 300
16:50:22,296 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading weather_check_interval Value is 300000
16:50:22,297 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading weather_chance Value is 5
16:50:22,298 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading weather_log_events Value is True
16:50:22,299 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading always_check_los Value is False
16:50:22,301 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading check_los_during_cast Value is True
16:50:22,302 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading always_check_pet_los Value is False
16:50:22,303 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading los_player_check_frequency Value is 5
16:50:22,305 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading hps_per_championlevel Value is 40
16:50:22,306 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading task_pause_ticks Value is 300000
16:50:22,307 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading task_give_random_item Value is False
16:50:22,309 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_zone_bonuses Value is False
16:50:22,310 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_personnal_mount_in_regions Value is
16:50:22,311 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading timer_player_init Value is 15
16:50:22,312 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading zonepoint_npctemplate Value is 0
16:50:22,314 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_Cap_Percent Value is 125
16:50:22,315 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_Group_Cap_Percent Value is 125
16:50:22,316 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_PVP_Cap_Percent Value is 125
16:50:22,317 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading XP_HardCap_Percent Value is 500
16:50:22,319 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading xp_rate Value is 1
16:50:22,320 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cl_xp_rate Value is 1
16:50:22,322 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rvr_zones_xp_rate Value is 1
16:50:22,323 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rp_rate Value is 1
16:50:22,324 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bp_rate Value is 1
16:50:22,325 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pve_melee_damage Value is 1
16:50:22,326 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pve_spell_damage Value is 1
16:50:22,327 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pve_spell_conhitpercent Value is 10
16:50:22,328 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pvp_melee_damage Value is 1
16:50:22,329 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pvp_spell_damage Value is 1
16:50:22,331 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading heal_pvp_damage_value_rp Value is 8
16:50:22,332 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading block_cap Value is 0,6
16:50:22,368 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading evade_cap Value is 0,5
16:50:22,395 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading parry_cap Value is 0,5
16:50:22,417 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading cs_opening_effectiveness Value is 1
16:50:22,419 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading money_drop Value is 1
16:50:22,420 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rp_worth_seconds Value is 300
16:50:22,422 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading health_regen_rate Value is 1
16:50:22,423 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading endurance_regen_rate Value is 1
16:50:22,424 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mana_regen_rate Value is 1
16:50:22,425 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading item_sell_ratio Value is 50
16:50:22,426 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading item_condition_loss_chance Value is 5
16:50:22,427 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mount_under_level_35_speed Value is 135
16:50:22,429 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mount_over_level_35_speed Value is 145
16:50:22,430 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_str_base Value is 30
16:50:22,431 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_str_multiplier Value is 1
16:50:22,432 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_con_base Value is 30
16:50:22,433 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_con_multiplier Value is 1
16:50:22,434 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_qui_base Value is 30
16:50:22,435 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_qui_multiplier Value is 1
16:50:22,436 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_dex_base Value is 30
16:50:22,438 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_autoset_dex_multiplier Value is 1
16:50:22,439 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_str_base Value is 20
16:50:22,440 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_str_multiplier Value is 6
16:50:22,441 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_con_base Value is 30
16:50:22,443 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_con_multiplier Value is 1
16:50:22,444 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_dex_base Value is 30
16:50:22,445 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_dex_multiplier Value is 1
16:50:22,446 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_qui_base Value is 30
16:50:22,447 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_autoset_qui_multiplier Value is 1
16:50:22,448 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_think_interval Value is 1500
16:50:22,449 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_damage_increase_startlevel Value is 30
16:50:22,450 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading mob_damage_increase_perlevel Value is 0
16:50:22,451 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading npc_min_respawn_interval Value is 5
16:50:22,453 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_roam Value is True
16:50:22,454 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_base_hp Value is 500
16:50:22,455 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_hp_gain_per_con Value is 2
16:50:22,456 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_base_con Value is 30
16:50:22,457 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_randomwalk_chance Value is 20
16:50:22,458 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_followcheck_time Value is 500
16:50:22,459 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_default_classtype Value is DOL.GS.GameNPC
16:50:22,461 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_chances_to_style Value is 20
16:50:22,463 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading gamenpc_chances_to_cast Value is 25
16:50:22,464 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading RvRLinkDeathRelogGracePeriod Value is 20
16:50:22,465 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Timer_Killed_By_Mob Value is 30
16:50:22,466 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Timer_Killed_By_Player Value is 120
16:50:22,467 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Timer_Region_Changed Value is 30
16:50:22,469 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading Relic_Return_Time Value is 1200
16:50:22,470 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_all_realms_df Value is False
16:50:22,472 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_bps_in_bgs Value is False
16:50:22,473 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bg_zones_open Value is True
16:50:22,474 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading bg_zones_closed_message Value is The battlegrounds are not open on this server.
16:50:22,476 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading relic_players_required_on_pad Value is 16
16:50:22,477 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_minotaur_relics Value is False
16:50:22,478 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_warmapmgr Value is False
16:50:22,479 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_guard_los_check_time Value is 5
16:50:22,480 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading claim_num Value is 8
16:50:22,481 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_keep_balancing Value is False
16:50:22,483 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_live_keep_bonuses Value is False
16:50:22,484 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_supply_chain Value is False
16:50:22,485 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_hookpoints Value is True
16:50:22,487 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading load_keeps Value is True
16:50:22,488 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_keep_level Value is 4
16:50:22,489 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_keep_claim_level Value is 5
16:50:22,490 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_keep_level Value is 5
16:50:22,491 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading enable_keep_upgrade_timer Value is False
16:50:22,493 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_structures_toughness Value is 100
16:50:22,494 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_keep_door_toughness Value is 100
16:50:22,495 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading set_tower_door_toughness Value is 100
16:50:22,496 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading structures_allowpetattack Value is True
16:50:22,497 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading doors_allowpetattack Value is True
16:50:22,498 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_rp_claim_multiplier Value is 100
16:50:22,499 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_rp_claim_multiplier Value is 1000
16:50:22,500 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading log_keep_captures Value is False
16:50:22,502 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_rp_base Value is 4500
16:50:22,503 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_rp_base Value is 500
16:50:22,504 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading lord_rp_worth_seconds Value is 300
16:50:22,505 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_rp_multiplier Value is 50
16:50:22,506 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_rp_multiplier Value is 50
16:50:22,507 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading upgrade_multiplier Value is 100
16:50:22,508 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_balance_multiplier Value is 1
16:50:22,509 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_balance_multiplier Value is 0,15
16:50:22,536 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading balance_towers_separate Value is True
16:50:22,537 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading keep_guard_level_multiplier Value is 1,6
16:50:22,559 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_damage_multiplier Value is 1
16:50:22,561 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pet_spam_damage_multiplier Value is 1
16:50:22,562 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading tower_guard_level_multiplier Value is 1
16:50:22,563 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_keeps Value is 2
16:50:22,564 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading autoequip_guards_loaded_from_db Value is True
16:50:22,565 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading automodel_guards_loaded_from_db Value is True
16:50:22,566 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading pvp_unclaimed_keeps_enemy Value is False
16:50:22,567 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading missrate_reduction_per_attackers Value is 0
16:50:22,568 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_hitchance_damage_reduction_multiplier Value is 4,3
16:50:22,603 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading artifact_xp_rate Value is 350
16:50:22,604 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading scroll_drop_rate Value is 25
16:50:22,605 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_camp_bonus Value is 2
16:50:22,606 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading atlantis_teleport_plvl Value is 2
16:50:22,608 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_num_houses Value is 5000
16:50:22,609 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_starting_npctemplate_id Value is 500
16:50:22,610 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_indoor_house_items Value is 40
16:50:22,611 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading max_outdoor_house_items Value is 30
16:50:22,612 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading indoor_items_depend_on_size Value is True
16:50:22,613 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_cottage Value is 200000
16:50:22,614 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_house Value is 350000
16:50:22,616 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_villa Value is 600000
16:50:22,617 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_rent_mansion Value is 1000000
16:50:22,618 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_lot_price_start Value is 950000000
16:50:22,619 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_lot_price_per_hour Value is 12000000
16:50:22,620 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading housing_lot_price_minimum Value is 3000000
16:50:22,621 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_due_days Value is 7
16:50:22,622 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_check_interval Value is 120
16:50:22,624 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_lockbox_payments Value is 4
16:50:22,625 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading rent_bounty_point_to_gold Value is 10000
16:50:22,626 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading consignment_use_bp Value is False
16:50:22,627 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_enabled Value is True
16:50:22,628 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_enable Value is True
16:50:22,629 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_enable_log Value is True
16:50:22,630 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_fee_percent Value is 20
16:50:22,631 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading market_search_limit Value is 300
16:50:22,632 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_realm_level Value is 0
16:50:22,633 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_money Value is 0
16:50:22,635 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_bps Value is 0
16:50:22,636 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_level Value is 1
16:50:22,637 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_classes Value is
16:50:22,638 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading disabled_races Value is
16:50:22,639 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading freelevel_days Value is 7
16:50:22,640 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading buff_range Value is 0
16:50:22,641 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_cata_slash_level Value is False
16:50:22,643 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading turret_player_cap_count Value is 5
16:50:22,644 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading turret_area_cap_count Value is 10
16:50:22,645 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading turret_area_cap_radius Value is 1000
16:50:22,646 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading theurgist_pet_cap Value is 16
16:50:22,647 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_cross_realm_items Value is False
16:50:22,648 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading slash_level_target Value is 0
16:50:22,649 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading slash_level_requirement Value is 50
16:50:22,651 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading give_dol_respec_at_level Value is 0
16:50:22,652 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading start_as_base_class Value is False
16:50:22,654 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_old_archery Value is False
16:50:22,655 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_duration Value is 4500
16:50:22,656 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_recast Value is 2000
16:50:22,657 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_again Value is 100
16:50:22,658 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading spell_interrupt_maxstagelength Value is 1500
16:50:22,659 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading starting_guild Value is True
16:50:22,660 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading alliance_max Value is -1
16:50:22,661 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_num Value is 8
16:50:22,663 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading new_guild_dues Value is False
16:50:22,664 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_cross_realm_guilds Value is False
16:50:22,665 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guilds_claim_limit Value is 1
16:50:22,666 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_crafting Value is 5
16:50:22,667 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_xp Value is 5
16:50:22,668 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_rp Value is 2
16:50:22,669 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_bp Value is 0
16:50:22,671 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_artifact_xp Value is 5
16:50:22,672 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_buff_masterlevel_xp Value is 20
16:50:22,673 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_merit_on_dragon_kill Value is 0
16:50:22,674 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading guild_banner_lost_time Value is 1440
16:50:22,675 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading crafting_speed Value is 1
16:50:22,676 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading capital_city_crafting_skill_gain_bonus Value is 5
16:50:22,678 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading capital_city_crafting_speed_bonus Value is 1
16:50:22,679 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_craft_norealm_items Value is False
16:50:22,680 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_salvage_per_realm Value is False
16:50:22,681 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_salvage Value is False
16:50:22,682 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allow_auto_account_creation Value is True
16:50:22,684 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading time_between_account_creation Value is 0
16:50:22,685 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading time_between_account_creation_sameip Value is 15
16:50:22,686 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading total_accounts_allowed_sameip Value is 20
16:50:22,687 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading backup_deleted_characters Value is True
16:50:22,688 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading allowed_custom_language_keys Value is CU; DE; FR; IT
16:50:22,689 - [MAIN] - DEBUG - DOL.GS.ServerProperties.Properties - Loading use_new_language_system Value is False
16:50:23,277 - [MAIN] - INFO - DOL.Language.LanguageMgr - [LanguageMgr] Translations ID loaded.
16:50:23,287 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Multi Language Initialization: 9
16:50:23,287 - [MAIN] - INFO - DOL.GS.GameServer - Multi Language Initialization: True
16:50:23,287 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Multi Language Initialization: 9
16:50:23,290 - [MAIN] - INFO - DOL.Mail.MailMgr - Mail disabled
16:50:23,297 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Mail Manager Initialization: 9
16:50:23,297 - [MAIN] - INFO - DOL.GS.GameServer - Mail Manager Initialization: True
16:50:23,297 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Mail Manager Initialization: 9
16:50:23,311 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - Found script info file
16:50:23,326 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - Precompiled script assembly loaded: GameServerScripts, Version=1.9.6.3061, Culture=neutral, PublicKeyToken=null
16:50:23,328 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Searching for commands in GameServerScripts, Version=1.9.6.3061, Culture=neutral, PublicKeyToken=null
16:50:23,339 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&serverinfo' - (Shows information about the server) required plvl:1
16:50:23,340 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&switch' - (Equip Weapons from bag. (/switch 1h 1, will replace ur mainhand weapon with the first slot in ur backpack)) required plvl:1
16:50:23,340 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&version' - (Get the version of the GameServer) required plvl:1
16:50:23,341 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&npcdebug' - (Writes information of all npcs in a region to the console) required plvl:3
16:50:23,341 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Searching for commands in GameServer, Version=1.9.6.3061, Culture=neutral, PublicKeyToken=null
16:50:23,342 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&account' - (AdminCommands.Account.Description) required plvl:3
16:50:23,342 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&code' - (AdminCommands.Code.Description) required plvl:3
16:50:23,342 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&Reload' - (Reload various elements) required plvl:3
16:50:23,343 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&serverproperties' - (AdminCommands.ServerProperties.Description) required plvl:3
16:50:23,343 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&plvl' - (AdminCommands.plvl.Description) required plvl:3
16:50:23,344 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&addbind' - (GMCommands.AddBind.Description) required plvl:2
16:50:23,344 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&addhookpoint' - (GMCommands.HookPoint.Description) required plvl:2
16:50:23,345 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&announce' - (GMCommands.Announce.Description) required plvl:2
16:50:23,345 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&area' - (GMCommands.Area.Description) required plvl:2
16:50:23,345 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&ban' - (GMCommands.Ban.Description) required plvl:2
16:50:23,345 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&blink' - (Makes the specified UI Part of your target or yourself blinking.) required plvl:2
16:50:23,346 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cast' - (GMCommands.Cast.Description) required plvl:2
16:50:23,346 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&clientlist' - (Show a list of currently playing clients and their ID's) required plvl:2
16:50:23,346 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&translate' - ('/translate <TranslationID> <text in your actual language>' : translate the string in current language) required plvl:2
16:50:23,347 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&zone' - (/zone info) required plvl:2
16:50:23,347 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&crafting' - (GMCommands.Crafting.Description) required plvl:2
16:50:23,347 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&debug' - (GMCommands.Debug.Description) required plvl:2
16:50:23,348 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - ']jump' - (GMCommands.DebugJump.Description) required plvl:2
16:50:23,348 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&door' - (GMCommands.door.Description) required plvl:2
16:50:23,348 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&faction' - (GMCommands.Faction.Description) required plvl:2
16:50:23,348 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gmappeal' - (Commands for server staff to assist players with their Appeals.) required plvl:2
16:50:23,349 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gmrelic' - (GMCommands.GMRelic.Description) required plvl:2
16:50:23,349 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gmrelicpad' - (GMCommands.GMRelicPad.Description) required plvl:2
16:50:23,349 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&harm' - (GMCommands.Harm.Description) required plvl:2
16:50:23,350 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&heal' - (GMCommands.Heal.Description) required plvl:2
16:50:23,350 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&GMinfo' - (Various Information) required plvl:2
16:50:23,350 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&instance' - (This command assists in the creation of instances.) required plvl:2
16:50:23,351 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&item' - (GMCommands.Item.Description) required plvl:2
16:50:23,351 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&jump' - (GMCommands.Jump.Description) required plvl:2
16:50:23,352 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&keep' - (GMCommands.Keep.Description) required plvl:2
16:50:23,352 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&keepcomponent' - (GMCommands.KeepComponents.Description) required plvl:2
16:50:23,353 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&keepguard' - (GMCommands.KeepGuard.Description) required plvl:2
16:50:23,353 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&kick' - (GMCommands.Kick.Description) required plvl:2
16:50:23,353 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&merchant' - (GMCommands.Merchant.Description) required plvl:2
16:50:23,354 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&minorelic' - (GMCommands.MinoRelic.Description) required plvl:2
16:50:23,354 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mob' - (Mob creation and modification commands) required plvl:2
16:50:23,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&morph' - (Temporarily changes the target player's model) required plvl:2
16:50:23,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mountgm' - (Mount a steed) required plvl:2
16:50:23,358 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mute' - (Command to mute annoying players. Player mutes are temporary, allchars are set on an account and must be removed.) required plvl:2
16:50:23,359 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&npc' - (Various npc commands) required plvl:2
16:50:23,359 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&object' - (Various Object commands!) required plvl:2
16:50:23,359 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&path' - (There are several path functions) required plvl:2
16:50:23,360 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&player' - (Various Admin/GM commands to edit characters.) required plvl:2
16:50:23,360 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&removehouse' - (Remove House or you are) required plvl:2
16:50:23,361 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&resetability' - (/resetability - <self|target|group|cg|bg>) required plvl:2
16:50:23,361 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&siegeweapon' - (creates siege weapons) required plvl:2
16:50:23,362 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&speed' - (Change base speed of target (no parameter to see current speed)) required plvl:2
16:50:23,362 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&team' - (Server broadcast message for administrators) required plvl:2
16:50:23,363 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&teleport' - (Manage teleport destinations) required plvl:2
16:50:23,363 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&titlegm' - (Changes target player's titles) required plvl:2
16:50:23,363 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&walk' - (Commands a npc to walk!) required plvl:2
16:50:23,364 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stop' - (Stops the npc's movement!) required plvl:2
16:50:23,364 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&weather' - (Sets the weather for the current region) required plvl:2
16:50:23,364 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&advice' - (Ask for advice from an advisor) required plvl:1
16:50:23,364 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&advisor' - (Toggles Advisor status) required plvl:1
16:50:23,365 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&afk' - (Toggle away from keyboard. You may optional set a message to display.) required plvl:1
16:50:23,365 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&anonymous' - (Toggle anonymous mode (name doesn't show up in /who)) required plvl:1
16:50:23,365 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&assist' - (Assist your target) required plvl:1
16:50:23,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&autoloot' - (automaticly pick up any loot that drops in your area) required plvl:1
16:50:23,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&autosplit' - (Choose how the loot and money are split between members of group) required plvl:1
16:50:23,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&battlechat' - (Battle group command) required plvl:1
16:50:23,366 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&battlegroup' - (Battle group command) required plvl:1
16:50:23,382 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bind' - (Binds your soul to a bind location, you will start from there after you die and /release) required plvl:1
16:50:23,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&boat' - (Boat command (use /boat for options)) required plvl:1
16:50:23,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&boot' - (Kicks a player out of your house) required plvl:1
16:50:23,383 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bountyrent' - (Pay house rent with bountypoints) required plvl:1
16:50:23,384 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&broadcast' - (Broadcast something to other players in the same zone) required plvl:1
16:50:23,385 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cancelstyle' - (Toggle cancelstyle flag.) required plvl:1
16:50:23,385 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&chat' - (Chat group command) required plvl:1
16:50:23,385 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&chatgroup' - (Chat group command) required plvl:1
16:50:23,386 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&checkappeal' - (Checks the status of your appeal or cancels it.) required plvl:1
16:50:23,386 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rearrange' - (Allows you to rearrange your character overview.) required plvl:1
16:50:23,386 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&webdisplay' - (Set informations displayed on the herald) required plvl:1
16:50:23,387 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cloak' - (Show / hide your cloak.) required plvl:1
16:50:23,387 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cmdhelp' - (Displays available commands) required plvl:1
16:50:23,387 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&appeal' - (Usage: '/appeal <appeal type> <appeal text>) required plvl:1
16:50:23,387 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reportbug' - (Use /appeal to file an appeal) required plvl:1
16:50:23,388 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reportharass' - (Use /appeal to file an appeal) required plvl:1
16:50:23,388 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reporttos' - (Use /appeal to file an appeal) required plvl:1
16:50:23,391 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&reportstuck' - (Use /appeal to file an appeal) required plvl:1
16:50:23,391 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&appea' - (Use /appeal to file an appeal) required plvl:1
16:50:23,391 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&trade' - (Broadcast a trade message to other players in the same region) required plvl:1
16:50:23,392 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&lfg' - (Broadcast a LFG message to other players in the same region) required plvl:1
16:50:23,392 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&region' - (Broadcast something to other players in the same region) required plvl:1
16:50:23,392 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&search' - (Search the current area.) required plvl:1
16:50:23,393 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&filter' - (Turns off the bad word filter.) required plvl:1
16:50:23,393 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&realm' - (Displays the current realm status.) required plvl:1
16:50:23,406 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&relics' - (Displays the current relic status.) required plvl:1
16:50:23,407 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&roleplay' - (Flags a player with an tag to indicate the player is a role player.) required plvl:1
16:50:23,407 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&deal' - (Deal one card to a player in your group. Cards must first be prepared with /shuffle.) required plvl:1
16:50:23,407 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&disband' - (Disband from a group) required plvl:1
16:50:23,407 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&discard' - (Discard card # from your hand, or discard all cards.) required plvl:1
16:50:23,408 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dismount' - (Dismount your steed) required plvl:1
16:50:23,408 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dropmr' - (Drops the Minotaurrelic.) required plvl:1
16:50:23,408 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&duel' - (Duel another player) required plvl:1
16:50:23,409 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&email' - (Set e-mail address for current account) required plvl:1
16:50:23,409 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&emote' - (Roleplay an action or emotion) required plvl:1
16:50:23,409 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&clap' - (Make a clapping gesture) required plvl:1
16:50:23,412 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dismiss' - (Make a dismissing gesture) required plvl:1
16:50:23,412 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&flex' - (Makes a flexing gesture) required plvl:1
16:50:23,413 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&hug' - (Makes a hugging gesture) required plvl:1
16:50:23,413 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&induct' - (Make a ceremonial induction gesture) required plvl:1
16:50:23,413 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&kiss' - (Blow a kiss) required plvl:1
16:50:23,413 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&laugh' - (Makes a laughing gesture) required plvl:1
16:50:23,415 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&military' - (A military salute) required plvl:1
16:50:23,415 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&no' - (Shake your head) required plvl:1
16:50:23,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&point' - (Points to something in front of you) required plvl:1
16:50:23,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&ponder' - (For when you just want to go "hmmmmmmm") required plvl:1
16:50:23,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&present' - (To present someone with something) required plvl:1
16:50:23,416 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&raise' - (Raise your hand, as in volunteering or getting attention) required plvl:1
16:50:23,417 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rude' - (A rude gesture) required plvl:1
16:50:23,417 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&salute' - (Makes a stiff salute) required plvl:1
16:50:23,417 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&shrug' - (Shrug your shoulders) required plvl:1
16:50:23,432 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&slap' - (Slap someone) required plvl:1
16:50:23,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&slit' - (Let your enemy know what you want to do to him) required plvl:1
16:50:23,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&surrender' - (I give up!) required plvl:1
16:50:23,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&taunt' - (A very mean gesture when you really want to insult someone) required plvl:1
16:50:23,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&victory' - (Make a victory cheer) required plvl:1
16:50:23,433 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&wave' - (Makes a waving gesture) required plvl:1
16:50:23,434 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cheer' - (Cheer with both hands in the air) required plvl:1
16:50:23,434 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&sweat' - (sweat) required plvl:1
16:50:23,434 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stagger' - (stagger) required plvl:1
16:50:23,434 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&yawn' - (yawn) required plvl:1
16:50:23,435 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&doh' - (doh) required plvl:1
16:50:23,435 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&confuse' - (Confused) required plvl:1
16:50:23,435 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&shiver' - (shiver) required plvl:1
16:50:23,435 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rofl' - (rofl) required plvl:1
16:50:23,435 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&mememe' - (mememe) required plvl:1
16:50:23,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&worship' - (worship) required plvl:1
16:50:23,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&drink' - (drink) required plvl:1
16:50:23,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&angry' - (Look angrily around) required plvl:1
16:50:23,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&lookfar' - (Lets you look into the distance) required plvl:1
16:50:23,436 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&smile' - (Make a big smile) required plvl:1
16:50:23,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stench' - (Wave away the local stench) required plvl:1
16:50:23,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&yes' - (Nod your head) required plvl:1
16:50:23,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&cry' - (Sob pathetically) required plvl:1
16:50:23,437 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&curtsey' - (Give a low curtsey) required plvl:1
16:50:23,441 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&dance' - (Dance a little jig) required plvl:1
16:50:23,441 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bang' - (Bang on your shield) required plvl:1
16:50:23,442 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&beckon' - (Makes a beckoning gesture with character's hand) required plvl:1
16:50:23,442 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&beg' - (Plea for items or money) required plvl:1
16:50:23,442 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&blush' - (Act in a shy manner) required plvl:1
16:50:23,442 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&bow' - (Give an honorable bow) required plvl:1
16:50:23,442 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&charge' - (Onward!) required plvl:1
16:50:23,443 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&facegloc' - (Turns and faces your character into the direction of the x, y coordinates provided (using DOL region global coordinates).) required plvl:1
16:50:23,459 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&faceloc' - (Turns and faces your character into the direction of the x, y coordinates provided (using Mythic zone coordinates).) required plvl:1
16:50:23,460 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&formation' - (Change the formation of your pets!) required plvl:1
16:50:23,460 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&freelevel' - (Display state of FreeLevel) required plvl:1
16:50:23,460 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&friend' - (Adds/Removes a player to/from your friendlist!) required plvl:1
16:50:23,461 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gloc' - (Show the current coordinates) required plvl:1
16:50:23,461 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&groundassist' - (Show the current coordinates) required plvl:1
16:50:23,461 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&group' - (Say something to other chat group players) required plvl:1
16:50:23,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gtrange' - (Gives a range to a ground target) required plvl:1
16:50:23,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gc' - (Guild command (use /gc help for options)) required plvl:1
16:50:23,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&gu' - (Guild Chat command) required plvl:1
16:50:23,462 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&o' - (Speak in officer chat (Must be a guild officer)) required plvl:1
16:50:23,463 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&as' - (Sends a message to the alliance chat) required plvl:1
16:50:23,463 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&held' - (List the cards in your hand. Use 'held g' to display faceup cards held by group members.) required plvl:1
16:50:23,463 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&helm' - (Toggles the helm on and off when wearing an helm.) required plvl:1
16:50:23,464 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&hood' - (Toggles the hood on and off when wearing a hooded cloak.) required plvl:1
16:50:23,464 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&horse' - (Horse emotes) required plvl:1
16:50:23,464 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&summon' - (Summon horse) required plvl:1
16:50:23,468 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&house' - (Show various housing information) required plvl:1
16:50:23,468 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&houseface' - (Points to the specified guildhouse of the guild noted, or the lot number noted in the command. /houseface alone will point to one's personal home.) required plvl:1
16:50:23,469 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&housefriend' - (Invite a specified player to your house) required plvl:1
16:50:23,469 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&housepoints' - (Toggles display of housepoints) required plvl:1
16:50:23,469 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&ignore' - (Adds/Removes a player to/from your Ignorelist!) required plvl:1
16:50:23,470 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&invite' - (Invite a specified or targeted player to join your group) required plvl:1
16:50:23,470 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&knock' - (Knock on a house) required plvl:1
16:50:23,470 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&language' - (Change your server-language display. Custom 'CU' is what your administrator decides.) required plvl:1
16:50:23,486 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&lastname' - (Set/change your lastname.) required plvl:1
16:50:23,486 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&level' - (Allows you to level 20 instantly if you have a level 50) required plvl:1
16:50:23,486 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&makeleader' - (Set a new group leader (can be used by current leader).) required plvl:1
16:50:23,487 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&namemount' - (Name your hourse) required plvl:1
16:50:23,487 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&news' - (Show news on social interface) required plvl:1
16:50:23,487 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&nohelp' - (Toggle nohelp on or off, to stop receiving help from your realm) required plvl:1
16:50:23,487 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&Noqueue' - (Allows you to disable/enable queuing) required plvl:1
16:50:23,488 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&password' - (Changes your account password) required plvl:1
16:50:23,488 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&played' - (Returns the age of the character) required plvl:1
16:50:23,488 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&pray' - (You can pray on your gravestones to get some experience back) required plvl:1
16:50:23,488 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&quest' - (Display the players completed quests) required plvl:1
16:50:23,489 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&quit' - (Removes the player from the world) required plvl:1
16:50:23,489 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&random' - (prints out a random number between 1 and the number specified.) required plvl:1
16:50:23,489 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&range' - (Gives a range to a target) required plvl:1
16:50:23,490 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&release' - (When you are dead you can '/release'. This will bring you back to your bindpoint!) required plvl:1
16:50:23,490 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&repair' - (You can repair an item when you are a crafter) required plvl:1
16:50:23,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&report' - (Reports a bug) required plvl:1
16:50:23,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&respec' - (Respecs the char) required plvl:1
16:50:23,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&roll' - (simulates a dice roll.) required plvl:1
16:50:23,495 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&rp' - (toggle receiving realm points) required plvl:1
16:50:23,496 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&safety' - (Turns off PvP safety flag.) required plvl:1
16:50:23,496 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&salvage' - (You can salvage an item when you are a crafter) required plvl:1
16:50:23,496 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&say' - (Say something to other players around you) required plvl:1
16:50:23,497 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&send' - (Sends a private message to a player) required plvl:1
16:50:23,497 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&settitle' - (Sets the current player title) required plvl:1
16:50:23,512 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&setwho' - (Set your class or trade for /who output) required plvl:1
16:50:23,512 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&show' - (Show all your cards to the other players (all cards become 'up').) required plvl:1
16:50:23,513 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&shuffle' - (Shuffle # of decks, minimum 1. Must be used before /deal.) required plvl:1
16:50:23,513 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&spacing' - (Change the spacing of your pets!) required plvl:1
16:50:23,513 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&sprint' - (Toggles sprint mode) required plvl:1
16:50:23,513 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stand' - (Stands up when sitting) required plvl:1
16:50:23,514 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&sit' - (Sit) required plvl:1
16:50:23,514 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stats' - (Displays player statistics) required plvl:1
16:50:23,514 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&statsanon' - (Hides your statistics) required plvl:1
16:50:23,515 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&stuck' - (Removes the player from the world and put it to a safe location) required plvl:1
16:50:23,515 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&target' - (target a player by name) required plvl:1
16:50:23,515 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&task' - (Show the actual task) required plvl:1
16:50:23,515 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&time' - (time in game) required plvl:1
16:50:23,516 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&train' - (Trains a line by the specified amount) required plvl:1
16:50:23,516 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&viewreports' - (Allows you to view submitted bug reports.) required plvl:1
16:50:23,516 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&where' - (Ask where an NPC is from Guards) required plvl:1
16:50:23,517 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&whisper' - (Sends a private message to your target if it is close enough) required plvl:1
16:50:23,517 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&who' - (Shows who is online) required plvl:1
16:50:23,529 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&xp' - (toggle receiving experience points) required plvl:1
16:50:23,530 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&yell' - (Yell something to other players around you) required plvl:1
16:50:23,531 - [MAIN] - DEBUG - DOL.GS.ScriptMgr - ScriptMgr: Command - '&xfire' - (Xfire support) required plvl:1
16:50:23,535 - [MAIN] - INFO - DOL.GS.ScriptMgr - Loaded 249 commands!
16:50:23,535 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Script compilation: 9
16:50:23,535 - [MAIN] - INFO - DOL.GS.GameServer - Script compilation: True
16:50:23,535 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Script compilation: 9
16:50:23,565 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 8MB - World Manager: EarlyInit
16:50:23,572 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 346 blocks read from F:\ServeurPrivé\Dawn of Light\.\config\regions.xml
16:50:23,573 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 473 blocks read from F:\ServeurPrivé\Dawn of Light\.\config\zones.xml
16:50:23,583 - [MAIN] - INFO - DOL.GS.WorldMgr - Loaded 27 Albion, 20 Midgard and 14 Hibernia teleport locations
16:50:23,584 - [MAIN] - DEBUG - DOL.GS.WorldMgr - loading mobs from DB...
16:50:26,263 - [MAIN] - WARN - DOL.Database.Connection.DataConnection - SQL Select (DEFAULT) took 2683ms!
SELECT `Mob_ID`, `ClassType`, `TranslationId`, `Name`, `Suffix`, `Guild`, `ExamineArticle`, `MessageArticle`, `X`, `Y`, `Z`, `Speed`, `Heading`, `Region`, `Model`, `Size`, `Strength`, `Constitution`, `Dexterity`, `Quickness`, `Intelligence`, `Piety`, `Empathy`, `Charisma`, `Level`, `Realm`, `EquipmentTemplateID`, `ItemsListTemplateID`, `NPCTemplateID`, `Race`, `Flags`, `AggroLevel`, `AggroRange`, `MeleeDamageType`, `RespawnInterval`, `FactionID`, `BodyType`, `HouseNumber`, `Brain`, `PathID`, `MaxDistance`, `OwnerID`, `RoamingRange`, `IsCloakHoodUp`, `Gender`, `PackageID`, `VisibleWeaponSlots` FROM `Mob`
16:50:26,365 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 32MB - Region Data Loaded
16:50:26,417 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 37MB - 346 Regions Loaded
16:50:26,434 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Camelot Hills, to region Region001
16:50:26,434 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Salisbury Plains, to region Region001
16:50:26,435 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Black Mtns. South, to region Region001
16:50:26,435 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Black Mtns. North, to region Region001
16:50:26,435 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dartmoor, to region Region001
16:50:26,435 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cornwall, to region Region001
16:50:26,436 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Llyn Barfog, to region Region001
16:50:26,436 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Campacorentin Forest, to region Region001
16:50:26,436 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Avalon Marsh, to region Region001
16:50:26,437 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lyonesse, to region Region001
16:50:26,437 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forest Sauvage, to region Region001
16:50:26,437 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snowdonia, to region Region001
16:50:26,437 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caerwent, to region Region002
16:50:26,437 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Pennine Mountains, to region Region001
16:50:26,437 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Labyrinth, to region Region245
16:50:26,438 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hadrian's Wall, to region Region001
16:50:26,438 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Old Sarum, to region Region002
16:50:26,438 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rilan, to region Region002
16:50:26,438 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dalton, to region Region002
16:50:26,438 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stonehenge Barrows, to region Region020
16:50:26,439 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Brisworthy, to region Region002
16:50:26,440 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tomb of Mithra, to region Region021
16:50:26,440 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Keltoi Fogou, to region Region022
16:50:26,440 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Catacombs of Cardova, to region Region023
16:50:26,440 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tepok's Mine, to region Region024
16:50:26,441 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Camelot, to region Region010
16:50:26,441 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Constantine's Sound, to region Region027
16:50:26,441 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Grenlock's Sound, to region Region027
16:50:26,441 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lamfhota's Sound, to region Region027
16:50:26,441 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Hesperos, to region Region030
16:50:26,442 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mesothalassa, to region Region030
16:50:26,442 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Boreal, to region Region030
16:50:26,442 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Notos, to region Region030
16:50:26,442 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Anatole, to region Region030
16:50:26,442 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cetus' Pit, to region Region035
16:50:26,443 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sobekite Eternal, to region Region036
16:50:26,443 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Temple of Twilight, to region Region037
16:50:26,443 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stygian Delta, to region Region030
16:50:26,443 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Land of Atum, to region Region030
16:50:26,443 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Ma'ati, to region Region040
16:50:26,444 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Typhon's Reach, to region Region030
16:50:26,444 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ashen Isles, to region Region030
16:50:26,444 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Green Glades, to region Region030
16:50:26,444 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arbor Glen, to region Region030
16:50:26,444 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Great Pyramid of Stygia, to region Region045
16:50:26,445 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deep Volcanus, to region Region046
16:50:26,445 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Aerus, to region Region047
16:50:26,445 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region048
16:50:26,445 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rugnog's Haven, to region Region049
16:50:26,445 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Avalon City, to region Region050
16:50:26,445 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Isle of Glass, to region Region051
16:50:26,446 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Avalon Isle, to region Region051
16:50:26,446 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dales of Devwy, to region Region051
16:50:26,446 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caldey, to region Region051
16:50:26,446 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gwyddneau, to region Region051
16:50:26,446 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aldland, to region Region051
16:50:26,447 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Inishail Island, to region Region051
16:50:26,447 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Underground Forest, to region Region058
16:50:26,447 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Glashtin Forges, to region Region059
16:50:26,447 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caer Sidi, to region Region060
16:50:26,447 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Krondon, to region Region061
16:50:26,448 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Crystal Cave, to region Region062
16:50:26,448 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Roman Aqueducts, to region Region063
16:50:26,448 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aylesbury, to region Region002
16:50:26,448 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Inconnu Crypt, to region Region065
16:50:26,449 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Underground Forest, to region Region066
16:50:26,449 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Deadlands of Annwn, to region Region067
16:50:26,449 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lower Crypt, to region Region068
16:50:26,449 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Darkspire, to region Region069
16:50:26,449 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ruins of Atlantis, to region Region070
16:50:26,450 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ruinerar av Atlantis, to region Region071
16:50:26,450 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Scrios de Atlantis, to region Region072
16:50:26,450 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Hesperos, to region Region073
16:50:26,450 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mesothalassa, to region Region073
16:50:26,451 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Boreal, to region Region073
16:50:26,451 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Notos, to region Region073
16:50:26,451 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Anatole, to region Region073
16:50:26,451 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cetus' Pit, to region Region078
16:50:26,451 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sobekite Eternal, to region Region079
16:50:26,452 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Temple of Twilight, to region Region080
16:50:26,452 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stygian Delta, to region Region073
16:50:26,452 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Land of Atum, to region Region073
16:50:26,452 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Ma'ati, to region Region083
16:50:26,452 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Typhon's Reach, to region Region073
16:50:26,453 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ashen Isles, to region Region073
16:50:26,453 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Green Glades, to region Region073
16:50:26,453 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arbor Glen, to region Region073
16:50:26,453 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Great Pyramid of Stygia, to region Region088
16:50:26,454 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deep Volcanus, to region Region089
16:50:26,454 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Aerus, to region Region090
16:50:26,454 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Celestius, to region Region091
16:50:26,454 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Veil Rift, to region Region092
16:50:26,454 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shar Labyrinth, to region Region093
16:50:26,454 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Queen's Labyrinth, to region Region094
16:50:26,455 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Frontlines, to region Region095
16:50:26,455 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Underground Forest, to region Region096
16:50:26,455 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Deadlands, to region Region097
16:50:26,455 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Darkspire, to region Region098
16:50:26,455 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Glashtin Forge, to region Region099
16:50:26,456 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vale of Mularn, to region Region100
16:50:26,456 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, East Svealand, to region Region100
16:50:26,456 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, West Svealand, to region Region100
16:50:26,456 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gotar, to region Region100
16:50:26,457 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Muspelheim, to region Region100
16:50:26,457 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Myrkwood Forest, to region Region100
16:50:26,457 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Skona Ravine, to region Region100
16:50:26,457 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vanern Swamp, to region Region100
16:50:26,457 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Raumarik, to region Region100
16:50:26,457 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Frontlines, to region Region109
16:50:26,458 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Uppland, to region Region100
16:50:26,458 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Yggdra Forest, to region Region100
16:50:26,458 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jamtland Mountains, to region Region100
16:50:26,458 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Erikstaad, to region Region102
16:50:26,458 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Odin's Gate, to region Region100
16:50:26,459 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Malmohus, to region Region100
16:50:26,459 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arothi, to region Region102
16:50:26,459 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Carlingford, to region Region102
16:50:26,459 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Wyndham, to region Region102
16:50:26,459 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jordheim, to region Region101
16:50:26,460 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Frisia, to region Region102
16:50:26,460 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Kaupang, to region Region102
16:50:26,460 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aphophian, to region Region123
16:50:26,460 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hephaestian, to region Region124
16:50:26,460 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Spindelhalla, to region Region125
16:50:26,461 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vendo Caverns, to region Region126
16:50:26,461 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Varulvhamn, to region Region127
16:50:26,461 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cursed Tomb, to region Region128
16:50:26,461 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nisse's Lair, to region Region129
16:50:26,461 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Hesperos, to region Region130
16:50:26,461 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mesothalassa, to region Region130
16:50:26,462 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Boreal, to region Region130
16:50:26,462 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Notos, to region Region130
16:50:26,462 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Oceanus Anatole, to region Region130
16:50:26,462 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cetus' Pit, to region Region135
16:50:26,463 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sobekite Eternal, to region Region136
16:50:26,463 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Temple of Twilight, to region Region137
16:50:26,480 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stygian Delta, to region Region130
16:50:26,480 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Land of Atum, to region Region130
16:50:26,480 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Ma'ati, to region Region140
16:50:26,481 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Typhon's Reach, to region Region130
16:50:26,481 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Ashen Isles, to region Region130
16:50:26,481 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Green Glades, to region Region130
16:50:26,481 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arbor Glen, to region Region130
16:50:26,481 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Great Pyramid of Stygia, to region Region145
16:50:26,482 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deep Volcanus, to region Region146
16:50:26,482 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, City of Aerus, to region Region147
16:50:26,482 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Frontlines, to region Region148
16:50:26,482 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nyttheim, to region Region149
16:50:26,482 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Trollheim, to region Region150
16:50:26,483 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aegir's Landing, to region Region151
16:50:26,483 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gripklosa Mountains, to region Region151
16:50:26,483 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Delling Crater, to region Region151
16:50:26,483 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Faraheim, to region Region151
16:50:26,483 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Munin Sound, to region Region151
16:50:26,483 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Iarnwood, to region Region151
16:50:26,484 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dummy Zone, to region Region151
16:50:26,484 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Modernagrav, to region Region151
16:50:26,484 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tuscaran Glacier, to region Region160
16:50:26,484 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Iarnvidiur's Lair, to region Region161
16:50:26,485 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Deadlands, to region Region162
16:50:26,485 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Agramon, to region Region163
16:50:26,485 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Irish Sea, to region Region163
16:50:26,485 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cathal Valley, to region Region165
16:50:26,485 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unamed Sea 2, to region Region163
16:50:26,486 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Odin's Gate, to region Region163
16:50:26,486 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jamtland Mountains, to region Region163
16:50:26,486 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Yggdra Forest, to region Region163
16:50:26,486 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Uppland, to region Region163
16:50:26,486 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Emain Macha, to region Region163
16:50:26,488 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Breifine, to region Region163
16:50:26,489 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cruachan Gorge, to region Region163
16:50:26,489 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mount Collory, to region Region163
16:50:26,489 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snowdonia, to region Region163
16:50:26,489 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forest Sauvage, to region Region163
16:50:26,489 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Pennine Mountains, to region Region163
16:50:26,490 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hadrian's Wall, to region Region163
16:50:26,490 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Fomor, to region Region180
16:50:26,490 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Domnann, to region Region181
16:50:26,490 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caillte Garran, to region Region181
16:50:26,490 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vale of Balor, to region Region181
16:50:26,490 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cothrom Gorge, to region Region181
16:50:26,491 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, World's End, to region Region181
16:50:26,491 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vigilant Rock, to region Region181
16:50:26,491 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Allta Fearann, to region Region181
16:50:26,491 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Darkspire, to region Region188
16:50:26,491 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Glashtin Forges, to region Region189
16:50:26,507 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tur Suil, to region Region190
16:50:26,508 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Galladoria, to region Region191
16:50:26,508 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Le Sanctuaire Du Haut Consule, to region Region192
16:50:26,508 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Le Sanctuaire Du Haut Consule, to region Region193
16:50:26,509 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Le Sanctuaire Du Haut Consule, to region Region194
16:50:26,509 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Otherworld, to region Region195
16:50:26,509 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Otherworld, to region Region196
16:50:26,509 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Otherworld, to region Region197
16:50:26,509 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shaitan, to region Region198
16:50:26,510 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Volurgon, to region Region199
16:50:26,510 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lough Derg, to region Region200
16:50:26,510 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Silvermine Mts., to region Region200
16:50:26,510 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shannon Estuary, to region Region200
16:50:26,510 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cliffs of Moher, to region Region200
16:50:26,511 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lough Gur, to region Region200
16:50:26,511 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Bog of Cullen, to region Region200
16:50:26,511 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Valley of Bri Leith, to region Region200
16:50:26,511 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Connacht, to region Region200
16:50:26,511 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cursed Forest, to region Region200
16:50:26,512 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tir na Nog, to region Region201
16:50:26,512 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mount Collory, to region Region200
16:50:26,512 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cruachan Gorge, to region Region200
16:50:26,512 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Breifine, to region Region200
16:50:26,513 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Meath, to region Region202
16:50:26,513 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Emain Macha, to region Region200
16:50:26,513 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dunshire, to region Region202
16:50:26,513 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sheeroe Hills, to region Region200
16:50:26,513 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Torrylin, to region Region202
16:50:26,514 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Kilcullen, to region Region202
16:50:26,514 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Saeranthal, to region Region202
16:50:26,514 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Coruscating Mine, to region Region220
16:50:26,514 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Muire Tomb, to region Region221
16:50:26,514 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Spraggon Den, to region Region222
16:50:26,527 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Koalinth Caverns, to region Region223
16:50:26,527 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Treibh Caillte, to region Region224
16:50:26,527 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Aberillan, to region Region202
16:50:26,528 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Midgard's Abandoned Mines, to region Region226
16:50:26,528 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Albion's Abandoned Mines, to region Region227
16:50:26,528 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hibernia's Abandoned Mines, to region Region228
16:50:26,528 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Grounds, to region Region229
16:50:26,528 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, ArtOutside, to region Region231
16:50:26,529 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, ArtInside, to region Region232
16:50:26,529 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Summoner's Hall, to region Region233
16:50:26,529 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Proving Grounds, to region Region234
16:50:26,530 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Lions Den, to region Region235
16:50:26,530 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Hills of Claret, to region Region236
16:50:26,530 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Killaloe, to region Region237
16:50:26,530 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Thidranki, to region Region238
16:50:26,530 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Braemar, to region Region239
16:50:26,531 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Wilton, to region Region240
16:50:26,531 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Molvik, to region Region241
16:50:26,531 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, TestBG, to region Region242
16:50:26,531 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Kobold Undercity, to region Region243
16:50:26,531 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Passage of Conflict, to region Region244
16:50:26,531 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Darkness Falls, to region Region249
16:50:26,532 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Leirvik, to region Region242
16:50:26,532 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region256
16:50:26,532 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region257
16:50:26,532 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region258
16:50:26,532 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Chiltern, to region Region002
16:50:26,533 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Sherborne, to region Region002
16:50:26,533 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stoneleigh, to region Region002
16:50:26,533 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Holmestrand, to region Region102
16:50:26,533 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nittedal, to region Region102
16:50:26,533 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Stavgaard, to region Region102
16:50:26,534 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tullamore, to region Region202
16:50:26,535 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Moycullen, to region Region202
16:50:26,535 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Broughshane, to region Region202
16:50:26,536 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region278
16:50:26,536 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region279
16:50:26,536 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region280
16:50:26,536 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region281
16:50:26,537 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region282
16:50:26,537 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region283
16:50:26,537 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region284
16:50:26,537 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region285
16:50:26,537 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region286
16:50:26,538 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region287
16:50:26,538 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region288
16:50:26,538 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region289
16:50:26,538 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region290
16:50:26,538 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region291
16:50:26,554 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region292
16:50:26,555 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region293
16:50:26,555 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region294
16:50:26,555 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region295
16:50:26,555 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region296
16:50:26,556 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region297
16:50:26,556 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region298
16:50:26,556 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region300
16:50:26,556 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region301
16:50:26,556 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region302
16:50:26,557 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region303
16:50:26,557 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Damp Cavern, to region Region304
16:50:26,557 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region305
16:50:26,557 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region306
16:50:26,557 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region307
16:50:26,558 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region308
16:50:26,558 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Sepulchre, to region Region309
16:50:26,558 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region310
16:50:26,558 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region311
16:50:26,558 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region312
16:50:26,558 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region313
16:50:26,559 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Concealed Guardhouse, to region Region314
16:50:26,559 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region315
16:50:26,559 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region316
16:50:26,559 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region317
16:50:26,559 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region318
16:50:26,560 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Gossamer Grotto, to region Region319
16:50:26,560 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region320
16:50:26,560 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region321
16:50:26,560 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region322
16:50:26,561 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region323
16:50:26,561 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Underground Tunnel, to region Region324
16:50:26,561 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib 30 Dungeon, to region Region325
16:50:26,565 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb 30 Dungeon, to region Region326
16:50:26,565 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Caverns of Madness, to region Region327
16:50:26,565 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid 30 Dungeon, to region Region328
16:50:26,566 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Jarlsberg's Hideout, to region Region329
16:50:26,566 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Foothills of Albion, to region Region330
16:50:26,566 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Thieves Den, to region Region331
16:50:26,566 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rebel Half Orc Lair, to region Region332
16:50:26,566 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Haunted Halls, to region Region333
16:50:26,567 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Foothills of Midgard, to region Region334
16:50:26,567 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Foothills of Hibernia, to region Region335
16:50:26,567 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demonic Prison, to region Region336
16:50:26,567 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demonic Prison, to region Region337
16:50:26,567 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demonic Prison, to region Region338
16:50:26,568 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Brimstone Caverns, to region Region339
16:50:26,568 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Halls of Helgardh, to region Region340
16:50:26,568 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Cave of Cruachan, to region Region341
16:50:26,569 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid Launch 2, to region Region342
16:50:26,585 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb Launch 2, to region Region343
16:50:26,585 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib Launch 2, to region Region344
16:50:26,585 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Tomte Prison, to region Region345
16:50:26,585 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nisse's Retreat, to region Region346
16:50:26,585 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lair of the Demon Lord, to region Region347
16:50:26,586 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Baron's Gaol, to region Region348
16:50:26,586 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lios's Eternal Rest, to region Region349
16:50:26,586 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Liche's Unrest, to region Region350
16:50:26,586 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Nephraal's Gaol, to region Region351
16:50:26,586 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Morfesa's Gaol, to region Region352
16:50:26,587 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Den of Bones, to region Region353
16:50:26,587 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Lost Burrow, to region Region354
16:50:26,587 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib 45 Dungeon, to region Region355
16:50:26,587 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb 45 Dungeon, to region Region356
16:50:26,587 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Lair, to region Region357
16:50:26,588 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Burrow, to region Region358
16:50:26,588 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid 45 Dungeon, to region Region359
16:50:26,588 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, King Eirik's Throne Room, to region Region360
16:50:26,588 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Arachnid's Labyrinth, to region Region361
16:50:26,588 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Master's Lair, to region Region362
16:50:26,588 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Anataeus' Sanctuary, to region Region363
16:50:26,589 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Keeper Iraeda's Sanctuary, to region Region364
16:50:26,589 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Bandit Lair, to region Region365
16:50:26,589 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Gnoll Lair, to region Region366
16:50:26,589 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Vandr's Bane, to region Region367
16:50:26,589 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Past and Present, to region Region368
16:50:26,590 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Half-Orc Camp, to region Region369
16:50:26,590 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Brutal Realization, to region Region370
16:50:26,590 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, History Repeats Itself, to region Region371
16:50:26,590 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hounds of Arawn, to region Region372
16:50:26,590 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Passage of Echoes, to region Region373
16:50:26,591 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unrestful Tomb, to region Region374
16:50:26,591 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lost Passages, to region Region375
16:50:26,593 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Goblin's Cookery, to region Region376
16:50:26,593 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Beastmaster's Den, to region Region377
16:50:26,594 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Keeper Garran's Sanctuary, to region Region378
16:50:26,594 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region379
16:50:26,594 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lair of Doom, to region Region380
16:50:26,594 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Arena, to region Region381
16:50:26,594 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region382
16:50:26,595 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region383
16:50:26,595 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Ritual Hall, to region Region384
16:50:26,595 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Betrayer's Den, to region Region385
16:50:26,595 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region386
16:50:26,595 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region387
16:50:26,596 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region388
16:50:26,596 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Shafts of the Tenebrae, to region Region389
16:50:26,596 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Lair of the Exiled, to region Region390
16:50:26,596 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, La Tour des Arcanes ALB, to region Region391
16:50:26,610 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Hall of Reawakening, to region Region392
16:50:26,611 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Hidden Crypt, to region Region393
16:50:26,611 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, King Constantine's Throne Room, to region Region394
16:50:26,611 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, King Lamfhotas' Throne Room, to region Region395
16:50:26,611 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Depths of Despair, to region Region396
16:50:26,611 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Realm of the Damned, to region Region397
16:50:26,612 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, La Tour des Arcanes MID, to region Region398
16:50:26,612 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, La Tour des Arcanes HIB, to region Region399
16:50:26,612 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region400
16:50:26,612 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region401
16:50:26,612 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region402
16:50:26,613 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region403
16:50:26,613 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Burial Tomb, to region Region404
16:50:26,613 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region405
16:50:26,613 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region406
16:50:26,613 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region407
16:50:26,613 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region408
16:50:26,614 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Desecrated Grounds, to region Region409
16:50:26,614 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region410
16:50:26,614 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region411
16:50:26,614 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region412
16:50:26,614 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region413
16:50:26,615 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forgotten Mines, to region Region414
16:50:26,615 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region415
16:50:26,615 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region416
16:50:26,615 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region417
16:50:26,615 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region418
16:50:26,616 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Funerary Hall, to region Region419
16:50:26,616 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region420
16:50:26,616 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region421
16:50:26,616 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region422
16:50:26,617 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region423
16:50:26,621 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Sundered Tombs, to region Region424
16:50:26,622 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Lost Wing, to region Region425
16:50:26,622 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Deliah's Sanctuary, to region Region426
16:50:26,622 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region427
16:50:26,622 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region428
16:50:26,622 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snyblem's Lair, to region Region429
16:50:26,623 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Plutonian Shore, to region Region430
16:50:26,623 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region431
16:50:26,623 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region432
16:50:26,623 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Snarg's Grotto, to region Region433
16:50:26,623 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Maze of Tribulation, to region Region434
16:50:26,623 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Smelting Pot, to region Region435
16:50:26,624 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Forges of Flame, to region Region436
16:50:26,624 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hammer Hugak's Smithy, to region Region437
16:50:26,624 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Goblin Workshop, to region Region438
16:50:26,625 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Wolak's Crucible, to region Region439
16:50:26,625 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Marik's Workroom, to region Region440
16:50:26,641 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region441
16:50:26,641 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Steward's Crypt, to region Region442
16:50:26,642 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Serf's Folly, to region Region443
16:50:26,642 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region444
16:50:26,642 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region445
16:50:26,642 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Blathnait's Refuge, to region Region446
16:50:26,642 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Broken Mirrors, to region Region447
16:50:26,643 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region448
16:50:26,643 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region449
16:50:26,643 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region450
16:50:26,643 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region451
16:50:26,643 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region452
16:50:26,644 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region453
16:50:26,644 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Cursed Barrow, to region Region454
16:50:26,644 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region455
16:50:26,644 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region456
16:50:26,644 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region457
16:50:26,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region458
16:50:26,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dismal Grotto, to region Region459
16:50:26,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region460
16:50:26,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region461
16:50:26,645 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region462
16:50:26,646 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region463
16:50:26,646 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region464
16:50:26,646 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region465
16:50:26,646 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region466
16:50:26,646 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region467
16:50:26,647 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region468
16:50:26,647 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Dark Cavern, to region Region469
16:50:26,647 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Half Orc Command Post, to region Region470
16:50:26,647 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region471
16:50:26,647 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region472
16:50:26,647 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region473
16:50:26,649 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region474
16:50:26,650 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Rise of the Spraggons, to region Region475
16:50:26,650 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Warrens, to region Region476
16:50:26,650 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region477
16:50:26,650 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region478
16:50:26,651 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Ancient's Retreat, to region Region479
16:50:26,651 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Shaman's Inner Sanctum, to region Region480
16:50:26,651 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Accursed Caves, to region Region481
16:50:26,651 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region482
16:50:26,652 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Brawler's Den, to region Region483
16:50:26,652 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Felena's Sorrow, to region Region484
16:50:26,652 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region485
16:50:26,652 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Unused Mine, to region Region486
16:50:26,652 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Pit of Despair, to region Region487
16:50:26,653 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, The Forgotten Vein, to region Region488
16:50:26,653 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Demons breach, to region Region489
16:50:26,669 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Maze of Madness, to region Region491
16:50:26,669 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Shattered Lands, to region Region492
16:50:26,669 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Gnolls Den, to region Region494
16:50:26,669 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Inner Sanctum, to region Region495
16:50:26,670 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, the Deep, to region Region496
16:50:26,670 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Mid Launch, to region Region497
16:50:26,670 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Alb Launch, to region Region498
16:50:26,670 - [MAIN] - INFO - DOL.GS.WorldMgr - Added a zone, Hib Launch, to region Region499
16:50:26,715 - [MAIN] - DEBUG - DOL.GS.WorldMgr - 39MB - Zones Loaded for All Regions
16:50:26,715 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory World Manager PreInitialization: 39
16:50:26,715 - [MAIN] - INFO - DOL.GS.GameServer - World Manager PreInitialization: True
16:50:26,716 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory World Manager PreInitialization: 39
16:50:26,722 - [MAIN] - INFO - DOL.GS.ScriptMgr - Found server rules for GST_Normal server type (standard Normal server rules).
16:50:26,722 - [MAIN] - INFO - DOL.GS.GameServer - Server rules: true
16:50:26,767 - [MAIN] - INFO - DOL.GS.SkillBase - Loading spells...
16:50:27,025 - [MAIN] - INFO - DOL.GS.SkillBase - Spells loaded: 5816
16:50:27,050 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path Spec Pet, 0 spells
16:50:27,052 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spectral Force, 30 spells
16:50:27,054 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spectral Guard, 31 spells
16:50:27,055 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Ethereal Shriek, 29 spells
16:50:27,056 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Phantasmal Wail, 32 spells
16:50:27,058 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Witchcraft, 38 spells
16:50:27,059 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Hexing, 39 spells
16:50:27,061 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Cursing, 31 spells
16:50:27,062 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valor, 47 spells
16:50:27,063 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Deathsight Spec, 34 spells
16:50:27,064 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Guardians, 41 spells
16:50:27,065 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Deathsight, 24 spells
16:50:27,066 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mind Mastery, 36 spells
16:50:27,067 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: SappLifeDrain, 0 spells
16:50:27,069 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Odin's Will, 47 spells
16:50:27,070 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Suppression, 38 spells
16:50:27,071 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Path, 27 spells
16:50:27,072 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valkyrie Mending Spec, 32 spells
16:50:27,073 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runes of Darkness, 34 spells
16:50:27,074 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: UnderhillCompanionDD, 0 spells
16:50:27,075 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Reserved Spells, 5 spells
16:50:27,076 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Army, 27 spells
16:50:27,078 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Potions, 130 spells
16:50:27,079 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Subterranean Spec, 39 spells
16:50:27,081 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Druid Nurture Spec, 51 spells
16:50:27,083 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mending, 28 spells
16:50:27,084 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 4573 not found but is referenced from LineXSpell table
16:50:27,085 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Void Mastery, 30 spells
16:50:27,086 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mob Spells, 22 spells
16:50:27,088 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pacification Spec, 37 spells
16:50:27,089 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mind Twisting, 27 spells
16:50:27,090 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Liquifaction, 34 spells
16:50:27,091 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Abrasion, 38 spells
16:50:27,092 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Death Servant Spec, 32 spells
16:50:27,094 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Domination, 31 spells
16:50:27,095 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Chants, 73 spells
16:50:27,097 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Battlesongs, 58 spells
16:50:27,098 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: UnderhillZealotDD, 0 spells
16:50:27,099 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Heretic Rejuvenation Spec, 48 spells
16:50:27,101 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Beastcraft, 22 spells
16:50:27,103 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Rebirth, 28 spells
16:50:27,103 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Ice, 18 spells
16:50:27,105 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Heretic Enhancement Spec, 42 spells
16:50:27,107 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Guardian Angel, 61 spells
16:50:27,108 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runecarving, 23 spells
16:50:27,109 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Rejuvenation, 28 spells
16:50:27,111 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 2892 not found but is referenced from LineXSpell table
16:50:27,111 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Enhancement, 47 spells
16:50:27,111 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Abilities Spells, 0 spells
16:50:27,112 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Mastery, 29 spells
16:50:27,113 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: SpiritBladeturn, 0 spells
16:50:27,114 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Enchantment Mastery, 35 spells
16:50:27,116 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mentalism, 37 spells
16:50:27,117 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Druid Nature Spec, 42 spells
16:50:27,118 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Terrible Hammer, 42 spells
16:50:27,119 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Path Pet, 0 spells
16:50:27,120 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: IceElementalDD, 0 spells
16:50:27,121 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vacuumancy, 40 spells
16:50:27,122 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pathfinding, 34 spells
16:50:27,123 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Character Abilities, 10 spells
16:50:27,125 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Healer Augmentation Spec, 45 spells
16:50:27,126 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Illusions, 25 spells
16:50:27,128 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vivification, 42 spells
16:50:27,128 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Arboreal Path Spec Pet, 0 spells
16:50:27,129 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Enchantment, 18 spells
16:50:27,131 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Soulrending, 53 spells
16:50:27,132 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: PetBuff, 11 spells
16:50:27,133 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Holism, 31 spells
16:50:27,134 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: DefensiveProc, 0 spells
16:50:27,136 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shaman Augmentation Spec, 67 spells
16:50:27,137 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bard Music Spec, 42 spells
16:50:27,138 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Druid Nature Magic, 26 spells
16:50:27,140 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bard Nurture Spec, 34 spells
16:50:27,141 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Way of the Eclipse, 33 spells
16:50:27,141 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: OffensiveProc, 0 spells
16:50:27,142 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path, 26 spells
16:50:27,144 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path, 32 spells
16:50:27,145 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runes of Suppression, 33 spells
16:50:27,146 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Empowering, 25 spells
16:50:27,147 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: UnderhillAllyHeal, 0 spells
16:50:27,148 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth Bard Spec, 25 spells
16:50:27,150 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Instruments, 65 spells
16:50:27,152 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Friar Enhancement Spec, 67 spells
16:50:27,153 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Death Servant, 22 spells
16:50:27,154 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Dimming, 42 spells
16:50:27,155 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: AllyHealOverTime, 0 spells
16:50:27,156 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pyromancy, 26 spells
16:50:27,156 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Earth, 22 spells
16:50:27,158 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shaman Mend Spec, 30 spells
16:50:27,159 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path Spec, 34 spells
16:50:27,160 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Nightshade, 27 spells
16:50:27,161 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Runes of Destruction, 31 spells
16:50:27,162 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Enhancement, 26 spells
16:50:27,167 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 30205 not found but is referenced from LineXSpell table
16:50:27,167 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 30166 not found but is referenced from LineXSpell table
16:50:27,167 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 30194 not found but is referenced from LineXSpell table
16:50:27,167 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 32179 not found but is referenced from LineXSpell table
16:50:27,168 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Item Effects, 321 spells
16:50:27,169 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path Pet, 0 spells
16:50:27,171 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Calefaction, 46 spells
16:50:27,172 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Mundane Poisons, 46 spells
16:50:27,173 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Augmentation, 28 spells
16:50:27,174 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Suppression, 36 spells
16:50:27,176 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Nurture Warden Spec, 48 spells
16:50:27,177 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Stormcalling, 53 spells
16:50:27,179 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth, 28 spells
16:50:27,180 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth Warden Spec, 24 spells
16:50:27,181 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Pacification, 31 spells
16:50:27,182 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Telekinesis, 29 spells
16:50:27,183 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vampiiric Embrace, 40 spells
16:50:27,185 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Dementia, 38 spells
16:50:27,186 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Painworking Spec, 37 spells
16:50:27,187 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Smiting, 15 spells
16:50:27,189 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Healer Mending Spec, 40 spells
16:50:27,190 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Regrowth Druid Spec, 40 spells
16:50:27,191 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Essence Manipulation, 37 spells
16:50:27,192 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spirit Animation, 26 spells
16:50:27,194 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bedazzling, 29 spells
16:50:27,196 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Champion Abilities, 187 spells
16:50:27,198 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valewalker Arb Path Spec, 47 spells
16:50:27,200 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shadow Mastery, 44 spells
16:50:27,201 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Matter, 30 spells
16:50:27,202 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Warriors, 45 spells
16:50:27,203 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path Pet, 0 spells
16:50:27,205 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Shadow Control, 27 spells
16:50:27,205 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Summoning, 14 spells
16:50:27,206 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Air, 12 spells
16:50:27,207 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Disorientation, 29 spells
16:50:27,209 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Painworking, 20 spells
16:50:27,218 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Dragon Magic, 222 spells
16:50:27,220 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bone Mystics, 32 spells
16:50:27,223 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Path of Fire, 21 spells
16:50:27,225 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Subterranean Incantations, 29 spells
16:50:27,227 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Matter Manipulation, 31 spells
16:50:27,228 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Creeping Path Spec Pet, 0 spells
16:50:27,229 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Way of the Sun, 16 spells
16:50:27,230 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Body Destruction, 28 spells
16:50:27,232 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Darkness, 20 spells
16:50:27,233 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Savagery, 48 spells
16:50:27,235 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Rebirth (Cleric), 40 spells
16:50:27,248 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20100 not found but is referenced from LineXSpell table
16:50:27,249 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20101 not found but is referenced from LineXSpell table
16:50:27,249 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20102 not found but is referenced from LineXSpell table
16:50:27,249 - [MAIN] - WARN - DOL.GS.SkillBase - Spell with ID 20104 not found but is referenced from LineXSpell table
16:50:27,250 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Combat Style Effects, 179 spells
16:50:27,251 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Way of the Moon, 20 spells
16:50:27,253 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Vapormancy, 20 spells
16:50:27,254 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Bard Music, 22 spells
16:50:27,255 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Player poisons, 0 spells
16:50:27,256 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Verdant Path Spec, 38 spells
16:50:27,257 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: AirElementalStun, 0 spells
16:50:27,258 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Nurture, 29 spells
16:50:27,260 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Refrigeration, 24 spells
16:50:27,261 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Fulltank Abilities, 0 spells
16:50:27,262 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Cursing Spec, 44 spells
16:50:27,263 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Heretic Enhancement, 28 spells
16:50:27,265 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Aura Manipulation, 38 spells
16:50:27,266 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Magnetism, 38 spells
16:50:27,268 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Power Strikes, 46 spells
16:50:27,268 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Banelord, 0 spells
16:50:27,269 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Banelord, 1 spells
16:50:27,270 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Banelord, 1 spells
16:50:27,271 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Banelord, 1 spells
16:50:27,272 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Banelord, 1 spells
16:50:27,272 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Banelord, 1 spells
16:50:27,273 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Banelord, 1 spells
16:50:27,274 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Banelord, 1 spells
16:50:27,275 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Banelord, 1 spells
16:50:27,276 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Banelord, 1 spells
16:50:27,277 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Banelord, 1 spells
16:50:27,277 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Battlemaster, 0 spells
16:50:27,278 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Battlemaster, 1 spells
16:50:27,279 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Battlemaster, 1 spells
16:50:27,279 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Battlemaster, 1 spells
16:50:27,285 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Battlemaster, 1 spells
16:50:27,286 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Battlemaster, 1 spells
16:50:27,287 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Battlemaster, 1 spells
16:50:27,287 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Battlemaster, 1 spells
16:50:27,288 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Battlemaster, 1 spells
16:50:27,290 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Battlemaster, 1 spells
16:50:27,291 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Battlemaster, 1 spells
16:50:27,291 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Convoker, 0 spells
16:50:27,292 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Convoker, 1 spells
16:50:27,293 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Convoker, 1 spells
16:50:27,308 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Convoker, 1 spells
16:50:27,309 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Convoker, 1 spells
16:50:27,310 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Convoker, 1 spells
16:50:27,310 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Convoker, 1 spells
16:50:27,311 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Convoker, 1 spells
16:50:27,312 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Convoker, 1 spells
16:50:27,312 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Convoker, 1 spells
16:50:27,313 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Convoker, 1 spells
16:50:27,314 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Perfecter, 0 spells
16:50:27,314 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Perfecter, 1 spells
16:50:27,316 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Perfecter, 1 spells
16:50:27,316 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Perfecter, 1 spells
16:50:27,317 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Perfecter, 1 spells
16:50:27,318 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Perfecter, 1 spells
16:50:27,318 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Perfecter, 1 spells
16:50:27,334 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Perfecter, 1 spells
16:50:27,335 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Perfecter, 1 spells
16:50:27,335 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Perfecter, 1 spells
16:50:27,337 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Perfecter, 1 spells
16:50:27,338 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Sojourner, 0 spells
16:50:27,338 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Sojourner, 1 spells
16:50:27,339 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Sojourner, 1 spells
16:50:27,340 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Sojourner, 1 spells
16:50:27,340 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Sojourner, 1 spells
16:50:27,341 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Sojourner, 1 spells
16:50:27,342 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Sojourner, 1 spells
16:50:27,343 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Sojourner, 1 spells
16:50:27,344 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Sojourner, 1 spells
16:50:27,344 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Sojourner, 1 spells
16:50:27,345 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Sojourner, 1 spells
16:50:27,360 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Spymaster, 0 spells
16:50:27,361 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Spymaster, 1 spells
16:50:27,362 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Spymaster, 1 spells
16:50:27,362 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Spymaster, 1 spells
16:50:27,363 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Spymaster, 1 spells
16:50:27,364 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Spymaster, 1 spells
16:50:27,364 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Spymaster, 1 spells
16:50:27,365 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Spymaster, 1 spells
16:50:27,366 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Spymaster, 1 spells
16:50:27,367 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Spymaster, 1 spells
16:50:27,370 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Spymaster, 1 spells
16:50:27,371 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Stormlord, 0 spells
16:50:27,371 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Stormlord, 1 spells
16:50:27,372 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Stormlord, 1 spells
16:50:27,373 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Stormlord, 1 spells
16:50:27,388 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Stormlord, 1 spells
16:50:27,389 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Stormlord, 1 spells
16:50:27,390 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Stormlord, 1 spells
16:50:27,390 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Stormlord, 1 spells
16:50:27,391 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Stormlord, 1 spells
16:50:27,392 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Stormlord, 1 spells
16:50:27,393 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Stormlord, 1 spells
16:50:27,393 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Warlord, 0 spells
16:50:27,394 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML1 Warlord, 1 spells
16:50:27,395 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML10 Warlord, 1 spells
16:50:27,395 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML2 Warlord, 1 spells
16:50:27,396 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML3 Warlord, 1 spells
16:50:27,397 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML4 Warlord, 1 spells
16:50:27,398 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML5 Warlord, 1 spells
16:50:27,398 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML6 Warlord, 1 spells
16:50:27,399 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML7 Warlord, 1 spells
16:50:27,400 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML8 Warlord, 1 spells
16:50:27,401 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ML9 Warlord, 1 spells
16:50:27,402 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Necro Pet Insta Spells, 14 spells
16:50:27,405 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Archery, 137 spells
16:50:27,406 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Sorts des dieux, 0 spells
16:50:27,406 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: InfiltratorAbilities, 0 spells
16:50:27,407 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: ShadowbladeAbilities, 0 spells
16:50:27,408 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: NightshadeAbilities, 0 spells
16:50:27,409 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Valewalker Arboreal Path Base, 29 spells
16:50:27,410 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Wintry, 1 spells
16:50:27,411 - [MAIN] - DEBUG - DOL.GS.SkillBase - SpellLine: Item Spells, 3 spells
16:50:27,415 - [MAIN] - INFO - DOL.GS.SkillBase - Total spell lines loaded: 246
16:50:27,417 - [MAIN] - INFO - DOL.GS.SkillBase - Loading Abilities...
16:50:27,424 - [MAIN] - WARN - DOL.GS.SkillBase - Ability implementation DOL.GS.RealmAbilities.AssasinateAbility for ability Assassinate not found
16:50:27,424 - [MAIN] - WARN - DOL.GS.SkillBase - Ability implementation DOL.GS.RealmAbilities.RemedyAbility for ability Remedy not found
16:50:27,425 - [MAIN] - WARN - DOL.GS.SkillBase - Ability implementation DOL.GS.RealmAbilities.ShadowStrikeAbility for ability Shadow Strike not found
16:50:27,425 - [MAIN] - INFO - DOL.GS.SkillBase - Total abilities loaded: 214
16:50:27,426 - [MAIN] - INFO - DOL.GS.SkillBase - Loading class to realm ability associations...
16:50:27,459 - [MAIN] - WARN - DOL.GS.SkillBase - Remedy is not a Realm Ability, this most likely is because no Implementation is set or an Implementation is set and is not a Realm Ability
16:50:27,462 - [MAIN] - WARN - DOL.GS.SkillBase - Remedy is not a Realm Ability, this most likely is because no Implementation is set or an Implementation is set and is not a Realm Ability
16:50:27,463 - [MAIN] - WARN - DOL.GS.SkillBase - Remedy is not a Realm Ability, this most likely is because no Implementation is set or an Implementation is set and is not a Realm Ability
16:50:27,466 - [MAIN] - INFO - DOL.GS.SkillBase - Realm Abilities assigned to classes!
16:50:27,468 - [MAIN] - INFO - DOL.GS.SkillBase - Loading procs...
16:50:27,473 - [MAIN] - INFO - DOL.GS.SkillBase - Total procs loaded: 444
16:50:27,475 - [MAIN] - INFO - DOL.GS.SkillBase - Loading specialization & styles...
16:50:27,478 - [MAIN] - WARN - DOL.GS.SkillBase - Associated ability Climbing for specialization Stealth not found!
16:50:27,478 - [MAIN] - WARN - DOL.GS.SkillBase - Associated ability Snapshot for specialization Crossbows not found!
16:50:27,495 - [MAIN] - INFO - DOL.Database.Connection.DataConnection - New DB connection created
16:50:27,609 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Odin's Will, 0 styles, 0 abilities
16:50:27,610 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Witchcraft, 0 styles, 0 abilities
16:50:27,610 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Hexing, 0 styles, 0 abilities
16:50:27,610 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Cursing, 0 styles, 0 abilities
16:50:27,610 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Recurve Bow, 0 styles, 0 abilities
16:50:27,618 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Sword, 129 styles, 0 abilities
16:50:27,618 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Polearm, 15 styles, 0 abilities
16:50:27,619 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Darkness, 0 styles, 0 abilities
16:50:27,619 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Nurture, 0 styles, 0 abilities
16:50:27,620 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spear, 32 styles, 0 abilities
16:50:27,620 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mentalism, 0 styles, 0 abilities
16:50:27,620 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Pacification, 0 styles, 0 abilities
16:50:27,621 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Envenom, 0 styles, 0 abilities
16:50:27,624 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Slash, 118 styles, 0 abilities
16:50:27,625 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Fire Magic, 0 styles, 0 abilities
16:50:27,625 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Liquifaction, 0 styles, 0 abilities
16:50:27,625 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Nature, 0 styles, 0 abilities
16:50:27,626 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Large Weapons, 30 styles, 0 abilities
16:50:27,626 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Subterranean, 0 styles, 0 abilities
16:50:27,626 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Creeping Path, 0 styles, 0 abilities
16:50:27,627 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Parry, 0 styles, 0 abilities
16:50:27,627 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Pathfinding, 0 styles, 0 abilities
16:50:27,628 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Celtic Spear, 15 styles, 0 abilities
16:50:27,628 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Chants, 0 styles, 0 abilities
16:50:27,628 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Rejuvenation, 0 styles, 0 abilities
16:50:27,628 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Battlesongs, 0 styles, 0 abilities
16:50:27,628 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Painworking, 0 styles, 0 abilities
16:50:27,630 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Blunt, 77 styles, 0 abilities
16:50:27,631 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Matter Magic, 0 styles, 0 abilities
16:50:27,631 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Verdant Path, 0 styles, 0 abilities
16:50:27,631 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Stealth, 0 styles, 8 abilities
16:50:27,631 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Regrowth, 0 styles, 0 abilities
16:50:27,633 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Critical Strike, 45 styles, 0 abilities
16:50:27,633 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Arboreal Path, 0 styles, 0 abilities
16:50:27,636 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Crush, 83 styles, 0 abilities
16:50:27,636 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Longbows, 0 styles, 0 abilities
16:50:27,636 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Earth Magic, 0 styles, 0 abilities
16:50:27,639 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Piercing, 101 styles, 0 abilities
16:50:27,639 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Savagery, 0 styles, 0 abilities
16:50:27,640 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Suppression, 0 styles, 0 abilities
16:50:27,640 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Enhancement, 0 styles, 0 abilities
16:50:27,640 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Death Servant, 0 styles, 0 abilities
16:50:27,643 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mind Magic, 0 styles, 0 abilities
16:50:27,643 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mana Magic, 0 styles, 0 abilities
16:50:27,643 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Music, 0 styles, 0 abilities
16:50:27,644 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Two Handed, 30 styles, 0 abilities
16:50:27,648 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Thrust, 118 styles, 0 abilities
16:50:27,652 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Smite, 0 styles, 0 abilities
16:50:27,653 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Staff, 15 styles, 0 abilities
16:50:27,653 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Bone Army, 0 styles, 0 abilities
16:50:27,655 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Celtic Dual, 46 styles, 0 abilities
16:50:27,655 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Body Magic, 0 styles, 0 abilities
16:50:27,670 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Crossbows, 0 styles, 0 abilities
16:50:27,670 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Void Magic, 0 styles, 0 abilities
16:50:27,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Dual Wield, 30 styles, 0 abilities
16:50:27,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Light Magic, 0 styles, 0 abilities
16:50:27,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Cold Magic, 0 styles, 0 abilities
16:50:27,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Archery, 0 styles, 0 abilities
16:50:27,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Enchantments, 0 styles, 0 abilities
16:50:27,672 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Thrown Weapons, 0 styles, 0 abilities
16:50:27,675 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Hammer, 88 styles, 0 abilities
16:50:27,675 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mending, 0 styles, 0 abilities
16:50:27,678 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Ethereal Shriek, 0 styles, 0 abilities
16:50:27,678 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Wind Magic, 0 styles, 0 abilities
16:50:27,684 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Battlemaster, 138 styles, 0 abilities
16:50:27,684 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Augmentation, 0 styles, 0 abilities
16:50:27,684 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Beastcraft, 0 styles, 0 abilities
16:50:27,697 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Hand to Hand, 27 styles, 0 abilities
16:50:27,697 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Summoning, 0 styles, 0 abilities
16:50:27,698 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mauler Staff, 48 styles, 0 abilities
16:50:27,699 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spectral Guard, 0 styles, 0 abilities
16:50:27,699 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Bow, 0 styles, 0 abilities
16:50:27,699 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Nightshade Magic, 0 styles, 0 abilities
16:50:27,704 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Shield, 124 styles, 4 abilities
16:50:27,704 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spirit Magic, 0 styles, 0 abilities
16:50:27,704 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Valor, 0 styles, 0 abilities
16:50:27,704 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Instruments, 0 styles, 0 abilities
16:50:27,707 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Axe, 99 styles, 0 abilities
16:50:27,717 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Blades, 110 styles, 0 abilities
16:50:27,717 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Deathsight, 0 styles, 0 abilities
16:50:27,718 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Left Axe, 30 styles, 0 abilities
16:50:27,719 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Scythe, 16 styles, 0 abilities
16:50:27,719 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Dementia, 0 styles, 0 abilities
16:50:27,724 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Flexible, 30 styles, 0 abilities
16:50:27,724 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Mundane Poisons, 0 styles, 0 abilities
16:50:27,724 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Runecarving, 0 styles, 0 abilities
16:50:27,724 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Stormcalling, 0 styles, 0 abilities
16:50:27,724 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Composite Bow, 0 styles, 0 abilities
16:50:27,725 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Soulrending, 0 styles, 0 abilities
16:50:27,732 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Power Strikes, 0 styles, 0 abilities
16:50:27,732 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Magnetism, 0 styles, 0 abilities
16:50:27,733 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Aura Manipulation, 0 styles, 0 abilities
16:50:27,733 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Spectral Force, 0 styles, 0 abilities
16:50:27,733 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Shadow Mastery, 0 styles, 0 abilities
16:50:27,750 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Vampiiric Embrace, 0 styles, 0 abilities
16:50:27,750 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: War Magic, 0 styles, 0 abilities
16:50:27,752 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Fist Wraps, 48 styles, 0 abilities
16:50:27,753 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Phantasmal Wail, 0 styles, 0 abilities
16:50:27,753 - [MAIN] - DEBUG - DOL.GS.SkillBase - Specialization: Champion Abilities, 20 styles, 0 abilities
16:50:27,755 - [MAIN] - INFO - DOL.GS.SkillBase - Total specializations loaded: 99
16:50:27,757 - [MAIN] - INFO - DOL.GS.SkillBase - Searching ability handlers in GameServer
16:50:27,763 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for QuickCast
16:50:27,763 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Bodyguard
16:50:27,763 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Flurry
16:50:27,763 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Sprint
16:50:27,763 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Climbing Spikes
16:50:27,764 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Protect
16:50:27,764 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Critical Shot
16:50:27,764 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Rampage
16:50:27,764 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Engage
16:50:27,780 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Intercept
16:50:27,780 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Taunting Shout
16:50:27,780 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Fury
16:50:27,780 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Sure Shot
16:50:27,780 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Stag
16:50:27,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Dirty Tricks
16:50:27,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Triple Wield
16:50:27,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Guard
16:50:27,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Remedy
16:50:27,781 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Bolstering Roar
16:50:27,798 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Berserk
16:50:27,798 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Vampiir Bolt
16:50:27,798 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Rapid Fire
16:50:27,798 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Camouflage
16:50:27,799 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found ability handler for Metal Guard
16:50:27,799 - [MAIN] - INFO - DOL.GS.SkillBase - Searching AbilityHandlers in Scripts
16:50:27,799 - [MAIN] - INFO - DOL.GS.SkillBase - Total ability handlers loaded: 24
16:50:27,801 - [MAIN] - INFO - DOL.GS.SkillBase - Searching skill handlers in GameServer.
16:50:27,806 - [MAIN] - DEBUG - DOL.GS.SkillBase - Found skill handler for Stealth
16:50:27,806 - [MAIN] - INFO - DOL.GS.SkillBase - Searching skill handlers in Scripts.
16:50:27,807 - [MAIN] - INFO - DOL.GS.SkillBase - Total skill handlers loaded: 1
16:50:27,807 - [MAIN] - INFO - DOL.GS.GameServer - Loading skills: true
16:50:27,991 - [MAIN] - INFO - DOL.GS.GameServer - Registering global event handlers: true
16:50:27,992 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Script components: 48
16:50:27,992 - [MAIN] - INFO - DOL.GS.GameServer - Script components: True
16:50:27,992 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Script components: 48
16:50:28,003 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Faction Managers: 49
16:50:28,003 - [MAIN] - INFO - DOL.GS.GameServer - Faction Managers: True
16:50:28,004 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Faction Managers: 49
16:50:28,012 - [MAIN] - INFO - DOL.GS.ArtifactMgr - 0 artifacts loaded
16:50:28,012 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Artifact Manager: 49
16:50:28,013 - [MAIN] - INFO - DOL.GS.GameServer - Artifact Manager: True
16:50:28,013 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Artifact Manager: 49
16:50:28,018 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory GameLiving.LoadCalculators(): 49
16:50:28,018 - [MAIN] - INFO - DOL.GS.GameServer - GameLiving.LoadCalculators(): True
16:50:28,018 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory GameLiving.LoadCalculators(): 49
16:50:28,198 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Npc Equipment: 55
16:50:28,198 - [MAIN] - INFO - DOL.GS.GameServer - Npc Equipment: True
16:50:28,198 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Npc Equipment: 55
16:50:28,315 - [MAIN] - WARN - DOL.GS.SkillBase - Ability '3464' unknown
16:50:28,316 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Npc Templates Manager: 54
16:50:28,316 - [MAIN] - INFO - DOL.GS.GameServer - Npc Templates Manager: True
16:50:28,316 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Npc Templates Manager: 54
16:50:28,535 - [MAIN] - INFO - DOL.GS.Housing.HouseMgr - [Housing] Loaded 0 houses and 2407 lotmarkers in 3 regions!
16:50:28,536 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory House Manager: 54
16:50:28,536 - [MAIN] - INFO - DOL.GS.GameServer - House Manager: True
16:50:28,536 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory House Manager: 54
16:50:28,538 - [MAIN] - INFO - DOL.GS.MarketCache - Building Market Cache ....
16:50:28,543 - [MAIN] - INFO - DOL.GS.MarketCache - Market Cache initialized with 0 items.
16:50:28,543 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Market Cache: 55
16:50:28,543 - [MAIN] - INFO - DOL.GS.GameServer - Market Cache: True
16:50:28,544 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Market Cache: 55
16:50:28,548 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Region Managers: 55
16:50:28,548 - [MAIN] - INFO - DOL.GS.GameServer - Region Managers: True
16:50:28,548 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Region Managers: 55
16:50:28,550 - [RegionTime3] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime3 (ID:9)
16:50:28,550 - [RegionTime1] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime1 (ID:10)
16:50:28,550 - [RegionTime2] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime2 (ID:8)
16:50:28,555 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Camelot Bind Area
16:50:28,557 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Jordheim Bind Area
16:50:28,558 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Godrborg
16:50:28,560 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Crair Treflan
16:50:28,550 - [RegionTime4] - INFO - DOL.GS.GameTimer+TimeManager - started timer thread RegionTime4 (ID:11)
16:50:28,561 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Tir na Nog Bind Area
16:50:28,562 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Aalid Feie
16:50:28,562 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Aegirhamn
16:50:28,563 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Catterick Hamlet
16:50:28,563 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Bjarken
16:50:28,563 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Caer Diogel
16:50:28,563 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Caer Gothwaite
16:50:28,563 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Droighaid
16:50:28,564 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Fort Gwyntell
16:50:28,564 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Gothwaite Harbor
16:50:28,564 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Grove of Domnann
16:50:28,564 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Hagall
16:50:28,564 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Knarr
16:50:28,565 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Necht
16:50:28,565 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: Wearyall Village
16:50:28,565 - [MAIN] - INFO - DOL.GS.AreaMgr - Area added: thehiddenlair
16:50:28,565 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Areas: 55
16:50:28,566 - [MAIN] - INFO - DOL.GS.GameServer - Areas: True
16:50:28,570 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Areas: 55
16:50:28,570 - [MAIN] - INFO - DOL.GS.GameServer - World save timer: true
16:50:28,573 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Boat Manager: 55
16:50:28,573 - [MAIN] - INFO - DOL.GS.GameServer - Boat Manager: True
16:50:28,573 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Boat Manager: 55
16:50:28,636 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Guild Manager: 56
16:50:28,636 - [MAIN] - INFO - DOL.GS.GameServer - Guild Manager: True
16:50:28,636 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Guild Manager: 56
16:50:28,643 - [MAIN] - WARN - DOL.GS.GameServer - No Keep manager found, using DOL.GS.Keeps.DefaultKeepManager
16:50:28,654 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_archer
16:50:28,661 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_caster
16:50:28,662 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_fighter
16:50:28,662 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_lord
16:50:28,663 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_healer
16:50:28,664 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: albion_stealther
16:50:28,664 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: alb_fighter_pk
16:50:28,665 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: alb_archer_pk
16:50:28,666 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: alb_caster_pk
16:50:28,666 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_archer
16:50:28,667 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_caster
16:50:28,668 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_fighter
16:50:28,669 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_lord
16:50:28,670 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_healer
16:50:28,670 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_hastener
16:50:28,671 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: midgard_stealther
16:50:28,672 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: mid_fighter_pk
16:50:28,672 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: mid_archer_pk
16:50:28,673 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: mid_caster_pk
16:50:28,674 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_archer
16:50:28,674 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_caster
16:50:28,675 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_fighter
16:50:28,676 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_lord
16:50:28,676 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_healer
16:50:28,677 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hibernia_stealther
16:50:28,677 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hib_fighter_pk
16:50:28,678 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hib_archer_pk
16:50:28,679 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: hib_caster_pk
16:50:28,700 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,701 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,702 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,702 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Orseo
16:50:28,704 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc
16:50:28,705 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead
16:50:28,705 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh
16:50:28,707 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam
16:50:28,708 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke
16:50:28,709 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury
16:50:28,711 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris
16:50:28,712 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste
16:50:28,713 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste
16:50:28,714 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste
16:50:28,716 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste
16:50:28,717 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste
16:50:28,719 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste
16:50:28,721 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste
16:50:28,722 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon
16:50:28,723 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain
16:50:28,724 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg
16:50:28,726 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed
16:50:28,727 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn
16:50:28,728 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig
16:50:28,729 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne
16:50:28,730 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fort Brolorn
16:50:28,731 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leonis Keep
16:50:28,732 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Claret
16:50:28,732 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,733 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Thidranki Faste
16:50:28,734 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Braemar
16:50:28,735 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Wilton
16:50:28,736 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Faste
16:50:28,737 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leirvik Castle
16:50:28,738 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Guardtower
16:50:28,739 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Guardtower
16:50:28,740 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Watchtower
16:50:28,740 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Watchtower
16:50:28,741 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Watchtower
16:50:28,742 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Guardtower
16:50:28,743 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Guardtower
16:50:28,744 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Guardtower
16:50:28,745 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Watchtower
16:50:28,745 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Guardtower
16:50:28,746 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Watchtower
16:50:28,752 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Guardtower
16:50:28,753 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Guardtower
16:50:28,753 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Guardtower
16:50:28,754 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Guardtower
16:50:28,755 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Watchtower
16:50:28,770 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Watchtower
16:50:28,771 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Guardtower
16:50:28,772 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Watchtower
16:50:28,772 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Watchtower
16:50:28,773 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Guardtower
16:50:28,774 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,775 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,776 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,776 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,777 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,778 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,779 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,780 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,781 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Watchtower
16:50:28,781 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Watchtower
16:50:28,796 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Guardtower
16:50:28,797 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Guardtower
16:50:28,797 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Guardtower
16:50:28,798 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Watchtower
16:50:28,799 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Watchtower
16:50:28,799 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Watchtower
16:50:28,800 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Guardtower
16:50:28,801 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Watchtower
16:50:28,802 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Guardtower
16:50:28,803 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Watchtower
16:50:28,804 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Watchtower
16:50:28,805 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Watchtower
16:50:28,806 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Watchtower
16:50:28,807 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Guardtower
16:50:28,807 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Guardtower
16:50:28,823 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Watchtower
16:50:28,823 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Guardtower
16:50:28,824 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Guardtower
16:50:28,825 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Watchtower
16:50:28,825 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,827 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,828 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,829 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal keep
16:50:28,830 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,831 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,832 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,833 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,834 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,835 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Outpost
16:50:28,836 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Outpost
16:50:28,850 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Spire
16:50:28,851 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Outpost
16:50:28,852 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Outpost
16:50:28,852 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Outpost
16:50:28,853 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Spire
16:50:28,854 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Outpost
16:50:28,854 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Outpost
16:50:28,855 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Spire
16:50:28,855 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Spire
16:50:28,856 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Spire
16:50:28,859 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Outpost
16:50:28,859 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Outpost
16:50:28,860 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Outpost
16:50:28,860 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Outpost
16:50:28,861 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Outpost
16:50:28,884 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Spire
16:50:28,885 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Spire
16:50:28,886 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Spire
16:50:28,886 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Outpost
16:50:28,887 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,888 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,889 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,891 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,892 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,893 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,893 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,894 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,896 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Spire
16:50:28,897 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Spire
16:50:28,898 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Outpost
16:50:28,898 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Spire
16:50:28,899 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Spire
16:50:28,905 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Spire
16:50:28,905 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Outpost
16:50:28,906 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Spire
16:50:28,907 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Spire
16:50:28,907 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Outpost
16:50:28,923 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Outpost
16:50:28,923 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Outpost
16:50:28,924 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Spire
16:50:28,925 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Spire
16:50:28,925 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Spire
16:50:28,926 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Spire
16:50:28,926 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Spire
16:50:28,927 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Outpost
16:50:28,928 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Outpost
16:50:28,928 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Outpost
16:50:28,929 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Spire
16:50:28,929 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Albion Tower
16:50:28,930 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Leirvik Tower
16:50:28,931 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Midgard Tower
16:50:28,931 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Leirvik Tower
16:50:28,935 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Hibernian Tower
16:50:28,936 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Leirvik Tower
16:50:28,937 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Killaloe
16:50:28,938 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,939 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Leirvik Castle, loading that instead of creating a new one.
16:50:28,953 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leirvik Castle
16:50:28,954 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:28,954 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:28,956 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:28,956 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:28,957 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:28,962 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:28,963 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Leirvik Tower, loading that instead of creating a new one.
16:50:28,964 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Leirvik Tower
16:50:28,964 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Leirvik Tower, loading that instead of creating a new one.
16:50:28,981 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Leirvik Tower
16:50:28,982 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Leirvik Tower, loading that instead of creating a new one.
16:50:28,982 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Leirvik Tower
16:50:28,983 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste, loading that instead of creating a new one.
16:50:28,983 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste
16:50:28,984 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste Guardtower, loading that instead of creating a new one.
16:50:28,989 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Guardtower
16:50:28,990 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste Watchtower, loading that instead of creating a new one.
16:50:28,990 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Watchtower
16:50:28,991 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Outpost
16:50:29,008 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Bledmeer Faste Spire, loading that instead of creating a new one.
16:50:29,008 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Bledmeer Faste Spire
16:50:29,009 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste, loading that instead of creating a new one.
16:50:29,010 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste
16:50:29,010 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Watchtower, loading that instead of creating a new one.
16:50:29,011 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Watchtower
16:50:29,011 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Guardtower, loading that instead of creating a new one.
16:50:29,017 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Guardtower
16:50:29,017 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Outpost, loading that instead of creating a new one.
16:50:29,018 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Outpost
16:50:29,035 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Nottmoor Faste Spire, loading that instead of creating a new one.
16:50:29,036 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Nottmoor Faste Spire
16:50:29,037 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste, loading that instead of creating a new one.
16:50:29,037 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste
16:50:29,038 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Guardtower, loading that instead of creating a new one.
16:50:29,038 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Guardtower
16:50:29,039 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Watchtower, loading that instead of creating a new one.
16:50:29,043 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Watchtower
16:50:29,044 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Spire, loading that instead of creating a new one.
16:50:29,045 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Spire
16:50:29,063 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hlidskialf Faste Outpost, loading that instead of creating a new one.
16:50:29,063 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hlidskialf Faste Outpost
16:50:29,065 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste, loading that instead of creating a new one.
16:50:29,065 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste
16:50:29,066 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Watchtower, loading that instead of creating a new one.
16:50:29,066 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Watchtower
16:50:29,066 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Guardtower, loading that instead of creating a new one.
16:50:29,071 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Guardtower
16:50:29,072 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Spire, loading that instead of creating a new one.
16:50:29,072 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Spire
16:50:29,090 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Blendrake Faste Outpost, loading that instead of creating a new one.
16:50:29,090 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Blendrake Faste Outpost
16:50:29,091 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste, loading that instead of creating a new one.
16:50:29,092 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste
16:50:29,092 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Guardtower, loading that instead of creating a new one.
16:50:29,093 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Guardtower
16:50:29,094 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Watchtower, loading that instead of creating a new one.
16:50:29,099 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Watchtower
16:50:29,099 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Spire, loading that instead of creating a new one.
16:50:29,100 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Spire
16:50:29,117 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Glenlock Faste Outpost, loading that instead of creating a new one.
16:50:29,118 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Glenlock Faste Outpost
16:50:29,119 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste, loading that instead of creating a new one.
16:50:29,119 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste
16:50:29,120 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste Guardtower, loading that instead of creating a new one.
16:50:29,120 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Guardtower
16:50:29,121 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste Watchtower, loading that instead of creating a new one.
16:50:29,125 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Watchtower
16:50:29,126 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fensalir Faste Outpost, loading that instead of creating a new one.
16:50:29,126 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Outpost
16:50:29,144 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fensalir Faste Spire
16:50:29,145 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste, loading that instead of creating a new one.
16:50:29,145 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste
16:50:29,146 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Guardtower, loading that instead of creating a new one.
16:50:29,147 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Guardtower
16:50:29,147 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Watchtower, loading that instead of creating a new one.
16:50:29,148 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Watchtower
16:50:29,153 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Outpost, loading that instead of creating a new one.
16:50:29,154 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Outpost
16:50:29,154 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Arvakr Faste Spire, loading that instead of creating a new one.
16:50:29,171 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Arvakr Faste Spire
16:50:29,172 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon, loading that instead of creating a new one.
16:50:29,172 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon
16:50:29,173 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Guardtower, loading that instead of creating a new one.
16:50:29,173 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Guardtower
16:50:29,174 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Watchtower, loading that instead of creating a new one.
16:50:29,174 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Watchtower
16:50:29,181 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Outpost, loading that instead of creating a new one.
16:50:29,181 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Outpost
16:50:29,182 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crauchon Spire, loading that instead of creating a new one.
16:50:29,198 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crauchon Spire
16:50:29,200 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain, loading that instead of creating a new one.
16:50:29,200 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain
16:50:29,201 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Watchtower, loading that instead of creating a new one.
16:50:29,201 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Watchtower
16:50:29,202 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Guardtower, loading that instead of creating a new one.
16:50:29,202 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Guardtower
16:50:29,208 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Outpost, loading that instead of creating a new one.
16:50:29,208 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Outpost
16:50:29,209 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Crimthain Spire, loading that instead of creating a new one.
16:50:29,225 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Crimthain Spire
16:50:29,226 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg, loading that instead of creating a new one.
16:50:29,227 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg
16:50:29,227 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Watchtower, loading that instead of creating a new one.
16:50:29,228 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Watchtower
16:50:29,228 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Guardtower, loading that instead of creating a new one.
16:50:29,228 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Guardtower
16:50:29,235 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Outpost, loading that instead of creating a new one.
16:50:29,236 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Outpost
16:50:29,237 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Bolg Spire, loading that instead of creating a new one.
16:50:29,253 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Bolg Spire
16:50:29,254 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed, loading that instead of creating a new one.
16:50:29,254 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed
16:50:29,255 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Guardtower, loading that instead of creating a new one.
16:50:29,255 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Guardtower
16:50:29,256 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Watchtower, loading that instead of creating a new one.
16:50:29,256 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Watchtower
16:50:29,263 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Spire, loading that instead of creating a new one.
16:50:29,263 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Spire
16:50:29,263 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun nGed Outpost, loading that instead of creating a new one.
16:50:29,280 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun nGed Outpost
16:50:29,282 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn, loading that instead of creating a new one.
16:50:29,282 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn
16:50:29,283 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Watchtower, loading that instead of creating a new one.
16:50:29,283 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Watchtower
16:50:29,283 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Guardtower, loading that instead of creating a new one.
16:50:29,284 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Guardtower
16:50:29,290 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Spire, loading that instead of creating a new one.
16:50:29,290 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Spire
16:50:29,291 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Da Behnn Outpost, loading that instead of creating a new one.
16:50:29,307 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Da Behnn Outpost
16:50:29,308 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig, loading that instead of creating a new one.
16:50:29,308 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig
16:50:29,310 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Watchtower, loading that instead of creating a new one.
16:50:29,310 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Watchtower
16:50:29,311 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Guardtower, loading that instead of creating a new one.
16:50:29,311 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Guardtower
16:50:29,317 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Spire, loading that instead of creating a new one.
16:50:29,318 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Spire
16:50:29,318 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Scathaig Outpost, loading that instead of creating a new one.
16:50:29,335 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Scathaig Outpost
16:50:29,336 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne, loading that instead of creating a new one.
16:50:29,336 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne
16:50:29,337 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Guardtower, loading that instead of creating a new one.
16:50:29,337 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Guardtower
16:50:29,338 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Watchtower, loading that instead of creating a new one.
16:50:29,338 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Watchtower
16:50:29,344 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Outpost, loading that instead of creating a new one.
16:50:29,344 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Outpost
16:50:29,345 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Ailinne Spire, loading that instead of creating a new one.
16:50:29,362 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Ailinne Spire
16:50:29,363 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc, loading that instead of creating a new one.
16:50:29,364 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc
16:50:29,365 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Guardtower, loading that instead of creating a new one.
16:50:29,365 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Guardtower
16:50:29,365 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Watchtower, loading that instead of creating a new one.
16:50:29,366 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Watchtower
16:50:29,371 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Outpost, loading that instead of creating a new one.
16:50:29,372 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Outpost
16:50:29,372 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Benowyc Spire, loading that instead of creating a new one.
16:50:29,389 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Benowyc Spire
16:50:29,390 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead, loading that instead of creating a new one.
16:50:29,390 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead
16:50:29,391 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Guardtower, loading that instead of creating a new one.
16:50:29,391 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Guardtower
16:50:29,392 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Watchtower, loading that instead of creating a new one.
16:50:29,392 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Watchtower
16:50:29,399 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Outpost, loading that instead of creating a new one.
16:50:29,399 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Outpost
16:50:29,400 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Berkstead Spire, loading that instead of creating a new one.
16:50:29,416 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Berkstead Spire
16:50:29,418 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh, loading that instead of creating a new one.
16:50:29,418 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh
16:50:29,419 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Watchtower, loading that instead of creating a new one.
16:50:29,419 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Watchtower
16:50:29,420 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Guardtower, loading that instead of creating a new one.
16:50:29,420 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Guardtower
16:50:29,426 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Spire, loading that instead of creating a new one.
16:50:29,426 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Spire
16:50:29,427 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Erasleigh Outpost, loading that instead of creating a new one.
16:50:29,443 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Erasleigh Outpost
16:50:29,444 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam, loading that instead of creating a new one.
16:50:29,444 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam
16:50:29,445 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Watchtower, loading that instead of creating a new one.
16:50:29,445 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Watchtower
16:50:29,446 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Guardtower, loading that instead of creating a new one.
16:50:29,446 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Guardtower
16:50:29,453 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Outpost, loading that instead of creating a new one.
16:50:29,454 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Outpost
16:50:29,454 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Boldiam Spire, loading that instead of creating a new one.
16:50:29,471 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Boldiam Spire
16:50:29,472 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke, loading that instead of creating a new one.
16:50:29,472 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke
16:50:29,473 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Watchtower, loading that instead of creating a new one.
16:50:29,473 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Watchtower
16:50:29,473 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Guardtower, loading that instead of creating a new one.
16:50:29,474 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Guardtower
16:50:29,481 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Outpost, loading that instead of creating a new one.
16:50:29,481 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Outpost
16:50:29,482 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Sursbrooke Spire, loading that instead of creating a new one.
16:50:29,498 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Sursbrooke Spire
16:50:29,500 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury, loading that instead of creating a new one.
16:50:29,500 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury
16:50:29,501 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Guardtower, loading that instead of creating a new one.
16:50:29,501 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Guardtower
16:50:29,502 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Watchtower, loading that instead of creating a new one.
16:50:29,502 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Watchtower
16:50:29,507 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Outpost, loading that instead of creating a new one.
16:50:29,507 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Outpost
16:50:29,508 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Hurbury Spire, loading that instead of creating a new one.
16:50:29,525 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Hurbury Spire
16:50:29,526 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris, loading that instead of creating a new one.
16:50:29,526 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris
16:50:29,527 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Guardtower, loading that instead of creating a new one.
16:50:29,527 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Guardtower
16:50:29,528 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Watchtower, loading that instead of creating a new one.
16:50:29,528 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Watchtower
16:50:29,535 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Spire, loading that instead of creating a new one.
16:50:29,535 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Spire
16:50:29,536 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Renaris Outpost, loading that instead of creating a new one.
16:50:29,552 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Renaris Outpost
16:50:29,553 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Killaloe, loading that instead of creating a new one.
16:50:29,554 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Killaloe
16:50:29,554 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,555 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,555 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,556 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,562 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,563 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Thidranki Faste, loading that instead of creating a new one.
16:50:29,563 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Thidranki Faste
16:50:29,564 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,580 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,581 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,582 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,582 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,583 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,583 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Dun Braemar, loading that instead of creating a new one.
16:50:29,588 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Dun Braemar
16:50:29,590 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,590 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,591 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,607 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,608 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,608 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,609 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Wilton, loading that instead of creating a new one.
16:50:29,609 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Wilton
16:50:29,610 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,616 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,617 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,618 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,619 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,634 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,636 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Faste, loading that instead of creating a new one.
16:50:29,636 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Faste
16:50:29,637 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,637 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,638 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,643 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,644 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,644 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,645 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Albion Tower, loading that instead of creating a new one.
16:50:29,662 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Albion Tower
16:50:29,663 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Midgard Tower, loading that instead of creating a new one.
16:50:29,663 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Midgard Tower
16:50:29,664 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Molvik Hibernian Tower, loading that instead of creating a new one.
16:50:29,664 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Molvik Hibernian Tower
16:50:29,665 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,670 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,671 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,672 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,673 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,688 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,690 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Leonis Keep, loading that instead of creating a new one.
16:50:29,690 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Leonis Keep
16:50:29,691 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,691 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,692 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,698 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,699 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,699 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,700 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Caer Claret, loading that instead of creating a new one.
16:50:29,716 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Caer Claret
16:50:29,717 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Albion Portal Keep, loading that instead of creating a new one.
16:50:29,718 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Albion Portal Keep
16:50:29,719 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Midgard Portal Keep, loading that instead of creating a new one.
16:50:29,719 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Midgard Portal Keep
16:50:29,720 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Hibernia Portal Keep, loading that instead of creating a new one.
16:50:29,725 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Hibernia Portal Keep
16:50:29,726 - [MAIN] - DEBUG - DOL.GS.Keeps.AbstractGameKeep - Found a DBArea entry for Fort Brolorn, loading that instead of creating a new one.
16:50:29,726 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Registered Keep: Fort Brolorn
16:50:29,884 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:29,885 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:29,886 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:29,896 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:29,897 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:29,898 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:29,900 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:29,900 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:29,900 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:29,951 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:29,952 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:29,953 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:29,953 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:29,954 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:29,954 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,205 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,207 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,208 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,208 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,209 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,209 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,217 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,218 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,219 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,220 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,221 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,222 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,257 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,258 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,260 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,261 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,262 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,262 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,285 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,286 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,287 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,288 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,289 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,289 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,347 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,348 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,349 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,349 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,350 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,350 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,380 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,381 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,382 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,383 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,383 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,384 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,451 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,452 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,453 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,454 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,455 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,455 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,469 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,478 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,480 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,481 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,481 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,482 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,499 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,499 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,500 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,502 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,502 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,503 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,504 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,504 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,505 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,524 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,525 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,526 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,527 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,528 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,528 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,593 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,594 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,596 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,596 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,597 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,598 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,656 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,657 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,658 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,659 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,659 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,660 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,661 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,661 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,661 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,672 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,673 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,674 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,674 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,675 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,676 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,731 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,732 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,734 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,735 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,735 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,736 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,814 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:30,815 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Scout
16:50:30,816 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Cleric
16:50:30,818 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:30,818 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Scout
16:50:30,819 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Cleric
16:50:30,820 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:30,821 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Scout
16:50:30,821 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Cleric
16:50:30,832 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,833 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,834 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,835 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,836 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,836 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,936 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,937 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,938 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,938 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,939 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,939 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,946 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,947 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,947 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,949 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,949 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,950 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,951 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:30,951 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Ranger
16:50:30,951 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Druid
16:50:30,976 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,976 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,978 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,979 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,980 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,980 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Hunter
16:50:30,985 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,986 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,987 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,991 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,993 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,994 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,998 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:30,999 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,000 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,004 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,005 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,006 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,010 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,012 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,013 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,017 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,019 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,020 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,024 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,025 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,026 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,030 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,032 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,033 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,037 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,038 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,039 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,044 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,045 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,056 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,061 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,062 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,064 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,068 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,069 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,070 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,074 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,075 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,076 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,080 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,081 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,082 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,086 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,087 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,088 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,092 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,094 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,095 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,099 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,100 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,101 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,106 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,107 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,108 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,112 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,114 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,115 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,119 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,121 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,121 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,126 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,127 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,128 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,133 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,135 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,136 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,141 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,142 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,143 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,147 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,148 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,148 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,152 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,153 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,154 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,158 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,159 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,160 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,164 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,165 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,166 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,171 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,172 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,173 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,178 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,179 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,180 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,184 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,186 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,187 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,191 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,192 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,193 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,198 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,199 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,200 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,215 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,217 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,218 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,224 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,225 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,226 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,231 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,232 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,233 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,237 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,238 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,239 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,244 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,245 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,246 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,250 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,252 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,253 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,257 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,259 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,260 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,264 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,265 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,266 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,270 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,272 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,273 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,277 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,278 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,279 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,284 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,285 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,287 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,291 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,292 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,293 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,298 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,299 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,300 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,305 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,306 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,307 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,311 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,312 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,312 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,316 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,317 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,318 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,322 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,324 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,325 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,330 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,331 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,332 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,337 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,338 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,339 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,343 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,344 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,344 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,348 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,350 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,351 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,355 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,356 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,357 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,370 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,371 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,372 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,376 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,378 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,379 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,383 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,385 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,385 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,390 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,391 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,392 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,396 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,397 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,398 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,403 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,404 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,405 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,410 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,411 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,412 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,416 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,417 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,418 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,422 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,423 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,424 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,428 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,429 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,430 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,436 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,437 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,439 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,443 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,444 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,446 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,450 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,451 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,453 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,457 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,458 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,460 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,465 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,466 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,467 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,472 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,474 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,474 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Armswoman
16:50:31,479 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,480 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,481 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,486 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,487 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,489 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,493 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,495 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,496 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,501 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,503 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,504 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,508 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,510 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,511 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,515 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,517 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,518 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,545 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,546 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,546 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Huscarl
16:50:31,550 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,552 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,553 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,557 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,558 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,559 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,563 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,565 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,566 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,570 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,572 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,572 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,576 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,578 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,579 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,583 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,585 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,586 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,590 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,591 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:31,592 - [MAIN] - WARN - DOL.GS.GameNPC - No path to travel on for Guardian
16:50:32,340 - [MAIN] - WARN - DOL.GS.Keeps.DefaultKeepManager - Some keeps not found while loading components, possibly old/new keeptype; see server properties
16:50:32,379 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Loading HookPoint items
16:50:33,067 - [MAIN] - INFO - DOL.GS.Keeps.DefaultKeepManager - Loaded 298 keeps successfully
16:50:33,068 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Keep Manager: 84
16:50:33,068 - [MAIN] - INFO - DOL.GS.GameServer - Keep Manager: True
16:50:33,068 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Keep Manager: 84
16:50:33,071 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Door Manager: 84
16:50:33,071 - [MAIN] - INFO - DOL.GS.GameServer - Door Manager: True
16:50:33,072 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Door Manager: 84
16:50:33,075 - [MAIN] - INFO - DOL.GS.LootMgr - Loading LootGenerators...
16:50:40,757 - [MAIN] - INFO - DOL.GS.LootGeneratorTemplate - LootTemplates pre-loaded.
16:50:40,768 - [MAIN] - INFO - DOL.GS.LootGeneratorTemplate - MobXLootTemplates pre-loaded.
16:50:40,772 - [MAIN] - DEBUG - DOL.GS.LootMgr - Found 4 Global LootGenerators
16:50:40,773 - [MAIN] - DEBUG - DOL.GS.LootMgr - Found 0 Mobnames registered by LootGenerators
16:50:40,773 - [MAIN] - DEBUG - DOL.GS.LootMgr - Found 0 Guildnames registered by LootGenerators
16:50:40,773 - [MAIN] - INFO - DOL.GS.LootMgr - LootGenerator initialized: true
16:50:41,197 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:41,198 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:41,199 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:41,200 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:41,202 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:44,337 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: c3dc4243-73e9-4893-8da3-b2fbde4d4dfc
16:50:45,901 - [MAIN] - INFO - DOL.GS.Movement.MovementMgr - Path cache filled with 367 paths.
16:50:47,026 - [MAIN] - INFO - DOL.GS.Region - Region: Albion (1) loaded 16119 mobs, 220 merchants, 248 items 29 bindpoints, from DB (RegionTime1)
16:50:47,027 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 135MB
16:50:50,872 - [MAIN] - INFO - DOL.GS.Region - Region: Hibernia (200) loaded 11336 mobs, 193 merchants, 76 items 24 bindpoints, from DB (RegionTime4)
16:50:50,873 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 157MB
16:50:51,888 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 5100798
16:50:54,265 - [MAIN] - INFO - DOL.GS.Region - Region: Midgard (100) loaded 10065 mobs, 205 merchants, 128 items 20 bindpoints, from DB (RegionTime3)
16:50:54,266 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 175MB
16:50:54,625 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Error adding NPC equipment, ObjectId=af85d44a-38bd-4738-b559-96afd74b4971
16:50:56,772 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Error adding NPC equipment, ObjectId=af85d44a-38bd-4738-b559-96afd74b4971
16:50:56,988 - [MAIN] - INFO - DOL.GS.Region - Region: New Frontiers (163) loaded 8024 mobs, 52 merchants, 91 items 12 bindpoints, from DB (RegionTime2)
16:50:56,989 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 189MB
16:50:56,998 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,001 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,009 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,016 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,017 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 0b9e4b91-6238-4a38-b71c-cce175bc06bf
16:50:57,041 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,055 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,073 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,084 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,088 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,091 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,093 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,094 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,133 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,137 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,151 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,156 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,175 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,177 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: c0ecb12e-2127-4181-95e6-5693a375938b
16:50:57,186 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,194 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,212 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1da9bd94-d5ef-41b7-9260-ed4fb95ea3ee
16:50:57,220 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,229 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,238 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,239 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,243 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,259 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,271 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,280 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,293 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,295 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,298 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,319 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,325 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,331 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,338 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,344 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,352 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,356 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,359 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,360 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,374 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,375 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 3b033578-c3cb-4930-8b89-20c44f848142
16:50:57,380 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,413 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,422 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,467 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,477 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,481 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,494 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,505 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,540 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,541 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,543 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,544 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,548 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,551 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,552 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,555 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,561 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,565 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: ec1263ba-0483-496e-8f05-d899e34c974a
16:50:57,582 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,601 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,603 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,606 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,614 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,619 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,626 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,632 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,635 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,654 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,666 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,678 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,683 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,690 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,695 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,697 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,708 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,719 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,725 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,730 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,738 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,740 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,749 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,750 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,760 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:57,766 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:57,769 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,771 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,774 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,785 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,787 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,790 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,802 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,811 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,826 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,827 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,830 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:57,835 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,836 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,849 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,860 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,861 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,862 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,863 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,864 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,865 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,866 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,867 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,869 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,870 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,871 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,872 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,873 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,875 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,876 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,877 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,878 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,880 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,881 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,896 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,897 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,898 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,900 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,901 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,905 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,906 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,908 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,923 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,924 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,925 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,926 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,927 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,932 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: a5851376-5a00-422e-8a66-874b391913cc
16:50:57,933 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,950 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,952 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,953 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,954 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,955 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,959 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,960 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,961 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,977 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,978 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,979 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,980 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,981 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,987 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:57,988 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,005 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,006 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,007 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,008 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,009 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,013 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,014 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,015 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,032 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,034 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,035 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,036 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,037 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,041 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,042 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:58,059 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:58,060 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 08df10a5-8270-4d2d-9d51-ef2f5a227bd3
16:50:58,061 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bed2b7e4-8da0-4cb5-9ade-2cd054d1fd1d
16:50:58,062 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,063 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,068 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,069 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,070 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,087 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,088 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,089 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,091 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,092 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,094 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,096 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,113 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,114 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,116 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,117 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,120 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,122 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,123 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 8f518a46-6361-4100-b93e-adfee9a34d32
16:50:58,319 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,320 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,321 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,322 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,323 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,325 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,326 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,327 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,328 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,329 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,330 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,332 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,333 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,334 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,335 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,336 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,337 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,340 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,341 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,342 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,359 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,360 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,361 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,362 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,364 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,366 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,367 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,384 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,386 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,387 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,388 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,389 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,392 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,393 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,395 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,411 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,412 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,414 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,415 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,416 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,420 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,421 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,439 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,440 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,440 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,442 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,443 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,447 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: bc3d9a3d-9a78-44a2-b5e0-4f87a44522fd
16:50:58,622 - [MAIN] - INFO - DOL.GS.Region - Region: Tutorial (27) loaded 3216 mobs, 51 merchants, 395 items 9 bindpoints, from DB (RegionTime1)
16:50:58,622 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 201MB
16:50:59,109 - [MAIN] - INFO - DOL.GS.Region - Region: Darkness Falls (249) loaded 1447 mobs, 30 merchants, 0 items 0 bindpoints, from DB (RegionTime2)
16:50:59,109 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 201MB
16:50:59,264 - [MAIN] - INFO - DOL.GS.Region - Region: Varulvhamn (127) loaded 486 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:50:59,264 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 201MB
16:50:59,322 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 65d1ab0c-01bf-480e-9a85-d3ef0196cc9e
16:50:59,336 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 65d1ab0c-01bf-480e-9a85-d3ef0196cc9e
16:50:59,383 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 65d1ab0c-01bf-480e-9a85-d3ef0196cc9e
16:50:59,428 - [MAIN] - INFO - DOL.GS.Region - Region: Stonehenge Barrows (20) loaded 458 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:50:59,428 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 203MB
16:50:59,566 - [MAIN] - INFO - DOL.GS.Region - Region: Spindelhalla (125) loaded 449 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:50:59,566 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 204MB
16:50:59,569 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,570 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,571 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,571 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,573 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,573 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,574 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,577 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,577 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,578 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,580 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,581 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,583 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,584 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,586 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:50:59,588 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,589 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,589 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,590 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,591 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,593 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,594 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,596 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,597 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,599 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,600 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,601 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,603 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,604 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,605 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,606 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,608 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,609 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,609 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,622 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,624 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,625 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,627 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,629 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,630 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,631 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,633 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,634 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,635 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,636 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,638 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,639 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,640 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,640 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,642 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,643 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,644 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,646 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,646 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,648 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,649 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,651 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,652 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,653 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,654 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,656 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,657 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,658 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,659 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,665 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,666 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,667 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,668 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,669 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,671 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,674 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,675 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,676 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,677 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,678 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,679 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,693 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,694 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,696 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,696 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,698 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,699 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,700 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,702 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,703 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,704 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,705 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,706 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,720 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,721 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,723 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:50:59,724 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,725 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,725 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,726 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,727 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,730 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,733 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,734 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,735 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:50:59,737 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,739 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,740 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,741 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,743 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,746 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,747 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,748 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,749 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,750 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,756 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,757 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,758 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,759 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,759 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,774 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,775 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,776 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,777 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,779 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,781 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,782 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,782 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,783 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,786 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,787 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,788 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,790 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,790 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,798 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,799 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,800 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,801 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,802 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,807 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,807 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,808 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,810 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,811 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,826 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,828 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,828 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,829 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,832 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,834 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,835 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,837 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,838 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,839 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,840 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,841 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,843 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,843 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,845 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,846 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,846 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,847 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,856 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,857 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,858 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,861 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,862 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,864 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,865 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,866 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,867 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,867 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,879 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,880 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,881 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,882 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,882 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,883 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,884 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,886 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,887 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,889 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,890 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,892 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,893 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,894 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,895 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,896 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,900 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,902 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,902 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,903 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,905 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,908 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: haunting_gloom
16:50:59,910 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,911 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,911 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,927 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,928 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,929 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,931 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,932 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,933 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,934 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,935 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,937 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,938 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,940 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,942 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,942 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 7d03fa95-37ac-4554-a55d-a5f08604d7c2
16:50:59,949 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_paladin
16:50:59,951 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,952 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: disturbed_initiate
16:50:59,953 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: doomed_minion
16:50:59,955 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: undead_guardsman
16:50:59,957 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,958 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,959 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,961 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: fallen_cleric
16:50:59,963 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: cursed_believer
16:50:59,976 - [MAIN] - INFO - DOL.GS.Region - Region: Tomb of Mithra (21) loaded 428 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:50:59,976 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 203MB
16:51:00,103 - [MAIN] - INFO - DOL.GS.Region - Region: Coruscating Mine (220) loaded 391 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:51:00,103 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 206MB
16:51:00,221 - [MAIN] - INFO - DOL.GS.Region - Region: Nisse's Lair (129) loaded 368 mobs, 0 merchants, 3 items 0 bindpoints, from DB (RegionTime2)
16:51:00,221 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 206MB
16:51:00,338 - [MAIN] - INFO - DOL.GS.Region - Region: Spraggon Den (222) loaded 368 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:51:00,339 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 206MB
16:51:00,467 - [MAIN] - INFO - DOL.GS.Region - Region: Tir na Nog (201) loaded 322 mobs, 30 merchants, 13 items 0 bindpoints, from DB (RegionTime2)
16:51:00,468 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 208MB
16:51:00,593 - [MAIN] - INFO - DOL.GS.Region - Region: Treibh Caillte (224) loaded 338 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:51:00,593 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 207MB
16:51:00,593 - [MAIN] - ERROR - DOL.GS.Region - Error loading the following NPC ClassType(s), GameNPC used instead: DOL.GS.Scripts.RockyGolem, DOL.GS.Scripts.BefuddledGolem
16:51:00,689 - [MAIN] - INFO - DOL.GS.Region - Region: Koalinth Tribal Caverns (223) loaded 329 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:51:00,690 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 211MB
16:51:00,804 - [MAIN] - INFO - DOL.GS.Region - Region: Camelot City (10) loaded 276 mobs, 40 merchants, 16 items 2 bindpoints, from DB (RegionTime1)
16:51:00,805 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 213MB
16:51:00,907 - [MAIN] - INFO - DOL.GS.Region - Region: Jordheim (101) loaded 255 mobs, 33 merchants, 18 items 1 bindpoints, from DB (RegionTime4)
16:51:00,907 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 213MB
16:51:00,989 - [MAIN] - INFO - DOL.GS.Region - Region: Muire Tomb (221) loaded 246 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:51:00,990 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 212MB
16:51:01,054 - [MAIN] - INFO - DOL.GS.Region - Region: Cursed Tomb (128) loaded 219 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime2)
16:51:01,055 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:51:01,058 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,060 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,062 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,065 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,093 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,095 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,097 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,098 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,101 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,103 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,105 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,106 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,110 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,112 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,113 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,114 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,116 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,118 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,122 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,123 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,124 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,127 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,129 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,131 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,132 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,133 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,140 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,143 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,157 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,159 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,161 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:51:01,164 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,167 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,168 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,169 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,169 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,170 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,176 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,178 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,186 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:51:01,187 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,188 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,202 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:51:01,205 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,208 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,210 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,211 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,213 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:51:01,215 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,216 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,217 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,224 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,225 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:51:01,235 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,238 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,239 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,253 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,254 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,256 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,258 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,260 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,261 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,262 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,276 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,277 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 720979a2-3c22-4cb4-963f-a0d51e8e6d88
16:51:01,279 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 1507ebf4-d38f-4b27-9994-60dee28f2fb5
16:51:01,280 - [MAIN] - INFO - DOL.GS.Region - Region: Catacombs of Cardova (23) loaded 215 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:51:01,280 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 213MB
16:51:01,289 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,290 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,292 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,298 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,302 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,304 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,314 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,316 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,320 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,322 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,334 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,338 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,346 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,352 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,353 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,355 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,358 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,359 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,361 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,363 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,365 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,367 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,373 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,375 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,377 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,383 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,391 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,397 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,398 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 94e72cee-22a6-4bb7-a686-bac976519db5
16:51:01,400 - [MAIN] - INFO - DOL.GS.Region - Region: Keltoi Fogou (22) loaded 212 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime2)
16:51:01,400 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 213MB
16:51:01,465 - [MAIN] - INFO - DOL.GS.Region - Region: Vendo Caverns (126) loaded 211 mobs, 0 merchants, 1 items 0 bindpoints, from DB (RegionTime3)
16:51:01,466 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,495 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: 77614543-a506-4706-8293-739331650e2a
16:51:01,515 - [MAIN] - WARN - DOL.GS.GameNpcInventoryTemplate - Failed loading NPC inventory template: Botok
16:51:01,545 - [MAIN] - INFO - DOL.GS.Region - Region: Tepok's Mine (24) loaded 186 mobs, 0 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:51:01,546 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 214MB
16:51:01,556 - [MAIN] - INFO - DOL.GS.Region - Region: King Constantine's Throne Room (394) loaded 16 mobs, 3 merchants, 0 items 0 bindpoints, from DB (RegionTime1)
16:51:01,556 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:51:01,565 - [MAIN] - INFO - DOL.GS.Region - Region: King Eirik's Throne Room (360) loaded 16 mobs, 3 merchants, 0 items 0 bindpoints, from DB (RegionTime4)
16:51:01,565 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:51:01,572 - [MAIN] - INFO - DOL.GS.Region - Region: King Lamfhotas' Throne Room (395) loaded 14 mobs, 3 merchants, 0 items 0 bindpoints, from DB (RegionTime3)
16:51:01,573 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,575 - [MAIN] - INFO - DOL.GS.Region - Region: Avalon (51) loaded 0 mobs, 1 merchants, 0 items 13 bindpoints, from DB (RegionTime2)
16:51:01,576 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,845 - [MAIN] - INFO - DOL.GS.Region - Region: Aegir (151) loaded 0 mobs, 0 merchants, 0 items 11 bindpoints, from DB (RegionTime4)
16:51:01,846 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:51:01,865 - [MAIN] - INFO - DOL.GS.Region - Region: Atlantis (130) loaded 0 mobs, 0 merchants, 0 items 4 bindpoints, from DB (RegionTime2)
16:51:01,865 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 215MB
16:51:01,888 - [MAIN] - INFO - DOL.GS.Region - Region: HyBrasil (181) loaded 0 mobs, 0 merchants, 0 items 11 bindpoints, from DB (RegionTime4)
16:51:01,889 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,912 - [MAIN] - INFO - DOL.GS.Region - Region: Inconnu Crypt (65) loaded 0 mobs, 0 merchants, 0 items 2 bindpoints, from DB (RegionTime4)
16:51:01,912 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,927 - [MAIN] - INFO - DOL.GS.Region - Region: Atlantis (30) loaded 0 mobs, 0 merchants, 0 items 4 bindpoints, from DB (RegionTime1)
16:51:01,928 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,953 - [MAIN] - INFO - DOL.GS.Region - Region: Shar Labyrinth (93) loaded 0 mobs, 0 merchants, 0 items 2 bindpoints, from DB (RegionTime4)
16:51:01,953 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 216MB
16:51:01,968 - [MAIN] - INFO - DOL.GS.Region - Region: Scrios de Atlantis (72) loaded 0 mobs, 0 merchants, 0 items 1 bindpoints, from DB (RegionTime1)
16:51:01,968 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 217MB
16:51:01,970 - [MAIN] - INFO - DOL.GS.Region - Region: Atlantis (73) loaded 0 mobs, 0 merchants, 0 items 5 bindpoints, from DB (RegionTime4)
16:51:01,971 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 217MB
16:51:02,041 - [MAIN] - INFO - DOL.GS.Region - Region: Braemar (239) loaded 0 mobs, 0 merchants, 0 items 3 bindpoints, from DB (RegionTime3)
16:51:06,987 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 218MB
16:51:07,011 - [MAIN] - INFO - DOL.GS.Region - Region: Labyrinth (245) loaded 0 mobs, 0 merchants, 0 items 4 bindpoints, from DB (RegionTime4)
16:51:07,012 - [MAIN] - DEBUG - DOL.GS.Region - Used Memory: 212MB
16:51:07,061 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Mobs: 56010
16:51:07,061 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Merchants: 864
16:51:07,061 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Items: 989
16:51:07,062 - [MAIN] - INFO - DOL.GS.WorldMgr - Total Bind Points: 157
16:51:07,062 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory World Manager Initialization: 212
16:51:07,063 - [MAIN] - INFO - DOL.GS.GameServer - World Manager Initialization: True
16:51:07,063 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory World Manager Initialization: 212
16:51:07,064 - [RelocateReg] - INFO - DOL.GS.WorldMgr - started RelocateRegions() thread ID:12
16:51:07,066 - [NpcUpdate] - DEBUG - DOL.GS.WorldMgr - NPCUpdateThread ThreadId=6
16:51:07,068 - [MAIN] - DEBUG - DOL.GS.RelicMgr - 18 relicpadss were loaded.
16:51:07,068 - [MAIN] - DEBUG - DOL.GS.RelicMgr - 0 relic was loaded.
16:51:07,068 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Relic Manager: 212
16:51:07,068 - [MAIN] - INFO - DOL.GS.GameServer - Relic Manager: True
16:51:07,068 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Relic Manager: 212
16:51:07,070 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Weather Managers: 212
16:51:07,070 - [MAIN] - INFO - DOL.GS.GameServer - Weather Managers: True
16:51:07,070 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Weather Managers: 212
16:51:07,073 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Crafting Managers: 212
16:51:07,073 - [MAIN] - INFO - DOL.GS.GameServer - Crafting Managers: True
16:51:07,073 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Crafting Managers: 212
16:51:07,077 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.FrontierProtector
16:51:07,077 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.FrontierChallengerTitle
16:51:07,078 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.FrontierVindicatorTitle
16:51:07,078 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.StrongholdChiefTitle
16:51:07,078 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.StrongholdSoldierTitle
16:51:07,078 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BattleEnforcer
16:51:07,079 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BattleMaster
16:51:07,079 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BaneOfAlbionTitle
16:51:07,080 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.SlayerOfAlbionTitle
16:51:07,080 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ScourgeOfAlbionTitle
16:51:07,081 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterAssassineTitle
16:51:07,081 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterEnforcerTitle
16:51:07,081 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterSoldierTitle
16:51:07,089 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DemonBaneTitle
16:51:07,090 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DemonScourgeTitle
16:51:07,090 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DemonSlayerTitle
16:51:07,090 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DreadVanquisherTitle
16:51:07,090 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonBaneTitle
16:51:07,101 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonFoeTitle
16:51:07,101 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonScourgeTitle
16:51:07,101 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DragonSlayerTitle
16:51:07,101 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.EpicChallengerTitle
16:51:07,102 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.EpicVictorTitle
16:51:07,102 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BaneOfHiberniaTitle
16:51:07,102 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.SlayerOfHiberniaTitle
16:51:07,103 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ScourgeOfHiberniaTitle
16:51:07,103 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.BaneOfMidgardTitle
16:51:07,103 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.SlayerOfMidgardTitle
16:51:07,109 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ScourgeOfMidgardTitle
16:51:07,109 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ChampionlevelTitle
16:51:07,110 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.Level20Title
16:51:07,110 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.MasterlevelTitle
16:51:07,110 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.AdministratorTitle
16:51:07,127 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.GamemasterTitle
16:51:07,128 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.CraftTitle
16:51:07,128 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR4
16:51:07,128 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR5
16:51:07,128 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR6
16:51:07,129 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR7
16:51:07,129 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR8
16:51:07,129 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR9
16:51:07,130 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR10
16:51:07,130 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR11M
16:51:07,137 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR11F
16:51:07,137 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR12M
16:51:07,137 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.AlbionRR12F
16:51:07,137 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR4
16:51:07,138 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR5
16:51:07,155 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR6
16:51:07,155 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR7
16:51:07,155 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR8
16:51:07,155 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR9
16:51:07,156 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR10
16:51:07,156 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR11M
16:51:07,156 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR11F
16:51:07,156 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR12M
16:51:07,157 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.HiberniaRR12F
16:51:07,157 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR4
16:51:07,163 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR5
16:51:07,164 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR6
16:51:07,164 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR7
16:51:07,164 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR8
16:51:07,164 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR9
16:51:07,182 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR10
16:51:07,183 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR11M
16:51:07,183 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR11F
16:51:07,183 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR12M
16:51:07,184 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.Scripts.MidgardRR12F
16:51:07,191 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.DuelMasterTitle
16:51:07,191 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.LoneEnforcerTitle
16:51:07,191 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.ElderTitle
16:51:07,192 - [MAIN] - DEBUG - DOL.GS.PlayerTitles.PlayerTitleMgr - loaded player title: DOL.GS.PlayerTitles.VeteranTitle
16:51:07,192 - [MAIN] - INFO - DOL.GS.PlayerTitles.PlayerTitleMgr - Loaded 72 player titles
16:51:07,209 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Player Titles Manager: 212
16:51:07,209 - [MAIN] - INFO - DOL.GS.GameServer - Player Titles Manager: True
16:51:07,209 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Player Titles Manager: 212
16:51:07,213 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.AnimationAction
16:51:07,214 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.PlaySoundAction
16:51:07,214 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TrainerWindowAction
16:51:07,215 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.AttackAction
16:51:07,219 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MonsterSpawnAction
16:51:07,219 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.SetMonsterPathAction
16:51:07,219 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.WalkToSpawnAction
16:51:07,220 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MonsterUnspawnAction
16:51:07,220 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MoveToAction
16:51:07,237 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.SetGuildNameAction
16:51:07,237 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.WalkToAction
16:51:07,238 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TimerAction
16:51:07,238 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.CustomTimerAction
16:51:07,238 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TeleportAction
16:51:07,245 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.MessageAction
16:51:07,246 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.CustomDialogAction
16:51:07,263 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.WhisperAction
16:51:07,263 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TalkAction
16:51:07,264 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TakeGoldAction
16:51:07,264 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.GiveGoldAction
16:51:07,264 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.GiveXPAction
16:51:07,265 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.ReplaceItemAction
16:51:07,283 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.DestroyItemAction
16:51:07,283 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.DropItemAction
16:51:07,283 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.TakeItemAction
16:51:07,283 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Behaviour.Actions.GiveItemAction
16:51:07,284 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.ClassRequirement
16:51:07,291 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RandomChanceRequirement
16:51:07,292 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RaceRequirement
16:51:07,309 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.LevelRequirement
16:51:07,309 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.HealthMaxRequirement
16:51:07,310 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.HealthRequirement
16:51:07,310 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GenderRequirement
16:51:07,310 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.ManaMaxRequirement
16:51:07,318 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.ManaRequirement
16:51:07,319 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EnduranceRequirement
16:51:07,319 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EncumbranceMaxRequirement
16:51:07,337 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EncumbranceRequirement
16:51:07,337 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GoldRequirement
16:51:07,338 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RegionRequirement
16:51:07,338 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RealmLevelRequirement
16:51:07,338 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RealmRequirement
16:51:07,345 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.DistanceRequirement
16:51:07,345 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GroupNumberRequirement
16:51:07,363 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GroupLevelRequirement
16:51:07,363 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.EquippedItemRequirement
16:51:07,364 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.GuildRequirement
16:51:07,364 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.RealmPointsRequirement
16:51:07,364 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Behaviour.Requirements.InventoryItemRequirement
16:51:07,373 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.ItemUsedTrigger
16:51:07,374 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.TimerTrigger
16:51:07,374 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.LeaveAreaTrigger
16:51:07,391 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.EnterAreaTrigger
16:51:07,391 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.PlayerKilledTrigger
16:51:07,392 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.EnemyDyingTrigger
16:51:07,392 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.EnemyKilledTrigger
16:51:07,392 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.GiveItemTrigger
16:51:07,400 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.WhisperTrigger
16:51:07,401 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Behaviour.Triggers.InteractTrigger
16:51:07,418 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.AbortQuestAction
16:51:07,419 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.FinishQuestAction
16:51:07,419 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.GiveQuestAction
16:51:07,419 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.IncreaseQuestStepAction
16:51:07,419 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.OfferQuestAbortAction
16:51:07,427 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.OfferQuestAction
16:51:07,427 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourAction: DOL.GS.Quests.Actions.SetQuestStepAction
16:51:07,427 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestCompletedRequirement
16:51:07,445 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestGivableRequirement
16:51:07,445 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestPendingRequirement
16:51:07,446 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourRequirement: DOL.GS.Quests.Requirements.QuestStepRequirement
16:51:07,446 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.AbortQuestTrigger
16:51:07,446 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.AcceptQuestTrigger
16:51:07,454 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.ContinueQuestTrigger
16:51:07,455 - [MAIN] - INFO - DOL.GS.Behaviour.BehaviourMgr - Registering BehaviourTrigger: DOL.GS.Quests.Triggers.DeclineQuestTrigger
16:51:07,527 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Behaviour Manager: 213
16:51:07,528 - [MAIN] - INFO - DOL.GS.GameServer - Behaviour Manager: True
16:51:07,528 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Behaviour Manager: 213
16:51:07,530 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.ArtifactEncounter
16:51:07,531 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.BaseQuest
16:51:07,531 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.ArtifactQuest
16:51:07,531 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.AHealersEmbrace
16:51:07,532 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.AHealersEmbrace
16:51:07,533 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Healer's Embrace
16:51:07,534 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.AlvarusLeggings
16:51:07,534 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.AlvarusLeggings
16:51:07,534 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Alvarus's Leggings
16:51:07,534 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ArmsOfTheWinds
16:51:07,535 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ArmsOfTheWinds
16:51:07,535 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Arms of the Winds
16:51:07,535 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.AtensShield
16:51:07,535 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.AtensShield
16:51:07,536 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Aten's Shield
16:51:07,536 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BandOfStars
16:51:07,536 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BandOfStars
16:51:07,536 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Band of Stars
16:51:07,537 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Battler
16:51:07,537 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Battler
16:51:07,537 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Battler
16:51:07,540 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BeltofOglidarsh
16:51:07,540 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BeltofOglidarsh
16:51:07,541 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Belt of Oglidarsh
16:51:07,558 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheMoon
16:51:07,558 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheMoon
16:51:07,559 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Belt of the Moon
16:51:07,559 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheSun
16:51:07,559 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BeltoftheSun
16:51:07,560 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Belt of the Sun
16:51:07,560 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.BracerofZoarkat
16:51:07,568 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.BracerofZoarkat
16:51:07,568 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Bracer of Zo'arkat
16:51:07,568 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Bruiser
16:51:07,586 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Bruiser
16:51:07,586 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Bruiser
16:51:07,587 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.CeremonialBracers
16:51:07,587 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.CeremonialBracers
16:51:07,588 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Ceremonial Bracers
16:51:07,588 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Cloudsong
16:51:07,588 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Cloudsong
16:51:07,588 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Cloudsong
16:51:07,594 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.CrocodileTearRing
16:51:07,594 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.CrocodileTearRing
16:51:07,595 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Crocodile Tear Ring
16:51:07,612 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.DreamSphere
16:51:07,612 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.DreamSphere
16:51:07,613 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Dream Sphere
16:51:07,613 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EggofYouth
16:51:07,613 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EggofYouth
16:51:07,614 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Egg of Youth
16:51:07,614 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EirenesHauberk
16:51:07,614 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EirenesHauberk
16:51:07,622 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Eirene's Chestpiece
16:51:07,622 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EnyaliosBoots
16:51:07,623 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EnyaliosBoots
16:51:07,640 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Enyalio's Boots
16:51:07,640 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ErinysCharm
16:51:07,641 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ErinysCharm
16:51:07,641 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Erinys Charm
16:51:07,641 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.EternalPlant
16:51:07,641 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.EternalPlant
16:51:07,641 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Eternal Plant
16:51:07,642 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.GoddessNecklace
16:51:07,649 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.GoddessNecklace
16:51:07,650 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Goddess Necklace
16:51:07,650 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.GuardOfValor
16:51:07,650 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.GuardOfValor
16:51:07,668 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Guard of Valor
16:51:07,668 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.HarpyFeatherCloak
16:51:07,669 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.HarpyFeatherCloak
16:51:07,669 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Harpy Feather Cloak
16:51:07,669 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.JacinasSash
16:51:07,669 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.JacinasSash
16:51:07,669 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Jacina's Sash
16:51:07,676 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.KalaresNecklace
16:51:07,676 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.KalaresNecklace
16:51:07,677 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Kalare's Necklace
16:51:07,694 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.MaddeningScalars
16:51:07,694 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.MaddeningScalars
16:51:07,695 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Maddening Scalars
16:51:07,695 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.MalicesAxe
16:51:07,695 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.MalicesAxe
16:51:07,696 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Malice's Axe
16:51:07,696 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.NightsShroudBracelet
16:51:07,704 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.NightsShroudBracelet
16:51:07,704 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Night's Shroud Bracelet
16:51:07,704 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.RingofFire
16:51:07,722 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.RingofFire
16:51:07,722 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Ring of Fire
16:51:07,722 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.RingofUnyieldingWill
16:51:07,722 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.RingofUnyieldingWill
16:51:07,723 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Ring of Unyielding Will
16:51:07,723 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ScorpionsTail
16:51:07,730 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ScorpionsTail
16:51:07,731 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact The Scorpions Tail
16:51:07,731 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ShadesOfMist
16:51:07,731 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ShadesOfMist
16:51:07,749 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Shades of Mist
16:51:07,750 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.ShieldOfKhaos
16:51:07,750 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.ShieldOfKhaos
16:51:07,751 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Shield of Khaos
16:51:07,751 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.Snatcher
16:51:07,751 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.Snatcher
16:51:07,751 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Snatcher
16:51:07,758 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.StaffofGod
16:51:07,758 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.StaffofGod
16:51:07,758 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Staff of the God
16:51:07,759 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.StoneofAtlantis
16:51:07,776 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.StoneofAtlantis
16:51:07,776 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Stone of Atlantis
16:51:07,777 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.TabletofAtlantis
16:51:07,777 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.TabletofAtlantis
16:51:07,777 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Tablet of Atlantis
16:51:07,778 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Artifacts.TartarosStaff
16:51:07,785 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.Artifacts.TartarosStaff
16:51:07,786 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactQuest - ARTIFACTQUEST: scholars is null for artifact Tartaros' Gift
16:51:07,786 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.ArtifactTurnInQuest
16:51:07,786 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Initialising quest: DOL.GS.Quests.Atlantis.ArtifactTurnInQuest
16:51:07,805 - [MAIN] - INFO - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Quest "Artifact Turn-in Quest" initializing ...
16:51:07,820 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Could not find Artifact Scholar Alaria, creating her ...
16:51:07,839 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Could not find Artifact Scholar Jarron, creating him ...
16:51:07,854 - [MAIN] - WARN - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Could not find Artifact Scholar Elmer, creating him ...
16:51:07,859 - [MAIN] - INFO - DOL.GS.Quests.Atlantis.ArtifactTurnInQuest - Quest "Artifact Turn-in Quest" initialized
16:51:07,859 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AFlask
16:51:07,860 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AHealersEmbrace
16:51:07,860 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AlvarusLeggings
16:51:07,860 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ArmsOfTheWinds
16:51:07,860 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AtensShield
16:51:07,861 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.AtlantisTablet
16:51:07,861 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BandOfStars
16:51:07,861 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Battler
16:51:07,861 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BeltofOglidarsh
16:51:07,862 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BeltoftheMoon
16:51:07,862 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BeltoftheSun
16:51:07,862 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BracerofZoarkat
16:51:07,862 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.BraggartsBow
16:51:07,863 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Bruiser
16:51:07,863 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CeremonialBracers
16:51:07,863 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Cloudsong
16:51:07,863 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CrocodilesTooth
16:51:07,863 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CrocodileTearRing
16:51:07,869 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CrownofZahur
16:51:07,869 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.CyclopsEyeShield
16:51:07,887 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.DreamSphere
16:51:07,888 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EerieDarknessStone
16:51:07,888 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EggOfYouth
16:51:07,888 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EirenesHauberk
16:51:07,888 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EnyaliosBoots
16:51:07,889 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ErinysCharm
16:51:07,889 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.EternalPlant
16:51:07,896 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.FlamedancersBoots
16:51:07,896 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.FoolsBow
16:51:07,896 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.FoppishSleeves
16:51:07,915 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GemofLostMemories
16:51:07,915 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GoddessNecklace
16:51:07,915 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GoldenScarabVest
16:51:07,916 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GoldenSpear
16:51:07,916 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.GuardOfValor
16:51:07,923 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.HarpyFeatherCloak
16:51:07,924 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.JacinasSash
16:51:07,924 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.KalaresNecklace
16:51:07,941 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.MaddeningScalars
16:51:07,942 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.MalicesAxe
16:51:07,942 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.MariashasSharkskinGloves
16:51:07,942 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.NailahsRobes
16:51:07,942 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.NightsShroudBracelet
16:51:07,943 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.OrionsBelt
16:51:07,951 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.PhoebusHarp
16:51:07,951 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.RingofDances
16:51:07,951 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.RingofFire
16:51:07,951 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.RingofUnyieldingWill
16:51:07,969 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ScepteroftheMeritorious
16:51:07,969 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ScorpionsTail
16:51:07,970 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ShadesOfMist
16:51:07,970 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.ShieldOfKhaos
16:51:07,970 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.SnakecharmersWeapon
16:51:07,978 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.Snatcher
16:51:07,978 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.SpearofKings
16:51:07,978 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.StaffofGod
16:51:07,995 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.StoneOfAtlantis
16:51:07,996 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.TartarosStaff
16:51:07,996 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.TraitorsDagger
16:51:07,996 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.TraldorsOracle
16:51:07,996 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.WingedHelm
16:51:07,997 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Atlantis.Encounters.WingsDive
16:51:08,013 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.ObeliskCredit
16:51:08,014 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.InconnuCrypt
16:51:08,014 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.KoboldUndercity
16:51:08,014 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Catacombs.Obelisks.SharLabyrinth
16:51:08,015 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.DataQuest
16:51:08,015 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.RewardQuest
16:51:08,015 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AFewRepairs
16:51:08,023 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AfterTheAccident
16:51:08,023 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AgainstTheGrain
16:51:08,023 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Aidingguardalakyrr
16:51:08,024 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AMessageToTheManes
16:51:08,024 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.AndrewsSkins
16:51:08,041 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ANewHeroesWelcome
16:51:08,041 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ArgussArrows
16:51:08,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ArleighsAssistant
16:51:08,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ArrowsForYettaFletcher
16:51:08,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BaseFrederickQuest
16:51:08,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BeginningOfWar
16:51:08,042 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BoarStew
16:51:08,043 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BoulderlingBalm
16:51:08,043 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BreakingTheBandits
16:51:08,043 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.BuildingABetterBow
16:51:08,051 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Cellarinfestation
16:51:08,051 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.CemmethsOrders
16:51:08,051 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.childsplay
16:51:08,051 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.CityOfCamelot
16:51:08,051 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ClericMulgrut
16:51:08,069 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Collection
16:51:08,069 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Culmination
16:51:08,069 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Disenchanted
16:51:08,069 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.DredgeUpAPledge
16:51:08,069 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Frontiers
16:51:08,070 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GodelevasNeed
16:51:08,070 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GreenerPastures
16:51:08,070 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GreetingsArmsman
16:51:08,070 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.GreetingsPaladin
16:51:08,071 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HalfOgreAllMan
16:51:08,077 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HeartOfSephucoth
16:51:08,081 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HuntForArachneida
16:51:08,081 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.HuntForSlith
16:51:08,081 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ImportantDelivery
16:51:08,082 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.IreFairyIre
16:51:08,095 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.LawrencesOil
16:51:08,095 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.MarlinsSalesPitch
16:51:08,096 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.MovementAndInteraction
16:51:08,096 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.NoHopeForTheHopeful
16:51:08,096 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Nuisances
16:51:08,096 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.RecruitingNothingButTrouble
16:51:08,097 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.RevengeTheOtherWhiteMeat
16:51:08,097 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ShakenSquire
16:51:08,097 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.TombWithAView
16:51:08,105 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.ToReachTheBreach
16:51:08,105 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.TraitorInCotswold
16:51:08,105 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.TreviansBestFriend
16:51:08,105 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.WhenBloodSpeaks
16:51:08,105 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.WhenGoodBrowniesGoBad
16:51:08,123 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.WolfPeltCloak
16:51:08,123 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.YdeniasCrush
16:51:08,123 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Academy_50
16:51:08,123 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Church_50
16:51:08,124 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Defenders_50
16:51:08,124 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Albion.Shadows_50
16:51:08,124 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Examples.HelpSirQuait
16:51:08,124 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.WingsOfTheIsleHibernia
16:51:08,125 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.BaseAddrirQuest
16:51:08,125 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.BasicsOfCombat
16:51:08,132 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.BonesToBlades
16:51:08,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.childsplay
16:51:08,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.CityOfTirnaNog
16:51:08,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.ImportantDelivery
16:51:08,133 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.MagicalBacklash
16:51:08,150 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.MovementAndInteraction
16:51:08,151 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Nuisances
16:51:08,151 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.SearchForKnowledge
16:51:08,151 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.ToReachTheBreach
16:51:08,151 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.TraitorInMagMell
16:51:08,151 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Essence_50
16:51:08,152 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Focus_50
16:51:08,152 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Hibernia.Harmony_50
16:51:08,152 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Amorasaidmistyc
16:51:08,152 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Abearybadproblem
16:51:08,159 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.badfood
16:51:08,159 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.BaseDalikorQuest
16:51:08,159 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Bearskins
16:51:08,160 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.BeginningOfWar
16:51:08,160 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.childsplay
16:51:08,177 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.CityOfJordheim
16:51:08,177 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Collection
16:51:08,178 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Culmination
16:51:08,178 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.essenceoflife
16:51:08,178 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Frontiers
16:51:08,178 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.ImportantDelivery
16:51:08,179 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Learnthehunt
16:51:08,179 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.maulerinvasion
16:51:08,179 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.meadrun
16:51:08,179 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.MovementAndInteraction
16:51:08,187 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Nuisances
16:51:08,187 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.rindaslostkey
16:51:08,187 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.StolenEggs
16:51:08,187 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.sveabonehiltsword
16:51:08,188 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.thebirthdaygift
16:51:08,205 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.TraitorInMularn
16:51:08,205 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.trialofstrength
16:51:08,205 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Rogue_50
16:51:08,205 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Mystic_50
16:51:08,205 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Seer_50
16:51:08,206 - [MAIN] - INFO - DOL.GS.Quests.QuestMgr - Registering quest: DOL.GS.Quests.Midgard.Viking_50
16:51:08,206 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory Quest Manager: 212
16:51:08,206 - [MAIN] - INFO - DOL.GS.GameServer - Quest Manager: True
16:51:08,206 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory Quest Manager: 212
16:51:08,227 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Viking_50 - Quest "An End to the Daggers" initializing ...
16:51:08,273 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Viking_50 - Could not find Ydenia , creating it ...
16:51:08,346 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Viking_50 - Quest "An End to the Daggers" initialized
16:51:08,352 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Seer_50 - Quest "The Desire of a God" initializing ...
16:51:08,384 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Seer_50 - Could not find Loken , creating it ...
16:51:08,424 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Seer_50 - Quest "The Desire of a God" initialized
16:51:08,434 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Mystic_50 - Quest "Saving the Clan" initializing ...
16:51:08,466 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Mystic_50 - Could not find Kelic , creating it ...
16:51:08,515 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Mystic_50 - Quest "Saving the Clan" initialized
16:51:08,522 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Rogue_50 - Quest "War Concluded" initializing ...
16:51:08,553 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Rogue_50 - Could not find Oona , creating it ...
16:51:08,594 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Rogue_50 - Quest "War Concluded" initialized
16:51:08,599 - [MAIN] - INFO - DOL.GS.Quests.Midgard.trialofstrength - Quest "Trial of Strength" initializing ...
16:51:08,614 - [MAIN] - WARN - DOL.GS.Quests.Midgard.trialofstrength - Could not find Torold Sterkkriger, creating ...
16:51:08,630 - [MAIN] - WARN - DOL.GS.Quests.Midgard.trialofstrength - Could not find Jorund Bruttstein, creating ...
16:51:08,652 - [MAIN] - INFO - DOL.GS.Quests.Midgard.trialofstrength - Quest "Trial of Strength" initialized
16:51:08,656 - [MAIN] - INFO - DOL.GS.Quests.Midgard.TraitorInMularn - Quest "Traitor in Mularn" initializing ...
16:51:08,696 - [MAIN] - INFO - DOL.GS.Quests.Midgard.TraitorInMularn - Quest "Traitor in Mularn" initialized
16:51:08,702 - [MAIN] - INFO - DOL.GS.Quests.Midgard.thebirthdaygift - Quest "The Birthday Gift" initializing ...
16:51:08,737 - [MAIN] - INFO - DOL.GS.Quests.Midgard.thebirthdaygift - Quest "The Birthday Gift" initialized
16:51:08,742 - [MAIN] - INFO - DOL.GS.Quests.Midgard.sveabonehiltsword - Quest "Sveabone Hilt Sword" initializing ...
16:51:08,763 - [MAIN] - INFO - DOL.GS.Quests.Midgard.sveabonehiltsword - Quest "Sveabone Hilt Sword" initialized
16:51:08,767 - [MAIN] - INFO - DOL.GS.Quests.Midgard.StolenEggs - Quest "Stolen Eggs" initializing ...
16:51:08,825 - [MAIN] - INFO - DOL.GS.Quests.Midgard.StolenEggs - Quest "Stolen Eggs" initialized
16:51:08,831 - [MAIN] - INFO - DOL.GS.Quests.Midgard.rindaslostkey - Quest "Rinda's Lost Key" initializing ...
16:51:08,869 - [MAIN] - INFO - DOL.GS.Quests.Midgard.rindaslostkey - Quest "Rinda's Lost Key" initialized
16:51:08,872 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Nuisances - Quest "Nuisances (Mid)" initializing ...
16:51:08,894 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Nuisances - Quest "Nuisances (Mid)" initialized
16:51:08,897 - [MAIN] - INFO - DOL.GS.Quests.Midgard.MovementAndInteraction - Quest "Movement and Interaction" initializing ...
16:51:08,912 - [MAIN] - WARN - DOL.GS.Quests.Midgard.MovementAndInteraction - Could not find Jarl Thorsa, creating him ...
16:51:08,928 - [MAIN] - INFO - DOL.GS.Quests.Midgard.MovementAndInteraction - Quest "Movement and Interaction" initialized
16:51:08,932 - [MAIN] - INFO - DOL.GS.Quests.Midgard.meadrun - Quest "Mead Run" initializing ...
16:51:08,961 - [MAIN] - WARN - DOL.GS.Quests.Midgard.meadrun - Could not find Guard Olja, creating ...
16:51:08,966 - [MAIN] - INFO - DOL.GS.Quests.Midgard.meadrun - Quest "Mead Run" initialized
16:51:08,971 - [MAIN] - INFO - DOL.GS.Quests.Midgard.maulerinvasion - Quest "Mauler Invasion" initializing ...
16:51:08,991 - [MAIN] - INFO - DOL.GS.Quests.Midgard.maulerinvasion - Quest "Mauler Invasion" initialized
16:51:08,994 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Learnthehunt - Quest "Learn the hunt" initializing ...
16:51:09,012 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Learnthehunt - Quest "Learn the hunt" initialized
16:51:09,016 - [MAIN] - INFO - DOL.GS.Quests.Midgard.ImportantDelivery - Quest "Important Delivery (Mid)" initializing ...
16:51:09,100 - [MAIN] - INFO - DOL.GS.Quests.Midgard.ImportantDelivery - Quest "Important Delivery (Mid)" initialized
16:51:09,106 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Frontiers - Quest "Frontiers (Mid)" initializing ...
16:51:09,135 - [MAIN] - WARN - DOL.GS.Quests.Midgard.Frontiers - Could not find Stor Gothi Annark, creating ...
16:51:09,182 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Frontiers - Quest "Frontiers (Mid)" initialized
16:51:09,187 - [MAIN] - INFO - DOL.GS.Quests.Midgard.essenceoflife - Quest "Essence of Life" initializing ...
16:51:09,204 - [MAIN] - WARN - DOL.GS.Quests.Midgard.essenceoflife - Could not find Ambient Rat Statua, creating ...
16:51:09,220 - [MAIN] - WARN - DOL.GS.Quests.Midgard.essenceoflife - Could not find Ballach, creating ...
16:51:09,228 - [MAIN] - INFO - DOL.GS.Quests.Midgard.essenceoflife - Quest "Essence of Life" initialized
16:51:09,233 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Culmination - Quest "Culmination (Mid)" initializing ...
16:51:09,275 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Culmination - Quest "Culmination (Mid)" initialized
16:51:09,279 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Collection - Quest "Collection (Mid)" initializing ...
16:51:09,349 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Collection - Quest "Collection (Mid)" initialized
16:51:09,354 - [MAIN] - INFO - DOL.GS.Quests.Midgard.CityOfJordheim - Quest "City of Jordheim" initializing ...
16:51:09,409 - [MAIN] - INFO - DOL.GS.Quests.Midgard.CityOfJordheim - Quest "City of Jordheim" initialized
16:51:09,426 - [MAIN] - INFO - DOL.GS.Quests.Midgard.childsplay - Quest "Child's Play" (Mid) initializing ...
16:51:09,473 - [MAIN] - INFO - DOL.GS.Quests.Midgard.childsplay - Quest "Child's Play" initialized
16:51:09,480 - [MAIN] - INFO - DOL.GS.Quests.Midgard.BeginningOfWar - Quest "Beginning of War (Mid)" initializing ...
16:51:09,509 - [MAIN] - WARN - DOL.GS.Quests.Midgard.BeginningOfWar - Could not find Master Briedi, creating him ...
16:51:09,542 - [MAIN] - INFO - DOL.GS.Quests.Midgard.BeginningOfWar - Quest "Beginning of War (Mid)" initialized
16:51:09,546 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Bearskins - Quest "Bear Skins" initializing ...
16:51:09,564 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Bearskins - Quest "Bear Skins" initialized
16:51:09,568 - [MAIN] - INFO - DOL.GS.Quests.Midgard.badfood - Quest "Bad Food" initializing ...
16:51:09,583 - [MAIN] - WARN - DOL.GS.Quests.Midgard.badfood - Could not find Pedra, creating ...
16:51:09,598 - [MAIN] - WARN - DOL.GS.Quests.Midgard.badfood - Could not find Kedra, creating ...
16:51:09,601 - [MAIN] - INFO - DOL.GS.Quests.Midgard.badfood - Quest "Bad Food" initialized
16:51:09,606 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Abearybadproblem - Quest "A Beary Bad Problem" initializing ...
16:51:09,621 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Abearybadproblem - Quest "A Beary Bad Problem" initialized
16:51:09,627 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Amorasaidmistyc - Quest "Amora's Aid for Mistyc" initializing ...
16:51:09,673 - [MAIN] - INFO - DOL.GS.Quests.Midgard.Amorasaidmistyc - Quest "Amora's Aid for Mistyc" initialized
16:51:09,701 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Harmony_50 - Quest "The Horn Twin" initializing ...
16:51:09,733 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.Harmony_50 - Could not find Cailean , creating it ...
16:51:09,810 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Harmony_50 - Quest "The Horn Twin" initialized
16:51:09,820 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Focus_50 - Quest "Unnatural Powers" initializing ...
16:51:09,852 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.Focus_50 - Could not find GreenMaw , creating it ...
16:51:09,908 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Focus_50 - Quest "Unnatural Powers" initialized
16:51:09,919 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Essence_50 - Quest "The Moonstone Twin" initializing ...
16:51:09,950 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.Essence_50 - Could not find Caithor , creating it ...
16:51:09,995 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Essence_50 - Quest "The Moonstone Twin" initialized
16:51:09,999 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.TraitorInMagMell - Quest "Traitor in Mag Mell" initializing ...
16:51:10,035 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.TraitorInMagMell - Quest "Traitor in Mag Mell" initialized
16:51:10,037 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ToReachTheBreach - Quest "To Reach the Breach" initializing ...
16:51:10,061 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ToReachTheBreach - Quest "To Reach the Breach" initialized
16:51:10,064 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.SearchForKnowledge - Quest "Search For Knowledge" initializing ...
16:51:10,099 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.SearchForKnowledge - Quest "Search For Knowledge" initialized
16:51:10,102 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Nuisances - Quest "Nuisances (Hib)" initializing ...
16:51:10,119 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.Nuisances - Quest "Nuisances (Hib)" initialized
16:51:10,122 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MovementAndInteraction - Quest "Movement and Interaction" initializing ...
16:51:10,136 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.MovementAndInteraction - Could not find Chieftess Cormyra, creating her ...
16:51:10,152 - [MAIN] - WARN - DOL.GS.Quests.Hibernia.MovementAndInteraction - Could not find Master Gethin, creating him ...
16:51:10,153 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MovementAndInteraction - Quest "Movement and Interaction" initialized
16:51:10,155 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MagicalBacklash - Quest "Magical Backlash" initializing ...
16:51:10,178 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.MagicalBacklash - Quest "Magical Backlash" initialized
16:51:10,182 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ImportantDelivery - Quest "Important Delivery (Hib)" initializing ...
16:51:10,253 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.ImportantDelivery - Quest "Important Delivery (Hib)" initialized
16:51:10,257 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.CityOfTirnaNog - Quest "City of Tir na Nog" initializing ...
16:51:10,328 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.CityOfTirnaNog - Quest "City of Tir na Nog" initialized
16:51:10,344 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.childsplay - Quest "Child's Play" (Hib) initializing ...
16:51:10,393 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.childsplay - Quest "Child's Play" (Hib) initialized
16:51:10,398 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BonesToBlades - Quest "Bones to Blades" initializing ...
16:51:10,433 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BonesToBlades - Quest "Bones to Blades" initialized
16:51:10,437 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BasicsOfCombat - Quest "Basics of Combat" initializing ...
16:51:10,497 - [MAIN] - ERROR - DOL.GS.Behaviour.AbstractAction`2 - Not nullable parameter was null, expected type is CustomDialogResponsefor =CustomDialogAction.
Recived parameter was
16:51:10,498 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.BasicsOfCombat - Quest "Basics of Combat" initialized
16:51:10,501 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.WingsOfTheIsleHibernia - Quest "Wings of the Isle" initializing ...
16:51:10,533 - [MAIN] - INFO - DOL.GS.Quests.Hibernia.WingsOfTheIsleHibernia - Quest "Wings of the Isle" initialized
16:51:10,539 - [MAIN] - WARN - DOL.GS.Ianetor - Loading Master Level 1: Fire Island. Spawned Ianetor's.
16:51:10,543 - [MAIN] - INFO - DOL.GS.Quests.Examples.HelpSirQuait - Quest "Help Sir Quait to find his sword" initializing ...
16:51:10,574 - [MAIN] - WARN - DOL.GS.Quests.Examples.HelpSirQuait - Could not find Evil Thief of the Shadowclan, creating ...
16:51:10,578 - [MAIN] - INFO - DOL.GS.Quests.Examples.HelpSirQuait - Quest "Help Sir Quait to find his sword" initialized
16:51:10,601 - [MAIN] - INFO - DOL.GS.Quests.Albion.Shadows_50 - Quest "Feast of the Decadent" initializing ...
16:51:10,688 - [MAIN] - INFO - DOL.GS.Quests.Albion.Shadows_50 - Quest "Feast of the Decadent" initialized
16:51:10,703 - [MAIN] - INFO - DOL.GS.Quests.Albion.Defenders_50 - Quest "Feast of the Decadent" initializing ...
16:51:10,784 - [MAIN] - INFO - DOL.GS.Quests.Albion.Defenders_50 - Quest "Feast of the Decadent" initialized
16:51:10,792 - [MAIN] - INFO - DOL.GS.Quests.Albion.Church_50 - Quest "Passage to Eternity" initializing ...
16:51:10,850 - [MAIN] - INFO - DOL.GS.Quests.Albion.Church_50 - Quest "Passage to Eternity" initialized
16:51:10,863 - [MAIN] - INFO - DOL.GS.Quests.Albion.Academy_50 - Quest "Symbol of the Broken" initializing ...
16:51:10,894 - [MAIN] - WARN - DOL.GS.Quests.Albion.Academy_50 - Could not find Morgana , creating it ...
16:51:10,911 - [MAIN] - WARN - DOL.GS.Quests.Albion.Academy_50 - Could not find Bechard , creating it ...
16:51:10,928 - [MAIN] - WARN - DOL.GS.Quests.Albion.Academy_50 - Could not find Silcharde , creating it ...
16:51:10,962 - [MAIN] - INFO - DOL.GS.Quests.Albion.Academy_50 - Quest "Symbol of the Broken" initialized
16:51:10,965 - [MAIN] - INFO - DOL.GS.Quests.Albion.YdeniasCrush - Quest "Ydenia's Crush" initializing ...
16:51:11,001 - [MAIN] - INFO - DOL.GS.Quests.Albion.YdeniasCrush - Quest "Ydenia's Crush" initialized
16:51:11,004 - [MAIN] - INFO - DOL.GS.Quests.Albion.WolfPeltCloak - Quest "Wolf Pelt Cloak" initializing ...
16:51:11,052 - [MAIN] - INFO - DOL.GS.Quests.Albion.WolfPeltCloak - Quest "Wolf Pelt Cloak" initialized
16:51:11,054 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenGoodBrowniesGoBad - Quest "When Good Brownies Go Bad" initializing ...
16:51:11,076 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenGoodBrowniesGoBad - Quest "When Good Brownies Go Bad" initialized
16:51:11,077 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenBloodSpeaks - Quest "When Blood Speaks" initializing ...
16:51:11,100 - [MAIN] - INFO - DOL.GS.Quests.Albion.WhenBloodSpeaks - Quest "When Blood Speaks" initialized
16:51:11,107 - [MAIN] - INFO - DOL.GS.Quests.Albion.TreviansBestFriend - Quest "Trevian's best Friend" initializing ...
16:51:11,154 - [MAIN] - WARN - DOL.GS.Quests.Albion.TreviansBestFriend - Could not find Mob Bandit Abductor Leader, creating him ...
16:51:11,159 - [MAIN] - WARN - DOL.GS.Quests.Albion.TreviansBestFriend - Could not find Mob Bandit Abductor Henchman, creating him ...
16:51:11,160 - [MAIN] - WARN - DOL.GS.Quests.Albion.TreviansBestFriend - Could not find Mob Bandit Abductor Henchman, creating him ...
16:51:11,182 - [MAIN] - INFO - DOL.GS.Quests.Albion.TreviansBestFriend - Quest "Trevian's best Friend" initialized
16:51:11,186 - [MAIN] - INFO - DOL.GS.Quests.Albion.TraitorInCotswold - Quest "Traitor in Cotswold" initializing ...
16:51:11,221 - [MAIN] - INFO - DOL.GS.Quests.Albion.TraitorInCotswold - Quest "Traitor in Cotswold" initialized
16:51:11,223 - [MAIN] - INFO - DOL.GS.Quests.Albion.ToReachTheBreach - Quest "To Reach the Breach" initializing ...
16:51:11,240 - [MAIN] - INFO - DOL.GS.Quests.Albion.ToReachTheBreach - Quest "To Reach the Breach" initialized
16:51:11,242 - [MAIN] - INFO - DOL.GS.Quests.Albion.TombWithAView - Quest "Tomb With A View" initializing ...
16:51:11,265 - [MAIN] - INFO - DOL.GS.Quests.Albion.TombWithAView - Quest "Tomb With A View" initialized
16:51:11,268 - [MAIN] - INFO - DOL.GS.Quests.Albion.ShakenSquire - Quest "Shaken Squire" initializing ...
16:51:11,298 - [MAIN] - WARN - DOL.GS.Quests.Albion.ShakenSquire - Could not find Squire Galune, creating him ...
16:51:11,299 - [MAIN] - WARN - DOL.GS.Quests.Albion.ShakenSquire - Could not find small spider, creating him ...
16:51:11,300 - [MAIN] - INFO - DOL.GS.Quests.Albion.ShakenSquire - Quest "Shaken Squire" initialized
16:51:11,301 - [MAIN] - INFO - DOL.GS.Quests.Albion.RevengeTheOtherWhiteMeat - Quest "Revenge, the Other White Meat" initializing ...
16:51:11,316 - [MAIN] - INFO - DOL.GS.Quests.Albion.RevengeTheOtherWhiteMeat - Quest "Revenge, the Other White Meat" initialized
16:51:11,318 - [MAIN] - INFO - DOL.GS.Quests.Albion.RecruitingNothingButTrouble - Quest "Recruiting Nothing But Trouble" initializing ...
16:51:11,343 - [MAIN] - INFO - DOL.GS.Quests.Albion.RecruitingNothingButTrouble - Quest "Recruiting Nothing But Trouble" initialized
16:51:11,346 - [MAIN] - INFO - DOL.GS.Quests.Albion.Nuisances - Quest "Nuisances" initializing ...
16:51:11,364 - [MAIN] - INFO - DOL.GS.Quests.Albion.Nuisances - Quest "Nuisances" initialized
16:51:11,365 - [MAIN] - INFO - DOL.GS.Quests.Albion.NoHopeForTheHopeful - Quest "No Hope For The Hopeful" initializing ...
16:51:11,391 - [MAIN] - INFO - DOL.GS.Quests.Albion.NoHopeForTheHopeful - Quest "No Hope For The Hopeful" initialized
16:51:11,394 - [MAIN] - INFO - DOL.GS.Quests.Albion.MovementAndInteraction - Quest "Movement and Interaction" initializing ...
16:51:11,409 - [MAIN] - WARN - DOL.GS.Quests.Albion.MovementAndInteraction - Could not find Lord Stamford, creating him ...
16:51:11,426 - [MAIN] - INFO - DOL.GS.Quests.Albion.MovementAndInteraction - Quest "Movement and Interaction" initialized
16:51:11,428 - [MAIN] - INFO - DOL.GS.Quests.Albion.MarlinsSalesPitch - Quest "Marlin's Sales Pitch" initializing ...
16:51:11,445 - [MAIN] - INFO - DOL.GS.Quests.Albion.MarlinsSalesPitch - Quest "Marlin's Sales Pitch" initialized
16:51:11,448 - [MAIN] - INFO - DOL.GS.Quests.Albion.LawrencesOil - Quest "Lawrence's Oil" initializing ...
16:51:11,466 - [MAIN] - INFO - DOL.GS.Quests.Albion.LawrencesOil - Quest "Lawrence's Oil" initialized
16:51:11,471 - [MAIN] - INFO - DOL.GS.Quests.Albion.IreFairyIre - Quest "Ire Fairy Ire" initializing ...
16:51:11,538 - [MAIN] - WARN - DOL.GS.Quests.Albion.IreFairyIre - Could not find Fairy Dragonfly Handler, creating ...
16:51:17,284 - [MAIN] - INFO - DOL.GS.Quests.Albion.IreFairyIre - Quest "Ire Fairy Ire" initialized
16:51:17,285 - [MAIN] - WARN - DOL.WeakMulticastDelegate - InvokeSafe took 5819ms! method: DOL.GS.Quests.Albion.IreFairyIre.ScriptLoaded target: null
16:51:17,289 - [MAIN] - INFO - DOL.GS.Quests.Albion.ImportantDelivery - Quest "Important Delivery" initializing ...
16:51:17,369 - [MAIN] - INFO - DOL.GS.Quests.Albion.ImportantDelivery - Quest "Important Delivery" initialized
16:51:17,371 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForSlith - Quest "Hunt for Slith" initializing ...
16:51:17,389 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForSlith - Quest "Hunt for Slith" initialized
16:51:17,393 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForArachneida - Quest "The Hunt for Arachneida" initializing ...
16:51:17,437 - [MAIN] - INFO - DOL.GS.Quests.Albion.HuntForArachneida - Quest "The Hunt for Arachneida" initialized
16:51:17,441 - [MAIN] - INFO - DOL.GS.Quests.Albion.HeartOfSephucoth - Quest "Heart of Sephucoth" initializing ...
16:51:17,461 - [MAIN] - INFO - DOL.GS.Quests.Albion.HeartOfSephucoth - Quest "Heart of Sephucoth" initialized
16:51:17,465 - [MAIN] - INFO - DOL.GS.Quests.Albion.HalfOgreAllMan - Quest "Half Ogre, All Man" initializing ...
16:51:17,494 - [MAIN] - WARN - DOL.GS.Quests.Albion.HalfOgreAllMan - Could not find Eileen Morton, creating him ...
16:51:17,528 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsPaladin - Quest "QuestTitle" initializing ...
16:51:17,558 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsPaladin - Quest "QuestTitle" initialized
16:51:17,560 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsArmsman - Quest "QuestTitle" initializing ...
16:51:17,582 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreetingsArmsman - Quest "QuestTitle" initialized
16:51:17,585 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreenerPastures - Quest "Greener Pastures" initializing ...
16:51:17,602 - [MAIN] - INFO - DOL.GS.Quests.Albion.GreenerPastures - Quest "Greener Pastures" initialized
16:51:17,605 - [MAIN] - INFO - DOL.GS.Quests.Albion.GodelevasNeed - Quest "Godeleva's Need" initializing ...
16:51:17,627 - [MAIN] - INFO - DOL.GS.Quests.Albion.GodelevasNeed - Quest "Godeleva's Need" initialized
16:51:17,632 - [MAIN] - INFO - DOL.GS.Quests.Albion.Frontiers - Quest "Frontiers" initializing ...
16:51:17,699 - [MAIN] - INFO - DOL.GS.Quests.Albion.Frontiers - Quest "Frontiers" initialized
16:51:17,701 - [MAIN] - INFO - DOL.GS.Quests.Albion.DredgeUpAPledge - Quest "Dredge Up a Pledge" initializing ...
16:51:17,717 - [MAIN] - INFO - DOL.GS.Quests.Albion.DredgeUpAPledge - Quest "Dredge Up a Pledge" initialized
16:51:17,718 - [MAIN] - INFO - DOL.GS.Quests.Albion.Disenchanted - Quest "Disenchanted" initializing ...
16:51:17,749 - [MAIN] - INFO - DOL.GS.Quests.Albion.Disenchanted - Quest "Disenchanted" initialized
16:51:17,754 - [MAIN] - INFO - DOL.GS.Quests.Albion.Culmination - Quest "Culmination" initializing ...
16:51:17,786 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find Queen Tatiana, creating ...
16:51:17,787 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:51:17,787 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:51:17,788 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:51:17,788 - [MAIN] - WARN - DOL.GS.Quests.Albion.Culmination - Could not find ire fairy sorceress, creating ...
16:51:17,795 - [MAIN] - INFO - DOL.GS.Quests.Albion.Culmination - Quest "Culmination" initialized
16:51:17,799 - [MAIN] - INFO - DOL.GS.Quests.Albion.Collection - Quest "Collection" initializing ...
16:51:17,830 - [MAIN] - WARN - DOL.GS.Quests.Albion.Collection - Could not find Palearis, creating her ...
16:51:17,849 - [MAIN] - WARN - DOL.GS.Quests.Albion.Collection - Could not find Bohad, creating her ...
16:51:17,867 - [MAIN] - WARN - DOL.GS.Quests.Albion.Collection - Could not find Fluvale, creating her ...
16:51:17,871 - [MAIN] - INFO - DOL.GS.Quests.Albion.Collection - Quest "Collection" initialized
16:51:17,874 - [MAIN] - INFO - DOL.GS.Quests.Albion.ClericMulgrut - Quest "Cleric Mulgrut" initializing ...
16:51:17,891 - [MAIN] - INFO - DOL.GS.Quests.Albion.ClericMulgrut - Quest "Cleric Mulgrut" initialized
16:51:17,894 - [MAIN] - INFO - DOL.GS.Quests.Albion.CityOfCamelot - Quest "City of Camelot" initializing ...
16:51:17,946 - [MAIN] - INFO - DOL.GS.Quests.Albion.CityOfCamelot - Quest "City of Camelot" initialized
16:51:17,961 - [MAIN] - INFO - DOL.GS.Quests.Albion.childsplay - Quest "Child's Play" (Alb) initializing ...
16:51:18,007 - [MAIN] - INFO - DOL.GS.Quests.Albion.childsplay - Quest "Child's Play" initialized
16:51:18,009 - [MAIN] - INFO - DOL.GS.Quests.CemmethsOrders - Quest "Cemmeth's Orders" initializing ...
16:51:18,035 - [MAIN] - INFO - DOL.GS.Quests.CemmethsOrders - Quest "Cemmeth's Orders" initialized
16:51:18,040 - [MAIN] - INFO - DOL.GS.Quests.Albion.Cellarinfestation - Quest "Cellar Infestation" initializing ...
16:51:18,054 - [MAIN] - WARN - DOL.GS.Quests.Albion.Cellarinfestation - Could not find Mistress Laws, creating ...
16:51:18,073 - [MAIN] - INFO - DOL.GS.Quests.Albion.Cellarinfestation - Quest "Cellar Infestation" initialized
16:51:18,075 - [MAIN] - INFO - DOL.GS.Quests.Albion.BuildingABetterBow - Quest "Building a Better Bow" initializing ...
16:51:18,095 - [MAIN] - INFO - DOL.GS.Quests.Albion.BuildingABetterBow - Quest "Building a Better Bow" initialized
16:51:18,096 - [MAIN] - INFO - DOL.GS.Quests.Albion.BreakingTheBandits - Quest "Breaking the Bandits" initializing ...
16:51:18,128 - [MAIN] - INFO - DOL.GS.Quests.Albion.BreakingTheBandits - Quest "Breaking the Bandits" initialized
16:51:18,129 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoulderlingBalm - Quest "Boulderling Balm" initializing ...
16:51:18,147 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoulderlingBalm - Quest "Boulderling Balm" initialized
16:51:18,149 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoarStew - Quest "Boar Stew" initializing ...
16:51:18,166 - [MAIN] - INFO - DOL.GS.Quests.Albion.BoarStew - Quest "Boar Stew" initialized
16:51:18,171 - [MAIN] - INFO - DOL.GS.Quests.Albion.BeginningOfWar - Quest "Beginning of War" initializing ...
16:51:18,200 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find Master Dunwyn, creating ...
16:51:18,217 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find Princess Obera, creating ...
16:51:18,218 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:51:18,219 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:51:18,219 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:51:18,220 - [MAIN] - WARN - DOL.GS.Quests.Albion.BeginningOfWar - Could not find ire fairy sorceress, creating ...
16:51:18,237 - [MAIN] - INFO - DOL.GS.Quests.Albion.BeginningOfWar - Quest "Beginning of War" initialized
16:51:18,239 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArrowsForYettaFletcher - Quest "Arrows for Yetta Fletcher" initializing ...
16:51:18,255 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArrowsForYettaFletcher - Quest "Arrows for Yetta Fletcher" initialized
16:51:18,257 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArleighsAssistant - Quest "Arleigh's Assistant" initializing ...
16:51:18,278 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArleighsAssistant - Quest "Arleigh's Assistant" initialized
16:51:18,281 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArgussArrows - Quest "Argus's Arrows" initializing ...
16:51:18,299 - [MAIN] - INFO - DOL.GS.Quests.Albion.ArgussArrows - Quest "Argus's Arrows" initialized
16:51:18,301 - [MAIN] - INFO - DOL.GS.Quests.Albion.ANewHeroesWelcome - Quest "A New Heroes Welcome" initializing ...
16:51:18,334 - [MAIN] - INFO - DOL.GS.Quests.Albion.ANewHeroesWelcome - Quest "A New Heroes Welcome" initialized
16:51:18,338 - [MAIN] - INFO - DOL.GS.Quests.Albion.AndrewsSkins - Quest "Andrew's Skins" initializing ...
16:51:18,385 - [MAIN] - INFO - DOL.GS.Quests.Albion.AndrewsSkins - Quest "Andrew's Skins" initialized
16:51:18,387 - [MAIN] - INFO - DOL.GS.Quests.Albion.AMessageToTheManes - Quest "A Message to the Manes" initializing ...
16:51:18,401 - [MAIN] - INFO - DOL.GS.Quests.Albion.AMessageToTheManes - Quest "A Message to the Manes" initialized
16:51:18,410 - [MAIN] - INFO - DOL.GS.Quests.Albion.Aidingguardalakyrr - Quest "Aiding Guard Alakyrr" initializing ...
16:51:18,424 - [MAIN] - WARN - DOL.GS.Quests.Albion.Aidingguardalakyrr - Could not find Guard Alakyrr, creating ...
16:51:18,437 - [MAIN] - INFO - DOL.GS.Quests.Albion.Aidingguardalakyrr - Quest "Aiding Guard Alakyrr" initialized
16:51:18,439 - [MAIN] - INFO - DOL.GS.Quests.Albion.AgainstTheGrain - Quest "Against the Grain" initializing ...
16:51:18,468 - [MAIN] - INFO - DOL.GS.Quests.Albion.AgainstTheGrain - Quest "Against the Grain" initialized
16:51:18,469 - [MAIN] - INFO - DOL.GS.Quests.Albion.AfterTheAccident - Quest "After The Accident" initializing ...
16:51:18,493 - [MAIN] - INFO - DOL.GS.Quests.Albion.AfterTheAccident - Quest "After The Accident" initialized
16:51:18,496 - [MAIN] - INFO - DOL.GS.Quests.Albion.AFewRepairs - Quest "A Few Repairs" initializing ...
16:51:18,528 - [MAIN] - INFO - DOL.GS.Quests.Albion.AFewRepairs - Quest "A Few Repairs" initialized
16:51:18,530 - [MAIN] - INFO - DOL.GS.GameEvents.TalkingNPCEvent - TalkingNPCEvent initialized
16:51:18,549 - [MAIN] - INFO - DOL.GS.GameEvents.StartupLocations - StartupLocations initialized
16:51:18,555 - [MAIN] - INFO - DOL.GS.GameEvents.HorseRace - HorseRace Event initialized: True
16:51:18,556 - [MAIN] - INFO - DOL.GS.GameEvents.FollowingNPCEvent - FollowingNPCEvent initialized
16:51:18,561 - [MAIN] - INFO - DOL.GS.GameEvents.FightingNPCEvent - FightingNPCEvent initialized: True
16:51:18,562 - [MAIN] - INFO - DOL.GS.GameEvents.DOLTestServer - DOLTestServer initialized
16:51:18,598 - [MAIN] - INFO - DOL.GS.Behaviour.Examples.TestBehaviour - Simple Test Behaviour added
16:51:18,635 - [MAIN] - INFO - DOL.GS.PacketHandler.PacketProcessor - PacketProcessor: Loaded 79 handlers from GameServer Assembly!
16:51:18,635 - [MAIN] - INFO - DOL.GS.PacketHandler.PacketProcessor - PacketProcessor: Loaded 0 handlers from Script Assemblys!
16:51:20,259 - [MAIN] - WARN - DOL.WeakMulticastDelegate - InvokeSafe took 1591ms! method: DOL.GS.GameEvents.StatPrint.OnScriptCompiled target: null
16:51:23,986 - [MAIN] - WARN - DOL.Network.BaseServer - Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu
System.Net.Sockets.SocketException (0x80004005): Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu
à System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)
à UPnPNat.Discover()
à DOL.Network.BaseServer.Start()
16:51:23,991 - [MAIN] - DEBUG - DOL.Network.BaseServer - Server is now listening to incoming connections!
16:51:23,991 - [MAIN] - DEBUG - DOL.GS.GameServer - Start Memory base.Start(): 216
16:51:23,991 - [MAIN] - INFO - DOL.GS.GameServer - base.Start(): True
16:51:23,991 - [MAIN] - DEBUG - DOL.GS.GameServer - Finish Memory base.Start(): 216
16:51:24,548 - [MAIN] - INFO - DOL.GS.GameServer - GameServer is now open for connections!
16:51:28,695 - [14] - INFO - DOL.GS.GameEvents.StatPrint - -stats- Mem=214MB Clients=0 Down=0kb/s (0MB) Up=0kb/s (0MB) In=0pck/s (0K) Out=0pck/s (0K) Pool=1022/1023(4) IOCP=1000/1000(4) GH/OH=33/2761 RegionTime1=2113t/s (131) RegionTime2=1482t/s (2544) RegionTime3=1237t/s (485) RegionTime4=1324t/s (115) CPU=29,0% DOL=7,2% pg/s=55,8 dsk/s=7,7
16:51:44,545 - [3] - INFO - DOL.Network.BaseServer - Incoming connection from 192.168.1.88:57692
16:51:44,554 - [7] - DEBUG - DOL.Network.BaseClient - Disconnecting client (192.168.1.88:57692), received bytes=0
16:51:58,716 - [14] - INFO - DOL.GS.GameEvents.StatPrint - -stats- Mem=214MB Clients=0 Down=0kb/s (0MB) Up=0kb/s (0MB) In=0pck/s (0K) Out=0pck/s (0K) Pool=1022/1023(4) IOCP=1000/1000(4) GH/OH=33/2761 RegionTime1=0t/s (131) RegionTime2=27t/s (2544) RegionTime3=0t/s (485) RegionTime4=0t/s (115) CPU=12,2% DOL=0,2% pg/s=91,4 dsk/s=22,0
16:52:09,334 - [7] - INFO - DOL.Network.BaseServer - Incoming connection from 192.168.1.88:57698
16:52:09,908 - [16] - INFO - DOL.GS.PacketHandler.Client.v168.LoginRequestHandler - (192.168.1.88)User zulvahin logging on! (Version1109 type:LabyrinthOfTheMinotaur add:bit4, bit5, Foundations, NewFrontiers)
16:52:17,215 - [17] - ERROR - DOL.GS.Quests.AbstractQuest - Could not find quest: DOL.GS.Quests.Albion.CemmethsOrders!
16:52:24,543 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - Client crash (Version1109 pakLib:DOL.GS.PacketHandler.PacketLib1109 type:LabyrinthOfTheMinotaur(LabyrinthOfTheMinotaur) addons:bit4, bit5, Foundations, NewFrontiers state:WorldEnter IP:192.168.1.88:57698 session:1 acc:zulvahin char:Araw class:12) dll:game.dll clientUptime:25sec
16:52:24,544 - [7] - DEBUG - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - Last client sent/received packets (from older to newer):
16:52:24,546 - [RegionTime1] - DEBUG - DOL.GS.PacketHandler.Client.v168.WorldInitRequestHandler - Client zulvahin(Araw PID:1 OID:16621) entering Region Albion(ID:1)
16:52:24,546 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - GSTCPPacketOut
0000: 00 06 83 10 00 00 00 00 00 .........

16:52:24,546 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - GSTCPPacketOut
0000: 00 06 83 11 00 00 00 00 00 .........

16:52:24,547 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - GSTCPPacketOut
0000: 00 06 83 12 00 00 00 00 00 .........

16:52:24,548 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - GSTCPPacketOut
0000: 00 06 83 13 00 00 00 00 00 .........

16:52:24,548 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - GSTCPPacketOut
0000: 00 06 83 14 00 00 00 00 00 .........

16:52:24,548 - [7] - INFO - DOL.GS.PacketHandler.Client.v168.ClientCrashPacketHandler - GSTCPPacketOut
0000: 00 06 83 15 00 00 00 00 00 .
NealWeiss
DOL Initiate
 
Posts: 16
Joined: Sun Nov 16, 2014 6:13 pm

Re: Comment debugger une quête ?

Postby Leodagan » Tue Nov 25, 2014 6:37 pm

Ah bin voilà il y a des tonnes d'info à tirer de ça :D (enfin surtout la fin)

Le paquet 0x83 est une mise à jour des entrée des quêtes.

On est sur un client 1.109 qui utilise donc le PacketLib187.SendQuestPacket()

Visiblement les derniers packets ne contenant que des "00" sont des quête qui sont à "null" (c'est pas bon signe déjà)

Mais ça me surprendrait que ce soit ces paquets qui soit problématiques et plante le client...

A mon avis c'est un paquet antérieure qui provoque le crash !

En tout cas il y a visiblement un cas de figure mal supporté en cas de quêtes buggées :s

Essaye de supprimer le GameServerScript.dll lorsque tu fais des modifications pour forcer une recompilation.

Il y a aussi un problème de "Namespace" entre le script de Xanth qui est dans DOL.GS.Quests et ton server qui cherche à initialiser la quête dans le Namespace DOL.GS.Quests.Albion

Il est fortement possible que se soit une référence dans la base de donnée qui pointe ce Namespace... (Table quest)

Enfin c'est un beau bordel, il faudrait des logs du client en utilisant le logger pour bien analyser tout ça :

[Liens supprimé la ressource est surement sensible]

-- Et idéalement ça serait bien de coller des long textes en utilisant les balises [ code ] [ /code ]
Last edited by Leodagan on Wed Nov 26, 2014 9:55 am, edited 1 time in total.
User avatar
Leodagan
Developer
 
Posts: 1350
Joined: Tue May 01, 2012 9:30 am
Website: https://daoc.freyad.net
Location: Lyon

Re: Comment debugger une quête ?

Postby Xanth » Wed Nov 26, 2014 8:17 am

we cant see the link leo its just for staff on forum ;)
User avatar
Xanth
DOL Acolyte
 
Posts: 141
Joined: Tue Sep 30, 2014 7:01 pm
Location: Germany

Re: Comment debugger une quête ?

Postby Leodagan » Wed Nov 26, 2014 10:02 am

Sorry for that, I just used a quick forum search to get this link and didn't checked that it wasn't public...

It seems the client logger is something that can't be publicly shared as it can impact security for Live Servers.

You should PM Tolakram or Graveen to discuss this ;) (Anyway it can be tricky to use this as debug tool without a good knowledge of DOL...)
User avatar
Leodagan
Developer
 
Posts: 1350
Joined: Tue May 01, 2012 9:30 am
Website: https://daoc.freyad.net
Location: Lyon


Return to “%s” Français

Who is online

Users browsing this forum: No registered users and 1 guest