-
Posts
12596 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
-
Hello, reply by private message
-
Hello, use wManager.Wow.Helpers.SpellManager.KnowSpell(1234) or wManager.Wow.Helpers.SpellManager.KnowSpell("Spell Name in english")
-
WRobot generates all time log files ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ step 2.2, skip step 2.1)
-
Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Bonjour, Installer la dernière version de WRobot puis extraire WRobot_7.1.0 22995.rar dans le dossier (remplacé les fichiers existant, n'accepté pas les mise à jours au lancement)
-
Hello, try to activate manually wow option "Auto loot" (https://www.youtube.com/watch?v=7qVIW8BtIgI)
-
Hello, Currently, WRobot close wow if your character move of more than 450 yards in less than 3 seconds. Sincerely, it is hard to reliably detect a TP if it is only 5 yards. You can try this plugin (plugin no tested): TPpause.cs (you can edit this file with notepad and change 'line 12' max speed, and 'line 13' pause time) You can get your current character speed with wow command (in wow chat): /run print(GetUnitSpeed("player"))
-
Wrotation - wont atack heart on EN Il'gynoth
Droidz replied to Darkscarletz's topic in WRotation assistance
http://wrobot.eu/bugtracker/sizerange-calculation-is-broken-r497/?do=findComment&comment=3329 How do you check if you are at good distance? -
Hello, can you give more details and your log file.
-
Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
Hello, you get this problem all time at the same position? Can you share your profile please?
-
Changed Status to Fixed
-
If you can tell me if problem is resolved with new update
-
Hello, use quest type "OverridePulseCSharpCode" with code: var doorId = 1234; float distance = 2.5f; var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(doorId)); if (o.IsValid) { if (wManager.Wow.Bot.Tasks.GoToTask.ToPosition(o.Position, distance) && o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress); } } return true;
-
When using Fisherbot, then switch to WRotation, FisherBot Sticks
Droidz commented on DDXC's bug report in Bug Tracker
Hello, what version of WRobot do you use? I cannot reproduct this. -
Drowned Mana/Conjurer Margoss Fishing?
Droidz replied to koolkaracter's topic in Fisherbot assistance
http://wrobot.eu/files/file/902-conjurer-margoss-reputation-fishing-loop/ -
Keeps adding area/mobs to black list
Droidz replied to ivicask's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, this problem was caused by the plugin "MultiPull", I'll update it. To wait you can try to use this plugin http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547 -
Testing Return Values of Anticipated Code
Droidz replied to cgeorg13's topic in Developers assistance
Hello, you can test code return value in development tools like this: var o = wManager.Wow.ObjectManager.ObjectManager.GetUnitAttackPlayer(); if (o.Count > 0) { wManager.DevelopmentTools.OutPutCSharp = o[0].Name + " Distance: " + o[0].GetDistance.ToString(); } -
Hello, you need to use c# for this quest, and use code like: var grappleId = 1234; var grapple1 = new Vector3(1, 2, 3); var grapple2 = new Vector3(1, 2, 3); var grapple3 = new Vector3(1, 2, 3); if (ObjectManager.Me.Position.DistanceTo(grapple1) < 8) { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple2); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } } else if (ObjectManager.Me.Position.DistanceTo(grapple2) < 8) { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple3); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } } // ... else { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple1); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } }
-
You can try to use this plugin to wait fix: http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
-
How can I find and interact with fish school during quest?
Droidz replied to wthdfhdutj's topic in Quester assistance
Hello, You need to use c# code, and it is very hard to manage this quest, I recommand to skip this quest or request at the user to complete it manually. -
If you can wait next update
-
Hello, it for tranlates http://wrobot.eu/forums/topic/381-how-to-translate-wrobot/?do=findComment&comment=8581