-
Posts
12590 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, Sorry, there have been some issues with the server over the past 48 hours, but the problem should now be resolved.
-
Hello, As bio33 mentions, support for The War Within will be added when the Midnight version is published.
-
Hello, Epoch uses a modified game client, which is why WRobot no longer works correctly. I apologize, but currently there is no support planned for this server or any other server with a modified game client.
-
How high is chances of getting detected on Warmane
Droidz replied to Retpall's topic in General discussion
Hello. Currently, WRobot is detected on this server: https://wrobot.eu/byme/CompatibilityReporting/server_details.php?id=3 -
Hello, Do you have any active WoW addons? If so, please disable them all. 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/
-
Game Version Incorect (Whitemane Cata)
Droidz replied to SNNICK's topic in WRobot for Wow Cataclysm - Help and support
Hello, Try with a game client from the original version downloaded from a site other than the server's website. -
Hello, Try with this plugin Main.cs : using System.Threading; using wManager.Wow.Class; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { const int SpellId = 46457; const int NpcId = 50041; public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is wManager.Wow.Bot.States.ToTown) { MovementManager.StopMove(); new Spell(SpellId).Launch(true); Thread.Sleep(5000); var npc = new Npc { ContinentId = (ContinentId)Usefuls.ContinentId, Name = "Field Repair Bot 75B", Entry = NpcId, Position = wManager.Wow.ObjectManager.ObjectManager.Me.Position, Type = Npc.NpcType.Repair, Faction = Npc.FactionType.Neutral }; NpcDB.ListNpc.RemoveAll(n => n.Active && n.Entry == npc.Entry && n.Type == npc.Type && n.ContinentId == npc.ContinentId && n.CurrentProfileNpc); NpcDB.AddNpc(npc, false, true); } }; } public void Dispose() { } public void Settings() { } }
-
Hello, For this type of request, it's best to send me a private message. You can find the invoice for your subscription upgrade here: https://wrobot.eu/clients/orders/
-
https://wrobot.eu/forums/topic/15054-payment-option/?&_rid=1#findComment-70150
-
Hello, Please provide me with the information you want to update via private message: https://wrobot.eu/messenger/compose/?to=1
-
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
-
is there any Plugin for MailboxWhenBagsFull?
Droidz replied to Vip7799's topic in General discussion
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, can you share your log file please
-
Hello, Check in the main tab if the remote option is enabled; if it is, try disabling it. If that's not the issue, it's likely due to one of your plugins/profiles/fightclasses. Try disabling them one by one to find the source of the problem.
-
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/