-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
I need positiion and continent name
-
Specific vendor in profile
Droidz replied to eeny's topic in WRobot for Wow Vanilla - Help and support
Hello, You cannot with default, but if you use custom code (plugin in this sample): using System; using System.Collections.Generic; public class Main : wManager.Plugin.IPlugin { public void Initialize() { // NPC list var npcs = new List<Tuple<int, int, wManager.Wow.Class.Npc>> // Item1=minlevel, Item2=maxlevel, Item3=npc { new Tuple<int, int, wManager.Wow.Class.Npc>(1, 5, new wManager.Wow.Class.Npc { Type = wManager.Wow.Class.Npc.NpcType.Repair, Name = "Npc name for level 1 to 5", Entry = 12345, ContinentId = wManager.Wow.Enums.ContinentId.Azeroth, Faction = wManager.Wow.Class.Npc.FactionType.Neutral, Position = new robotManager.Helpful.Vector3(1, 2, 3), CanFlyTo = true }), new Tuple<int, int, wManager.Wow.Class.Npc>(6, 9, new wManager.Wow.Class.Npc { Type = wManager.Wow.Class.Npc.NpcType.Repair, Name = "Npc name for level 6 to 9", Entry = 6789, ContinentId = wManager.Wow.Enums.ContinentId.Azeroth, Faction = wManager.Wow.Class.Npc.FactionType.Neutral, Position = new robotManager.Helpful.Vector3(6, 7, 8), CanFlyTo = true }), // ... }; // do: uint lastLevelCheck = 0; robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { var level = wManager.Wow.ObjectManager.ObjectManager.Me.Level; if (state != null && state.DisplayName == "To Town" && lastLevelCheck != level) { robotManager.Helpful.Logging.WriteDebug("Check NPC for current level"); wManager.Wow.Helpers.NpcDB.AcceptOnlyProfileNpc = true; wManager.Wow.Helpers.NpcDB.ListNpc.RemoveAll(n => n.CurrentProfileNpc); foreach (var npc in npcs) { if (npc.Item1 >= level && npc.Item2 <= level) { wManager.Wow.Helpers.NpcDB.AddNpc(npc.Item3, false, true); robotManager.Helpful.Logging.WriteDebug("Add npc: " + npc.Item3); } } lastLevelCheck = level; } }; } public void Dispose() { } public void Settings() { } } (not tested, tell me if this don't works) In this sample, wrobot will refresh npc list at all level (and add npcs by level), but you can add condition to check current charater zone (by position disdance), ... You can also run this code in quester step (put only content of method "Initialize()") -
Hello, for that use quest type "UseItemOn" (if you don't add npc/gameobject wrobot will use item at all hotspots)
-
Hello, try to use this plugin: Main.cs public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Battlegrounder Combination") { cancelable.Cancel = true; } }; } public void Dispose() { } public void Settings() { } }
-
Hello, You cannot change gathering distance with condition (with default feature). option "Blacklist Npc/Node if unable to make full path to reach it" is enabled
-
Sell items before buy food/drink
Droidz replied to maukor's topic in WRobot for Wow Vanilla - Help and support
Hello, wrobot sell before to buy food and drink: 20:02:37 - [ToTown] Go to vendor Grimtak (Vendor) 20:02:38 - [ToTown] Vendor found Grimtak 20:02:38 - [ToTown] Sell items (try 1) 20:02:42 - [ToTown] Buy drink and food But in your settings, you have only activate "sell gray item", I think than is the cause of the problem, try to active "sell white item" (don't forget to add to "do not sell list" white item that your want keep). -
Hello, if your profile path is: C:\WRobot\WRobot\Profiles\Quester\test.xml put : test.xml but if your profile are in folder by sample: C:\WRobot\WRobot\Profiles\Quester\MyFolder\test.xml put: \MyFolder\test.xml
-
Hello, can you try to disable enable option "Can attack units already in combat" (in advanced general settings) and tell me if this change something.
-
Party constantly dismounts
Droidz replied to nxpert's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
[Resolved] New mesh problem?
Droidz replied to Findeh's topic in WRobot for Wow Vanilla - Help and support
If you can try again -
Hello, you use last wow version?
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) (full log file).
-
[Resolved] New mesh problem?
Droidz replied to Findeh's topic in WRobot for Wow Vanilla - Help and support
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) and profile (or sample profile with this problem (in start zone if you can)) -
Update done
-
Hello, for http://www.wowhead.com/quest=28808/fear-no-evil you need to use interactwit... (and use option "accept dead target"?). And sometime, same quest have several ID (like your quest: 28813, 28809, 28806, 28810, 28812, 28808, 28811), to avoid to create one wrobot quest by quest id (wow class for your quest), you can add all id in one wrobot quest
-
Quests
Droidz replied to Malarak's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, no profile to leveling only with quests in Wotlk -
I need full log file, and i have updated TBC meshes, if you can tell me if your problem is resolved
-
Hello, Check if the npc is not blacklisted. Can you share your log
-
Hello, you need to put macro https://wrobot.eu/forums/topic/4259-set-specialization-and-talents/?do=findComment&comment=20188 https://wrobot.eu/forums/topic/4853-talents/
-
Hello, this can happen on Vanilla because wow CTM is broken in some computer, no way to resolve this problem.
-
Hello, can you share result of "Player/Target Buff/Debuff" (you can found this button in "dev... tools" (tab "tools")) (when you have this buff)
-
https://wrobot.eu/forums/topic/6397-solved-need-pet-happiness-macro/
-
Wow was downgrade to patch 7.3.2 build 25383, WRobot go back also to support 7.3.2.25383