-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Wait next update, I have added new option "AcceptOnlyProfileNpc", to active it for session run this C# code: wManager.Wow.Helpers.NpcDB.AcceptOnlyProfileNpc = true; When you put 'True' at 'AcceptOnlyProfileNpc' WRobot use only NPCs of current profile. If you add NPC manually dont forget to put 'true' at the arg 'currentProfileNpc': wManager.Wow.Helpers.NpcDB.AddNpc(Npc npc, bool save, bool currentProfileNpc);
-
Hello, yes europeen servers work and WRobot works on them.
-
Help WRobot to improve navigation mesh construction
Droidz replied to Droidz's topic in Tutorials - WRobot
No only on official server at the moment -
Hello, It is possible to help WRobot to improve navigation (meshes) fiability. For it: Use this plugin: ExtractGameObjects.cs (or you can also run c# code "wManager.Wow.Bot.States.NPCScanState.ExtractGameObjects = true;" if you want record during current WRobot session) When WRobot product running, WRobot extract alone game objects infomations (you can see game objects extracted in debug log lines). After some hours/days/weeks of use, you can send me your game objects database (database file is "WRobot\Settings\gameObject.json"), compress and send me this file by private message. ps: This working only on WRobot for official wow server. Please use normal servers (not PTR).
-
In advanced general settings try to disable option "Calculate interact/combat distance by target size".
-
Bonjour, http://wrobot.eu/files/category/8-pet-battles/
-
Hello, this is managed by you fightclass
-
Using stems/stalks/blades to create an herb
Droidz replied to ericwhatchaneed's topic in Gatherer assistance
Hello, you want combine items? if yes use this plugin: http://wrobot.eu/files/file/481-combine/ -
WRobot update for Retail Wow Legion 7.1.5
Droidz replied to Dustyzapper's topic in General assistance
Hello, I am working on it. -
Hello, WRobot support now Wow Legion patch 7.1.5.23360. If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here). More info about this wow version: Click here View full article
-
Hello, WRobot support now Wow Legion patch 7.1.5.23360. If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here). More info about this wow version: Click here
-
Hello, try to activate "Use lua to move" in advanced general settings, you can also try to increment min/max latency in advance general settings tab others
-
Hello, in c# use: wManager.Wow.Helpers.Quest.HasQuest(1234) (replace 1234 by quest id, and add ! before if you want test if character not have quest). If you use quest editor and you want check it in "quests order", add step type "IfHasQuest" or "IfHasNotQuest" with in param the quest id (don't forget to add step type "EndIf").
-
Move or Strafe during combat? Open Quester by itself?
Droidz replied to KnightRyder's topic in Quester assistance
You can replace PressKey... by wManager.Wow.Helpers.MovementManager.MoveTo(1, 2, 3); -
Hello, do you have try to contact fightclass owner. You can watch this tuto to edit yourself fightclass: http://wrobot.eu/forums/topic/3560-fight-class-tutorial-video/
-
Are all fight classes broken?
Droidz replied to Phantom's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, your server use custom spells? -
Hello, I have upgraded your subscription, you can now use your key with this version. Kind regards
-
Path finding problem, running against wall.
Droidz replied to William Cruz's topic in General assistance
Hello, http://wrobot.eu/forums/topic/4704-herbalism-elwyn-forest/?do=findComment&comment=21848 like here activate radar 3d to find bad position (and remove it from your profile) -
Hello, I have upgraded your license key, you can now use your key with this wrobot version.
-
Hello, use plugin like HearthstoneToGoToTown.cs (not tested): using System; using System.ComponentModel; using System.Threading; using System.Windows.Forms; using robotManager.Events; using robotManager.FiniteStateMachine; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { FiniteStateMachineEvents.OnRunState += FiniteStateMachineEventsOnOnRunState; Logging.Write("[HearthstoneToGoToTown] Loadded."); } public void Dispose() { Logging.Write("[HearthstoneToGoToTown] Disposed."); } public void Settings() { MessageBox.Show("[HearthstoneToGoToTown] No settings for this plugin."); } private void FiniteStateMachineEventsOnOnRunState(Engine engine, State state, CancelEventArgs cancelable) { try { if (string.IsNullOrWhiteSpace(state.DisplayName) || state.DisplayName != "To Town") return; Logging.WriteDebug("[HearthstoneToGoToTown] Use Hearthstone."); var o = wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported; wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; MovementManager.StopMove(); Thread.Sleep(Usefuls.Latency + 150); Lua.LuaDoString("local itemName, _, _, _, _, _, _, _ = GetItemInfo(6948); RunMacroText('/use ' .. itemName);"); Thread.Sleep(Usefuls.Latency + 500); if (ObjectManager.Me.IsCast) { Usefuls.WaitIsCasting(); Thread.Sleep(Usefuls.Latency + 10000); // wait load screen } wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = o; } catch (Exception e) { Logging.WriteError("[HearthstoneToGoToTown] " + e); } } }
-
Bonjour, essayé de désactiver votre antivirus http://wrobot.eu/forums/topic/4709-low-fps-after-bot-start/?do=findComment&comment=21828
-
Check if you don't use flying profile
-
Hello, use this c# code: if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new robotManager.Helpful.Vector3(1, 2, 3), 12345)) // replace 1, 2, 3 by position, and 12345 by npc entry id { wManager.Wow.Helpers.Usefuls.SelectGossipOption(wManager.Wow.Enums.GossipOptionsType.trainer); wManager.Wow.Helpers.Trainer.TrainingSpell(); }
- 4 replies
-
- quest
- train skill
-
(and 1 more)
Tagged with:
-
Path finding problem, running against wall.
Droidz replied to William Cruz's topic in General assistance
Hello, are you sure that your profile is not outdated?