All Activity
- Past hour
-
Asno98 joined the community
- Today
-
polishskater joined the community
-
Phifen joined the community
-
aemaeth666 joined the community
-
DoublePerkin joined the community
-
JYOU joined the community
- Yesterday
-
Sly69 joined the community
-
gwillow75 joined the community
- Last week
-
[PAID]fix turtle spell name.
-
-
WRobot_7.3.5_26124 pathfinder problem
Thank you epoch is dead anyways having another problem with octawow new turtle server and its not finishing looting
-
Always drinks when eating (Heal spell)
Very nice! I'll look forward to that update. I may need to refer here for how to use the plugin when it releases. I really should be using this as an excuse to really learn to code, and write plugins & fight classes, but I haven't forced myself to find the time to do that. For now, since I'm always monitoring my bot, I just turned off drinking for mana. Won't work for or all classes/builds, or for all botting purposes, but I can just manually drink occasionally and it's fairly efficient.
-
Always drinks when eating (Heal spell)
Yeah, that's fair. Right now the regen sits once and tops up both health and mana together, there's no way to split them from the settings. I'm adding an option for it in the next update (regen health and mana separately), so a heal-only sit won't drink and a drink-only sit won't eat, while each still goes up to its own max. Once it's out you can turn it on from a plugin or your fight class with: wManagerSetting.CurrentSetting.SeparateHealthAndManaRegen = true; In the meantime you can already get that behavior, take the heal out of the food/drink settings and put it in your fight class.
-
Capycraft
Anyone else botting in Capycraft? if yes did you guys get banned often? I got banned every few days even though I have created custom profile and custom quest/grind profile for each different account.
-
- Ret Paladin
-
goshun started following Ret Paladin
-
Always drinks when eating (Heal spell)
I understand that this is how it works, and that what you describe will work. I'm just saying there should be a way for it to consider health & mana regen separately. Right now, It's MUCH more efficient to just never drink. But it results in a significantly higher death rate because I'll sometimes start a fight with no mana. What makes sense is to only drink when mana is very low, but when I drink -> drink all the way up. Healing between every fight makes sense. Drinking between every fight goes through waters way too fast. Then I run out, and the bot just stands still waiting to regen. Regen mana & HP independently would be much more efficient, as well as look a lot less like a bot in practice.
-
Grinder - Action
Hi, Actions on path points do work, and your format is right (the c#: prefix). The likely issue is that the bot never really lands on that exact point, so the action doesn't fire. It validates a point from a few yards away and moves to the next one, and your points are very close together, so it passes that one without triggering its action. Try spacing that point out from the others first. If that doesn't fix it, share your profile and a log file so I can check.
-
fly when dead
Hi, It's not the default behavior, the bot only flies to your corpse when it can't make a ground path to it. You can try this plugin (not tested), put it in your Plugins folder and stay on a flying mount when you die: Fly to corpse when dead.cs using System; using System.ComponentModel; using System.Threading; using robotManager.Helpful; using wManager.Events; using wManager.Wow.Helpers; // Force the bot to fly back to its corpse (corpse run on a flying mount). public class Main : wManager.Plugin.IPlugin { private const float MinDistanceToFly = 30f; private const int AscendRetestMs = 5 * 60 * 1000; private const int MinActionIntervalMs = 500; private static bool _testedThisDeath; private static bool _isFlyingMount; private static int _lastAscendTick; private static int _lastActionTick; [ThreadStatic] private static bool _reentry; public void Initialize() { OthersEvents.OnPathFinderFindPath += OnPathFinderFindPath; Logging.Write("[FlyToCorpse] Loaded."); } public void Dispose() { OthersEvents.OnPathFinderFindPath -= OnPathFinderFindPath; Logging.Write("[FlyToCorpse] Unloaded."); } public void Settings() { } private static void OnPathFinderFindPath(Vector3 from, Vector3 to, string continentNameMpq, CancelEventArgs cancelable) { if (_reentry) return; _reentry = true; try { var me = wManager.Wow.ObjectManager.ObjectManager.Me; if (me == null || !me.IsValid) return; if (!me.IsDeadMe) { _testedThisDeath = false; _isFlyingMount = false; return; } if (!me.IsMounted) return; Vector3 corpse = me.PositionCorpse; if (corpse == null || corpse.DistanceTo(Vector3.Zero) <= 0) return; if (to == null || to.DistanceTo(corpse) > 12) return; if (corpse.DistanceTo(me.Position) < MinDistanceToFly) return; int now = Environment.TickCount; if (_lastActionTick != 0 && (uint)(now - _lastActionTick) < MinActionIntervalMs) return; if (!me.IsFlying) { bool mayTest = !_testedThisDeath || (uint)(now - _lastAscendTick) >= AscendRetestMs; if (!mayTest) return; _testedThisDeath = true; _lastAscendTick = now; Move.JumpOrAscend(Move.MoveAction.DownKey); Thread.Sleep(Others.Random(300, 700)); Move.JumpOrAscend(Move.MoveAction.UpKey); Thread.Sleep(Others.Random(300, 700)); _isFlyingMount = me.IsFlying; } if (!me.IsFlying) return; to.Type = "Flying"; _lastActionTick = now; cancelable.Cancel = true; } catch (Exception e) { Logging.WriteError("[FlyToCorpse] " + e); } finally { _reentry = false; } } }
-
Gathering Storm Peaks
- WOW Lich King - Gathering Storm Peaks
https://wrobot.eu/bugtracker/wow-lk-gatherer-storm-peaks-r1625/- wow lk gatherer Storm Peaks
Hello, Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/- Party Bot
Hi, Share the full log file from that druid (the .html in the Logs folder, from a session where it got stuck). Also tell me if it gets stuck at the same spot. You can also turn on Radar3D in the Map tab, it draws the bot's path and what it's targeting directly in-game, so you can see where it's trying to go when it gets stuck.- Не работает бот
- Pauses inbetween movement despite MS changes
Hello, Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/- WRobot_7.3.5_26124 pathfinder problem
Hi, The crash comes from Epoch's custom client and its anti-cheat conflicting with WRobot's.- The absorbent mission doesn't work
Hi, Which quester profile are you using? A special objective like absorbing those elementals usually needs a specific step in the profile, the bot doesn't know that custom interaction on its own, so if the profile just kills or interacts normally the absorb won't count.- Always drinks when eating (Heal spell)
Hi, When the bot sits to regen, it restores both health and mana in the same sit, and it keeps drinking until the upper drink value (the second %, 95% by default). Your mana is almost always under 95%, so it drinks nearly every time it heals. Lower that upper drink value, for example set drink to 5% -> 30%. Then when it sits to heal it only drinks if mana is really low, and stops fast. If you don't want it to drink at all, leave the drink field empty (or turn off resting for mana) and keep only your heal spell for health.- Game Version Incorect (Whitemane Cata)
Hi, The 4.3.4 client workaround doesn't work anymore because Whitemane switched to the newer 4.4.x Cataclysm Classic client. WRobot for Cataclysm only supports the 4.3.4 client, so there is no version that works on Whitemane now.- Whitemane Cataclysm Classic Client - incorrect version
Hi, There is no workaround. WRobot for Cataclysm only supports the 4.3.4 client, and Whitemane moved to the newer 4.4.x Cataclysm Classic client which isn't supported. There is no version for it at the moment.- Cataclysm Classic v.4.4.2
Hi, WRobot for Cataclysm only works with the 4.3.4 client. The newer 4.4.x Cataclysm Classic client (Whitemane and others) isn't supported, and there is no version for it at the moment.- Earlier
- Ready-Made WRobot Profiles, Fight Classes, Plugins, and More
Что ж, это будет мой второй отзыв о продолжении работы с этим разработчиком и вот что я могу сказать. Такого качества за такие деньги я не ожидал. Учитывая, что он чуть ли не единственный человек на весь форум (если вообще не единственный), который может разработать профиль на заказ, я думал, что он будет заламывать цены и брать за доработки и шлифовку профилей дополнительные деньги, мол работу он выполнил, а всё остальное за доп. плату. Я никогда ещё так не ошибался. Пока он не довёл профиль до идеала, пока не закрыл все возможные проблемы (были даже со стороны самого сервера, которые Sakonung всё равно решил) он даже не заикнулся о том, что работа закончена. Так что повторю то, что написал в прошлом отзыве. Я однозначно рекомендую попробовать работу с этим человеком. Вы не пожалеете.- Ready-Made WRobot Profiles, Fight Classes, Plugins, and More
Немного выложил часть продуктов, что делал раньше. Для тех, кто хочет попробовать Quester - https://wrobot.eu/files/file/2084-quester-1-20-lvl-human-alliance-full-automation/ Просто для всех, кто использовал оригинальный Wholesome Vendor - https://wrobot.eu/files/file/2085-free-wholesome-vendor-manager-bugfixes-ru-support/ I've released a few of the products I worked on in the past. For those who want to try Quester: https://wrobot.eu/files/file/2084-quester-1-20-lvl-human-alliance-full-automation/ And for everyone who used the original Wholesome Vendor: https://wrobot.eu/files/file/2085-free-wholesome-vendor-manager-bugfixes-ru-support/Sakonung started following [FREE] Wholesome Vendor Manager - Bugfixes + RU Support- [FREE] Wholesome Vendor Manager - Bugfixes + RU Support
- 11 downloads
- Version 1.0.0
Продолжаю выкладывать часть своих работ бесплатно. Это переработанный плагины Wholesome Vendors, ссылка на оригинальный пост: https://wrobot.eu/files/file/1959-free-wholesome-vendor-manager/ Этот плагин, сам по себе, прекрасно сделан. Я до сих пор помню, когда только учился кодить, копался в нем и пытался разобраться. Но у него было пара проблем, которые я обнаружил. К сожалению, автор уже не оказывает поддержку своему продукту, поэтому я решил для себя исправить это. Было несколько багов, которые могли вам мешать при прокачке: 1. Если у вас недостаточно денег для починки, Vendor замирал и пытался бесконечно починиться у вендора. 2. Если вы использовали его с продуктов Quester и там менялись профиля через возможность LoadProfile, плагин переставал работать (нужно было делать повторную инициализацию) 3. Плагин не имел поддержки RU клиента. Только английская версия. Я исправил все проблемы, что обнаружил и теперь, вы можете использовать этот плагин без каких-либо ограничений. Там 2 версии RU (Sirus version), EN (Базовая версия). Приятного использования и спасибо Wholesome Team за этот прекрасный продукт и то, что выложили его в публичный доступ. Если нужно что-то больше, чем плагин или продукт, но на форуме Wrobot его нет, вы всегда можете написать мне в дискорд и я вам помогу, почти с любым продуктом, что вы захотите. Мой дискорд: .fhr English Version: I'm continuing to release some of my old work for free. This is a modified version of the Wholesome Vendors plugin. Original release: https://wrobot.eu/files/file/1959-free-wholesome-vendor-manager/ The plugin itself is very well made. I still remember digging through its code when I was first learning C# and trying to understand how everything worked. However, over time I discovered several issues. Unfortunately, the original author is no longer maintaining the project, so I decided to fix them myself. There were a few bugs that could cause problems during leveling: If you didn't have enough money for repairs, the Vendor would get stuck and endlessly try to repair at the NPC. If you used the plugin together with Quester products and switched profiles through LoadProfile, the plugin would stop working because it required reinitialization. The plugin had no support for the Russian client and only worked properly with the English client. I've fixed all of the issues I was able to find, and now you can use the plugin without these limitations. The package contains two versions: RU (Sirus version) EN (Standard version) Enjoy, and thanks to the Wholesome Team for creating such a great product and making it publicly available. If you need something more than an existing plugin or product, and it isn't available on the WRobot forum, feel free to contact me on Discord. I can help with almost any WRobot-related product you may need. Discord: .fhr- Quester 1-20 lvl Human Alliance | Full Automation
- 19 downloads
- Version 1.0.0
Всем привет, как вы знаете из этого поста: https://wrobot.eu/forums/topic/16282-ready-made-wrobot-profiles-fight-classes-plugins-and-more/#comment-71070 я раньше сам ботил у Wrobot и активно зарабатывал с помощью него. Но я давно уже не занимаюсь этим, но все еще, у меня остались прошлые работы, готовые прокачки, фарм инстов, плагины и многое другое. А также, я умею работать с framework Wrobot и создавать продукты под заказ. Этот Quester один из таких примером. Это ЧАСТЬ полностью автоматической прокачки 1-80 лвл Alliance Human, которая работает на любой версии 3.3.5. Все сложные квесты убраны, элиток нету. Базовые, квесты с полностью прописанной, отполированной логикой прокачки. Чтобы ваши боты могли автоматически качаться без ограничений и не умирать. Если вас интересует полностью профиль или хотите, что-то дополнительно для себя. Quester/Product/Plugin, буду рад вам помочь, мой Discord: .fhr English version: Hello everyone, As some of you may know from this post: https://wrobot.eu/forums/topic/16282-ready-made-wrobot-profiles-fight-classes-plugins-and-more/#comment-71070 I used to be an active WRobot user and made a good amount of money using it. I no longer work in this field, but I still have many of my old projects available, including leveling profiles, dungeon farming profiles, plugins, and much more. I also have extensive experience working with the WRobot framework and can create custom products on request. This Quester is one example of that work. It is a PART of a fully automated 1–80 Alliance Human leveling profile that works on any WoW 3.3.5 version. All difficult quests have been removed, there are no elite quests, and only core quests with fully scripted and polished leveling logic remain. The goal is to allow your bots to level efficiently with minimal issues and interruptions. If you're interested in the complete profile or would like a custom Quester, Product, or Plugin developed for your needs, feel free to contact me. Discord: .fhr Как установить: Просто распакуйте архив в папку Wrobot/Quester/ Installation: Simply extract the archive into your WRobot/Quester/ folder. - WOW Lich King - Gathering Storm Peaks