Everything posted by Droidz
-
Presets Possible?
Hello, it for tranlates http://wrobot.eu/forums/topic/381-how-to-translate-wrobot/?do=findComment&comment=8581
-
mailbox
Hello, I'll add this feature
-
Wrotation - wont atack heart on EN Il'gynoth
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 )?
-
!Memory.IsProcessOpen
Can you try to disable all wow addons, and try to close/desinstall teamviewer please
-
Remove all forms + mount
wManager.Wow.Bot.Tasks.MountTask.DismountMount(); // cancel also druid form wManager.Wow.Helpers.Lua.RunMacroText("/cancelaura " + new wManager.Wow.Class.Spell("Stealth"));
-
Only loot quest item mobs
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; } };
-
Loot
Try this code: wManager.wManagerSetting.CurrentSetting.BlackListIfNotCompletePath = false; wManager.wManagerSetting.ClearBlacklistOfCurrentProductSession();
-
Quester FollowPath not starting?
Do you have try to use step type "reset" before?
-
Bot crashing
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/).
-
Break Slow, Rooted, Feared, etc..
https://msdn.microsoft.com/en-us/library/6373h346.aspx
- bot stopes after 1 round bg or 2
-
Moonkin Form
Hello, do you have try to use lua or disable option "Check if know spell"
-
Stealth Ignore mobs - not targeting you
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
Hello, do you have try to blacklist this zone (house)?
-
Taxi database enable all
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); } }
-
Where download mash.gz for Dalaran - Legion?
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.
Hello, this depend of your profile, try to avoid water zones.
- WRotation Karazhan- Lag/Stutter
-
Blacklist area question
Hello, In "map" tab you can activate "radar 3d" to check blacklisted zones.
-
Use item/spell on colleted items
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(); } } } }; }
-
Remove all forms + mount
Hello, Use goto quest type (to go to npc quest giver), add step type runcode with this code: "wManager.Wow.Bot.Tasks.MountTask.DismountMount();" and add step type pickup.
-
Set Max flight hight on mount
Hello, wait next update, with notepad open your setting file (in folder "WRobot\Settings\", open file "General-******.xml"), and you can change value of field "FlyAboveGroundHeight" (you can put 0 to disable fly). PS: you can also edit it in c# with "wManager.wManagerSetting.CurrentSetting.FlyAboveGroundHeight = 1.5f;"
-
Not looting in "Travel form (under water)"
Changed Status to Confirmed Changed Version to All
-
[TBC] Trying to queue up for BGs when already in queue
Hello, can you give me name of your server.
-
helpful stuff for quest profile developer - if endif while conditions
Hello, do not hesitate to post here http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/ links to your posts.