Everything posted by Droidz
-
quest profile questions
Hello, Look this videos http://wrobot.eu/forums/topic/3393-quest-tutorial-video-basic-concepts-kill-and-loot/ and http://wrobot.eu/forums/topic/3395-quest-tutorial-video-basic-concepts-useitemon/ and http://wrobot.eu/forums/topic/3394-quest-tutorial-video-basic-concepts-gatherer/ and http://wrobot.eu/forums/topic/3396-quest-tutorial-video-basic-concepts-grind-till-lvl/ If your problem is not resolved, please share your profile
-
How can i change region again?
Hello, where do you have choose 'America?'
-
Bot does not solve legion puzzles
Hello, you can use lua code like: public WoWAreaTrigger CorrectTile => ObjectManager.GetObjectWoWAreaTrigger() .Where(u => u != null && u.IsValid && (u.SpellID == 219246 || u.SpellID == 219262)) .OrderBy(u => u.Position.DistanceTo(ObjectManager.Me.Position)) .FirstOrDefault(); public void DoQuest() { if (!ObjectManager.Me.HaveBuff(219247)) return; var tile = CorrectTile; if (tile == null) return; var loc = tile.Position; if (loc.DistanceTo(ObjectManager.Me.Position) > 1.5) { MovementManager.MoveTo(loc); } } ( http://www.wowhead.com/quest=43767/enigmatic )
-
Does Wrobot gather nodes in the water?
Hello, yes he does
-
Bot stops after getting out of lava
Hello, sorry but currently no solution for that.
-
UseItemOn doesn't work because we're mounted
Do you have wow option "Auto dismount" active?
-
Bot lags out and auto attacks
Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
-
UseItemOn doesn't work because of Item Cooldown
Hello, to bypass this problem, before to pulse this quest add step type runcode: robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { int itemId = 1234; int questId = 1234; if (!wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) return; if (wManager.Wow.Helpers.Conditions.IsAttackedAndCannotIgnore) return; if (state.DisplayName == "Quester") { if (wManager.Wow.Helpers.Quest.HasQuest(questId) && wManager.Wow.Helpers.Lua.LuaDoString<bool>("local start, duration, enable = GetItemCooldown("+ itemId + "); return enable;")) { cancelable.Cancel = true; } } }; (replace spell and item id)
-
To far away to gathere
Can you share your profile (by private message if you want)
-
How Can I Find Game Object Distance?
Can you give us your error message.
-
Using a decurse function
Hello, I don't see error. Are you sure about your method "getPartymembers()"? Try to add logs to debug
-
1.2.1
http://zzukbot.com/ and http://vanillabotter.com/ (not tested)
-
Attack marked Target
Hello, check if your spell id (109259) is correct
- Party Bot Setup
-
Action bot
Hello, try to blacklist this mailbox (blacklist zone or disable mailbox in 'npc db' tab 'tools').
-
Wrobot for Private server
Hello, yes ps: check you PM
- Lifebloom - tbc
-
1.2.1
Hello, WRobot don't support Wow 1.12.1
-
how to cancel pending renewal invoice
Hello, At the end of your subscription, we will send you an invoice with renewal link to remind you to renew your subscription (you can also found invoice here). We will not automatically renew your subscription.
-
WRobot wont open
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/).
-
purchase for private server
Hello, I have resolved your problem you can found your new license key here http://wrobot.eu/clients/purchases/
- Wrong Sub
-
Is complete condition: Get item
Hello, If you want complete quest when you don't have item in bag (1234 is item id): return wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(1234) <= 0; Or if you want complete quest when you have item in bag (1234 is item id): return wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(1234) >= 3; (replace 3 by minimun item count)
-
WoW tries to call a protected function
Hello, Try to restart your computer, if you get this problem again several time if you can send me again your log file.
-
Moves when fishing
Changed Status to Fixed