-
Posts
12579 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Posts posted by Droidz
-
-
Hello,
Please provide me with the information you want to update via private message: https://wrobot.eu/messenger/compose/?to=1
-
-
Hello,
Your payment attempt failed (Stripe error "incorrect_number").
-
Hello,
You can execute your code in the product thread (gatherer) using, for example, the "OnBeforeCheckIfNeedToRunState" event. Sample : https://wrobot.eu/forums/topic/15429-plugin-for-robotsresponse-to-player-attack/?&_rid=1#findComment-69230
-
Hello,
By default, when the bot goes to town, it starts by mailing items using the closest mailbox. The bot goes to town when the bags are full. Configure the mailing parameters in "Advanced Settings" and add a mailbox to your profile.
-
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() { } }
-
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,
wManager.Wow.ObjectManager.ObjectManager.Me.GetBuff("Buff name").TimeLeft
https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.Wow.Class.Aura.htm
-
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.
-
Hello,
You can find your key here https://wrobot.eu/clients/purchases/ (click in the "Manage" button) -
You can run 3 WRobots on multiple computers with the same key, there is no restriction (limited to the number of sessions in your subscription).
-
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,
wManager.Pulsator.Dispose(true);
-
Hello, can you share a few log files of bugged sessions?
-
Hello, you can found list of supported game versions here: https://wrobot.eu/supported-wow-versions/
-
Hello, your problem should solved.
-
-
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() { } }
-
Hello, your issue seems to be resolved according to the logs I have on the admin panel.
-
need to change billing information
in General assistance
Posted
https://wrobot.eu/forums/topic/15054-payment-option/?&_rid=1#findComment-70150