-
Posts
12602 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
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
-
Hello, I'll add this feature
-
Wrotation - wont atack heart on EN Il'gynoth
Droidz replied to Darkscarletz's topic in WRotation assistance
Hello, sorry for the delay. I have check your PM, all seem good, what fightclass do you use? Do you get this problem with others big mobs (big size)? When you go inside the mob WRobot works correctly (very near )? -
Can you try to disable all wow addons, and try to close/desinstall teamviewer please
-
wManager.Wow.Bot.Tasks.MountTask.DismountMount(); // cancel also druid form wManager.Wow.Helpers.Lua.RunMacroText("/cancelaura " + new wManager.Wow.Class.Spell("Stealth"));
-
Hello, at start, run code like: wManager.Events.LootingEvents.OnLootingPulse += (unit, cancelable) => { if (unit.IsValid && unit.GetDistance2D > 5) { wManager.wManagerSetting.AddBlackList(unit.Guid, 1000*120, true); cancelable.Cancel = true; } };
-
Try this code: wManager.wManagerSetting.CurrentSetting.BlackListIfNotCompletePath = false; wManager.wManagerSetting.ClearBlacklistOfCurrentProductSession();
-
Do you have try to use step type "reset" before?
-
Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
Hello, Try to remove folder "WRobot\WRobot\Data\Meshes", if your problem is not resolved can you share your log file please.
-
Hello, do you have try to use lua or disable option "Check if know spell"
-
Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
Thanks for fixing suramar city death run mesh
Droidz replied to gh0stfac3's topic in General assistance
Hello, do you have try to blacklist this zone (house)? -
Hello, lock (wManager.Wow.Helpers.Taxi.TaxiList.Locker) { foreach (var node in wManager.Wow.Helpers.Taxi.TaxiList.Nodes) { wManager.Wow.Helpers.Taxi.TaxiList.Active(node); } }
-
Hello, Try to remove folder "WRobot\Data\Meshes\" If you problem is not resolved can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
Gathering Bot Trouble.
Droidz replied to Smutpuppy88's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, this depend of your profile, try to avoid water zones. -
Hello, It is strange than you get this problem only in Karazhan. Do you have try with another fightclass? Or to put lower graphic quality ?
-
Hello, In "map" tab you can activate "radar 3d" to check blacklisted zones.
-
Before pulse step, add step type runcode with code like: int questId = 9361; // http://www.wowhead.com/quest=9361/helboar-the-other-white-meat if (wManager.Wow.Helpers.Quest.HasQuest(questId)) { wManager.Events.LootingEvents.OnLootSuccessful += unit => { if (wManager.Wow.Helpers.Quest.HasQuest(questId)) { if (wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStarted && !wManager.Wow.Helpers.Conditions.IsAttackedAndCannotIgnore) { if (wManager.Wow.Helpers.ItemsManager.GetItemCountById(23248) > 0) // Purified Helboar Meat { wManager.Wow.Helpers.ItemsManager.UseItem(23268); // Purification Mixture wManager.Wow.Helpers.Usefuls.WaitIsCasting(); } } } }; }
