Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Blacklist object/unit in ObjectManager WRobot will 100% ignore blacklisted objects WoWUnit unit = new WoWUnit(0); if (unit.IsValid && !wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Contains(unit.Guid)) wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Add(unit.Guid); (this code can disrupt WRobot, use it only if you know what you're doing)
  2. Hello, I cannot help you more, my settings:
  3. Hello, use plugin like Main.cs: using System.ComponentModel; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.FightEvents.OnFightStart += delegate(WoWUnit unit, CancelEventArgs cancelable) { if (unit != null && unit.IsValid && unit.Entry == 12345) { if (!wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Contains(unit.Guid)) wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Add(unit.Guid); cancelable.Cancel = true; } }; } public void Dispose() { } public void Settings() { } } Replace 12345 by mob entry id
  4. Can you share log of session where you get this problem
  5. Hello, try to use this plugin https://wrobot.eu/forums/topic/8299-i-can-not-fly-in-any-area/#comment-38292
  6. Hello, can you send me by private message your paypal email
  7. Hello, can you give more detail about your problem
  8. Hello, Check if Wow and WRobot are updated Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  9. Update in progress (http://www.wowhead.com/bluetracker?topic=17617783505)
  10. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 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/ ).
  11. https://wrobot.eu/forums/topic/3685-50fps-too-high-fps/?do=findComment&comment=18417
  12. Hello, If you can try again and tell me if problem is resolvedHello, please wait tomorrow for the map update.
  13. Hello, If you can try again and tell me if problem is resolved
  14. Hello, If you can try again and tell me if problem is resolved
  15. Hello, can you give me your (de)buffs list (you can get it in tab "Tools" > "Dev... tools", button "buff....")
×
×
  • Create New...