May 14, 20178 yr The NPC database is a big mess, the bot is running to vendor/fp/repair npcs that is from the other faction. IS there anyway to stop this from happening?
May 14, 20178 yr hm i think the database is working as intend maybe it's just the product itself with a missing condition. For a workaround you could register the movement events and replace the current moveto/onmovement with your desired npc but it's abit too much work. I think you can also resolve the problem with a plugin which lookup the npc database & temporary blacklist the npc by its faction on Initialize(): foreach (var obj in NpcDB.ListNpc) { if ((int) obj.Faction != ObjectManager.Me.Faction && obj.Faction != Npc.FactionType.Neutral) { wManagerSetting.AddBlackListNpcEntry(obj.Entry, true); } }
May 15, 20178 yr Hello, tested on Vanilla and Legion, WRobot return good NPC and skip Horde NPC if you play Alliance 2017-05-15_11-31-31.mp4
Create an account or sign in to comment