-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Try to run this code (after change settings) var pName = robotManager.Products.Products.ProductName; robotManager.Products.Products.DisposeProduct(); robotManager.Products.Products.LoadProducts(pName);
-
I comeback here when I have check, if you have time if you can try with weapon without ' in the name
-
Hello, https://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ Use mount
-
Sunwell new detection method?
Droidz replied to oussmedj's topic in WRobot for Wow Wrath of the Lich King - Help and support
try to redownlaod and reinnstall WRobot in new folder -
Sunwell new detection method?
Droidz replied to oussmedj's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, if you use old version (before WRobot 1.9.0) it is normal, this detection problem is resolved with last update ( https://wrobot.eu/forums/topic/8765-private-servers-security-update/ ) -
Hello, New WRobot version resolve detection problem, update WRobot and the updater. Use WRobot if you know what you are doing, ban risk keep high, . You can discuss about this here: https://wrobot.eu/forums/topic/8666-ban-wave-2018-discussion/
-
Hello, New WRobot version resolve detection problem, update WRobot and the updater. Use WRobot if you know what you are doing, ban risk keep high, . You can discuss about this here: https://wrobot.eu/forums/topic/8666-ban-wave-2018-discussion/ View full article
-
Hello, in fisher product settings name of your weapon is good?
-
Hello, for random player or specific player? To check if random player is near (less than 50y): return wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().Any(p => p.IsValid && p.GetDistance2D < 50); To check if specific player is near: return wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().Any(p => p.IsValid && p.GetDistance2D < 50 && p.Name == "Player Name");
-
Bonjour, c'est possible avec des logiciel comme dnspy mais compliqué si vous n'avez pas les connaissances pour. Vous utilisez quelle fightclasses? la plupart sont multilang
- 3 replies
-
- fightclass
- changer
-
(and 7 more)
Tagged with:
-
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 { } }
-
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/ ).
-
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".
-
Hello, I'll host chat, if you have ideas/advises of chat to use (I thought of an IRC server (cross-platform)).
-
Hello, I replied by private message, you can found old verisons here https://wrobot.eu/forums/topic/2018-wrobot-old-versions/
-
Hello, can you share here dll
-
Hello, you get same problem with "Auction" product (when he go to mailbox)? Do you use wow addons?
- 2 replies
-
- houstonwehaveaprobleem
-
(and 1 more)
Tagged with:
-
Hello, wait next update and run WRobot with shortcut "WRobot No DX"
-
Blacklisting vendor 120 min
Droidz replied to zatvorgt's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) (when wrobot blacklist your vendor). -
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
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
Droidz commented on Findeh's bug report in Bug Tracker
Changed Status to Confirmed Changed Version to All -
Changed Status to Confirmed Changed Version to All
-
The log lines xx:xx:xx - Stop move for food are not written by WRobot, look your plugins, fightclasses, profiles