Jump to content

Droidz

Administrators
  • Posts

    12586
  • Joined

  • Last visited

Everything posted by Droidz

  1. hello, In "Dev... tools" tab "Tools" click on button "Target info". Check "CastingSpellId" and "CastingSpell", if this don't help you can only check when character is mounted with "IsMounted". You can use it in fightclass editor with "CSharp condtion" like: wManager.Wow.ObjectManager.ObjectManager.Target.IsMounted // OR wManager.Wow.ObjectManager.ObjectManager.Target.CastingSpell.Name == "Name in Engish" // OR wManager.Wow.ObjectManager.ObjectManager.Target.CastingSpellId == 1234
  2. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  3. Droidz

    alerte virus

    Bonjour, Avec quelle antivirus? C'est un faux positif, vous pouvez l'ajouter à la liste blanche de votre antivirus
  4. Hello, I am not sure but: using System; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; bool first = true; uint displayId = 0; var t = new Timer(1000 * 1); // 1 sec while (_isLaunched && Products.IsStarted) { try { if (Conditions.InGameAndConnectedAndProductStartedNotInPause) { if (first) { displayId = ObjectManager.Me.DisplayId; first = false; } if (t.IsReady) { t.Reset(); if (ObjectManager.Me.DisplayId != displayId) { Products.ProductStop(); // or close: Environment.Exit(0); Logging.Write("Display change."); } } } } catch (Exception e) { Logging.WriteError("[Display change]: " + e); } Thread.Sleep(150); } } public void Dispose() { _isLaunched = false; } public void Settings() { } }
  5. Hello, try to use option "Try to avoid group of mobs" in advanced general settings tab "pathfinding" instead "ignore fights while traveling"
  6. You play on another server? to check if you have same problem? I'll try to reproduce this
  7. I don't really know Wotlk's API
  8. https://github.com/goldpaw/WoW_UI_Source_WotLK https://github.com/goldpaw/WoW_UI_Source_WotLK/blob/7ac7bc5b6ebc57f7de70c64aaf61072bb22bc511/FrameXML/LFRFrame.lua#L669 https://wrobot.eu/forums/topic/4607-wotlk-looking-for-wow-api/?do=findComment&comment=21440
  9. Hello, We have never had a problem here with Bambo. You make accusations without giving any evidence. I hope this story will be resolved soon, but it has nothing to do with WRobot I close this subject. EDIT: I don't ban you, but please don't create new thread about that. If you need to speak send me private message.
  10. Hi, It really depends on the dungeons. You can look https://wrobot.eu/files/file/453-dungeon-the-temple-of-atalhakkar/?tab=comments (lua code depend of game version), you can also check unit count: wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(123456).Count > 0 (if you are in dunjon and if he is small), you must be clever.
  11. you play in what server?
  12. Hello, you have check if you get also this problem with wrotation product? You have try with another wow client?
  13. Hello, In dev tools (tab "Tools") use button "Target info" when unit is cursed and when is not cursed (and use kdiff or website like http://www.mergely.com/editor to check what change)
  14. Droidz

    ...

    You have try to activate/deisable "use lua to move" in advanced general settings? If that's not it I don't know
  15. Droidz

    ...

    it is key "space" to jump? try to increment you min latency in advanced general settings.
  16. Droidz

    ...

    you have try to don't use figthclass?
  17. Droidz

    ...

    You have try with another mount?
  18. Droidz

    ...

    In fly mount name you use Tawny Windrider I think you want use: Tawny Wind Rider
  19. Hello, install required softwares: https://wrobot.eu/files/file/2-wrobot-official/ If problem is not resolved in advanced general settings use option "Use lua to move"
  20. Droidz

    ...

    Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  21. hello, WRobot changes some Wow options, but if you close WRobot correctly normally it will reset your settings. You can also close Wow close window button (not from wow menu), when close wow like that he don't save change
  22. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ) (if you can also record video).
  23. in your log wow don't seem to crash. If you can try to download another wow client (in another website)
×
×
  • Create New...