Everything posted by Droidz
-
Quester settings saving
Hello, var assembly = System.AppDomain.CurrentDomain.GetAssemblies().LastOrDefault(a => a.FullName.Contains("Quester")); if (assembly !=null) { try { var currentSetting = assembly.GetType("Quester.Bot.QuesterSetting").GetProperty("CurrentSetting").GetValue(null, null) as Quester.Bot.QuesterSetting; if (currentSetting != null) { currentSetting.SaveModifiedGeneralSettings = true; currentSetting.ProfileName = "test.xml"; robotManager.Helpful.Logging.Write("OK"); } } catch { } }
-
not attacking
Hello, Try to increment "max unit near" and "search radius" in "general settings" (you can also enable option "can attack elite" in advanced general settings). Check if zone/mobs is not blacklisted (with "Map"). 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/ ).
-
Bot randomly closing
Hello, You can run only one session at the same time with "WRobot Subscription". You can run unlimited number of session at the same time (on same IP) with "WRobot FOR PRIVATE SERVER" or "WRobot Unlimited Subscription".
-
WRobot Discord is gone.
Hello, I'll host chat, if you have ideas/advises of chat to use (I thought of an IRC server (cross-platform)).
-
game version incorrect
Hello, I replied by private message, you can found old verisons here https://wrobot.eu/forums/topic/2018-wrobot-old-versions/
-
Fight Class in F#
Hello, can you share here dll
- Taking mails
-
Wrobot freezing
Hello, wait next update and run WRobot with shortcut "WRobot No DX"
- Blacklisting vendor 120 min
-
Bot randomly closing
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
attack profile
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Blacklist options
Hello, you cannot blacklist for combat or loot only with default feature. For blacklist current target for 120 sec for all tasks with default feature: wManager.wManagerSetting.AddBlackList(wManager.Wow.ObjectManager.ObjectManager.Me.Target, 1000 * 120, true); You can create your own blacklist system (for combat only in this sample) like: System.Collections.Generic.List<object> myGuidBlacklist = new System.Collections.Generic.List<object>(); // (you can replace "object" by "Int128" or "ulong") wManager.Events.FightEvents.OnFightStart += (wManager.Wow.ObjectManager.WoWUnit unit, System.ComponentModel.CancelEventArgs cancelable) => { if (myGuidBlacklist.Contains(unit.Guid)) cancelable.Cancel = true; }; // .......... // blacklist my target myGuidBlacklist.Add(wManager.Wow.ObjectManager.ObjectManager.Me.Target);
-
[WotLK] Druids thinks that Rage bar or Energy bar is Mana bar
Changed Status to Confirmed Changed Version to All
-
Graccu's Mince Meat Fruitcake (Vanilla)
Changed Status to Confirmed Changed Version to All
-
awkward movement
The log lines xx:xx:xx - Stop move for food are not written by WRobot, look your plugins, fightclasses, profiles
-
Object Location
Hello, I am not sure to understand. But if you want check if it is same object check object GUID
-
awkward movement
Hello, try to disable your WRobot plugins
-
BG for holy pal
Hello, you cannot with default features
-
From one city to another
Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=24442
- Mail sending
-
WRobot Stopped working for me
Hello, try to close (in task manager) all unused process (some proxy or virus can cause this error)
- Battle Ground Honor Settings
-
not attacking
Hello, it is elite mobs?
-
Wrobot and Felmyst (Gummy's TBC)
Use last version, old WRobot versions are detected on some servers
-
Ban wave - 9 March 2018
Hello, I do not hide the situation, using WRobot is risky (it's all the time written when you starting the bot since Wow 7.3). The latest update has fixed a detection vector, bliz has added a new one since. I will try to not finish like the others, I managed to find solutions where they have not found, I do what I can, I'll stop if/when I'll no find solutions.