-
Posts
12570 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
If you use the "Relogger" you can try to schedule a bot restart every X hours. You can try on a bot to separate its folder (1 wrobot folder for 1 wow) to see if it solves the problem.
-
Do you use Relogger? If yes, try to restart bot/game more frequently (like every 6h). Or use one WRobot folder per game, but that requires much more work for maintenance.
-
Hello, Do you have enough free space on your "C:" drive? Try installing/reinstalling the latest version of the .NET Framework: https://dotnet.microsoft.com/en-us/download/dotnet-framework/thank-you/net481-web-installer Do you have this issue with other profiles/fightclasses?
-
Mailing Items Blacklist
Droidz replied to Lexius's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, To try to fix this, I made a plugin that manages the "Do Not Sell" list automatically. Instead of loading a huge list, the plugin updates the "Do Not Sell" list based on what’s actually in your bag. Edit the _doNotSellList list in the C# to include the items you don’t want to sell : using System.Collections.Generic; using System.Linq; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { private List<string> _doNotSellList = new List<string> { "item name to not sell 1", "item name to not sell 2", "item name to not sell 3", }; public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancel) => { if (state is wManager.Wow.Bot.States.ToTown) { var bagItems = Bag.GetBagItem().Where(i => !string.IsNullOrWhiteSpace(i.Name)).Select(i => i.Name).ToList(); wManager.wManagerSetting.CurrentSetting.DoNotSellList.Clear(); foreach (var itemNameToNotSell in _doNotSellList) { if (bagItems.Contains(itemNameToNotSell)) { wManager.wManagerSetting.CurrentSetting.DoNotSellList.Add(itemNameToNotSell); } } } }; } public void Dispose() { } public void Settings() { } } -
Bot does not target mobs
Droidz replied to Gobick's topic in WRobot for Wow The Burning Crusade - Help and support
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/ -
How can I find the time remaining on a buff/debuff?
Droidz replied to s7itch3s's topic in WRotation assistance
Hello, wManager.Wow.ObjectManager.ObjectManager.Me.GetBuff("Buff name").TimeLeft https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.Wow.Class.Aura.htm -
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/
-
Botting private, Playing Wow Classic official in same time
Droidz replied to aweanka's topic in General discussion
Hello, I don’t recommend it. I’m not sure if it’s still the case, but a few years ago, it could lead to a ban. -
how do i get my license key?didnt recived from my email
Droidz replied to Vip7799's topic in General assistance
Hello, You can find your key here https://wrobot.eu/clients/purchases/ (click in the "Manage" button) -
Could you please share the full log file of the session where you encountered the issue (with plugin activated)? 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/
-
Hello, have you tested these two plugins ? https://wrobot.eu/forums/topic/15588-wrong-wow-language/#comment-69899 https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/#comment-69403
-
Have you tried with a new installation of WRobot? Without deleting your current installation, download and install WRobot in a new folder, fill in only the flight form option and launch to see if it works, then try with your profile, and then your fight class.
-
Hello, I think your profile uses ground positions. Try using a profile that has flying positions. You can also remove the name of the ground mount from the bot's settings.
-
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/
-
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/
-
Hello, try https://wrobot.eu/forums/topic/15607-mount-in-fightclass/#comment-69926
-
Hello, wManager.Pulsator.Dispose(true);
-
Incorrect game version
Droidz replied to spejder's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, you can found list of supported game versions here: https://wrobot.eu/supported-wow-versions/ -
WoW_7.3.5_26124 version not working for me.
Droidz replied to harbinger3's topic in WRobot for Wow Legion - Help and support
Hello, your problem should solved. -
And with this plugin https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/?&_rid=1#findComment-69403 ?
-
Hello, your problem should sovled
-
Hi, try this plugin Main.cs : using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.OthersEvents.OnMount += (name, cancelable) => { MovementManager.StopMoveTo(); // or MovementManager.StopMove(); Lua.LuaDoString(@"RunMacroText(""/cast " + name + @""")"); Usefuls.WaitIsCasting(); cancelable.Cancel = true; }; } public void Dispose() { } public void Settings() { } } or https://wrobot.eu/forums/topic/12585-how-to-use-mount-with-item-id-in-mount-options/?&_rid=1#findComment-60315