Everything posted by Droidz
-
Fishing Vanilla
Hello, https://wrobot.eu/forums/topic/4918-since-last-update-the-bot-spams-reloadui/?do=findComment&comment=22750
-
Wrobot as a follow bot?
Hello, you cannot with default WRobot features.
-
Bot not using water?
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) and screenshot of your regen settings.
-
AOE Farming Fight Class
Yes the V2
-
How to gather corpses?
Hello, in BG? You cannot
-
Objects inside vehicle
Yes, selected zone is Azsuma. If I select Stormheim I can do this quest with demon hunter?
-
[80-85] [Quester] Hyjal and Uldum (Grind)
- 456 downloads
- Version 1.0.0
[80-85] Hyjal and Uldum (Grind) Leveling your character from level 80 to 85 in Hyjal and Uldum. Installation: Download and move file in folder "WRobot\Profiles\Quester\", you need to use this file with product "Quester". You need to start the profile in Kalimdor. Recommanded: - Use WRobot plugins https://wrobot.eu/files/file/1340-auto-choose-food-and-drink/ and https://wrobot.eu/files/file/414-multi-pull/ - Use http://www.wowhead.com/spell=61447/travelers-tundra-mammoth to sell items (option in advanced general settings). -
Objects inside vehicle
I cannot found this quest after demon hunter intro
-
Default Pet Battle Fight Class
Salut, public static int GetBestAbility() { try { int activePetAlly = GetActivePet(PetFaction.Ally); int activePetEnemy = GetActivePet(PetFaction.Enemy); var typePetEnemy = GetPetType(PetFaction.Enemy, activePetEnemy); var bestAbility = new List<int>(); var weakAbility = new List<int>(); var normalAbility = new List<int>(); for (int i = 1; i <= NUM_BATTLE_PET_ABILITIES; i++) { if (GetAbilityState(PetFaction.Ally, activePetAlly, i)) { var abilityInfo = GetAbilityInfo(PetFaction.Ally, activePetAlly, i); if (!FightBattlePet.AbilitiesBlackListed.Contains(abilityInfo.Name)) { ModiferEffects abilityModifer = AbilityModifer.Find(effects => effects.Type == abilityInfo.AbilityPetType); if (abilityModifer != null) { if (abilityModifer.Strong == typePetEnemy) { bestAbility.Add(i); } if (abilityModifer.Weak == typePetEnemy) { weakAbility.Add(i); } else { normalAbility.Add(i); } } } } } int ability = Others.Random(1, 3); if (bestAbility.Count > 0) { ability = bestAbility[Others.Random(0, bestAbility.Count - 1)]; } else if (normalAbility.Count > 0) { ability = normalAbility[Others.Random(0, normalAbility.Count - 1)]; } else if (weakAbility.Count > 0) { ability = weakAbility[Others.Random(0, weakAbility.Count - 1)]; } return ability; } catch (Exception e) { Logging.WriteError("GetBestAbility(): " + e); return 1; } }
-
Im so lost i have no idea how to use this
Hello, https://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/
- problem with profile grinder
-
Path finding during Gather
- Path finding during Gather
Hello, To avoid this problem you can try to put lower value at option "Search Radius" or to blacklist zones where WRobot cannot found path to go. The problem is that gatherer task select the nearest gameobject by path distance (and not by fly distance), to get path distance he generate path for all gameobject found in search radius and not blacklisted, and when WRobot cannot generate path he take long time to load meshes/search (this take time and increment ram usage, I have already try to found solution but if I put lower limit, some paths was not generated correctly). To resolve problem with http://www.wowhead.com/quest=25136/galgars-cactus-apple-surprise you can add to your blacklisted zones: <Blackspot X="-317.307373" Y="-4437.53027" Z="57.3852348" Radius="10" /> <Blackspot X="-360" Y="-4337" Z="58" Radius="10" />- Pathfinding not working while "Walk" or "Fly" to a Herb?
I'll try to add option/improve this in next updates- Bot pathing not working right
Hello, you probably try to load "quester"/"gatherer" profile with "grinder" product.- Spell class competely broken for Spells whose names contains paranthesis
I comeback here when I have found solution or when I have fixed problem.- Takes too long to detect character is stuck
Droidz replied to liquidsnake1989's topic in WRobot for Wow Wrath of the Lich King - Help and supportI'll check that, I comeback here when it is fixed- First aid?
Hello, add this to your fightclass:- Warmane Critical Error
- My wrobot can't connect server now
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).- wrobot can't launch
Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).- Help setting "totown" destination in grinder
Hello, Clear your "NPC DB" (tab tools). Add NPC in your profile. In advanced general settings tab "Other..." uncheck all options "Add NPCs ..." You can also run this code wManager.Wow.Helpers.NpcDB.AcceptOnlyProfileNpc = true;- Quester bot not working (Paid profiles) LOGS INCLUDED
Hello, contact profile owner.- Put an item in the list not to sell
foreach (var woWItem in wManager.Wow.Helpers.Bag.GetBagItem()) { if (!string.IsNullOrWhiteSpace(woWItem.Name) && !wManager.wManagerSetting.CurrentSetting.DoNotSellList.Contains(woWItem.Name)) wManager.wManagerSetting.CurrentSetting.DoNotSellList.Add(woWItem.Name); } You can run this code in quester profile, custom profile, plugin, ...., or in "dev... tools" (tab "Tools")- Objects inside vehicle
@camelot10 I don't forget you, I leveling a character (currently level 80) @nicky0412 If you want help, create your own post in the good forum category. - Path finding during Gather