Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, try to run wrobot with shortcut "WRobot (No DX hook)" or "WRobot (DX hook)"
  2. Hello, what product do you use? quester? grinder? gatherer?
  3. hello, To start, disable wow addons. If problem is not resolved: if you use option "use lua to move" disable it, else try to enable it (in advanced general settings)
  4. Hello, is done
  5. 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/ ).
  6. You need to remove if from list. If you use this profile frequently you can add this task to the profile so that you don't have to do it manually each time.
  7. Hello, you can add node names to list of object to not gather (in advanced general settings)
  8. Hello, download wow client in another website (to use default Wow files)
  9. Hello, in mount name use Flight Form and not flight form
  10. your code is illogical, mouseover is in wrobot API you don't need to write in memory manually, why do "o.Name == o.Name" ? Why blacklist corpse in blacklist for hostile unit? (and search corpse without check if corpse is in this blacklist). It's nice to help, but this type of code can mislead users. Code (not tested) with target should look like: var revive = new Spell("Revive", false); if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !ObjectManager.Me.IsCast && revive.KnownSpell && revive.IsSpellUsable) { var corpse = ObjectManager.GetObjectWoWCorpse().Where(c => !wManager.wManagerSetting.IsBlackListed(c.Guid)).FirstOrDefault(); if (corpse != null && corpse.IsValid) { Interact.ClearTarget(); // or Interact.InteractGameObject(corpse.GetBaseAddress); revive.Launch(); Interact.InteractGameObject(corpse.GetBaseAddress); wManager.wManagerSetting.AddBlackList(corpse.Guid, 1000 * 60 * 10); } } with focus should look like: var revive = new Spell("Revive", false); if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !ObjectManager.Me.IsCast && revive.KnownSpell && revive.IsSpellUsable) { var corpse = ObjectManager.GetObjectWoWCorpse().Where(c => !wManager.wManagerSetting.IsBlackListed(c.Guid)).FirstOrDefault(); if (corpse != null && corpse.IsValid) { var old = ObjectManager.Me.FocusGuid; ObjectManager.Me.FocusGuid = corpse.Guid; revive.Launch(true, true, false, "focus"); ObjectManager.Me.FocusGuid = old; wManager.wManagerSetting.AddBlackList(corpse.Guid, 1000 * 60 * 10); } }
  11. Droidz

    battlegound

    this problem is normally resolved in new update
  12. Wait next update, I added new quest type (this type combine kill and loot and gather). You can use several quests/objectives in one quest (wrobot will go to nearest objective and stop farm/attack if objective complete, but continue the others), it is sample (pulse only) with the quests https://www.wowhead.com/quest=46/bounty-on-murlocs , https://www.wowhead.com/quest=52/protect-the-frontier and https://www.wowhead.com/quest=5545/a-bundle-of-trouble : test grindergatherer.xml
  13. I'll release fix on all version in next update (during next week I think)
  14. Hello, Sorry I cannot with current used function to get lua variable.
  15. Maybe I found, I release it only for tbc, tell me if it is that (or not)
  16. hi, call UpdateSpellBook() reload fightclass (call ICustomClass.Dispose() and abord thread created to run ICustomClass.Initialize())
  17. Hello, I told you several time to use new version to resolve this problem ( https://wrobot.eu/forums/topic/12149-how-to-disable-anti-stuck/?do=findComment&comment=58222 ) I write several plugins for you, but now I am sure at 90% that you use old cracked versions, you can have the respect not to spam my forum when I helped you while you are dishonest. Cracked version is very old, he has detected by most of the servers, your server is probably recent or small so as not to detect it yet (and no plugins can change that). Now if you want help buy key (if the price is too expensive for you send me a message we can negotiate)
  18. You use last version?
  19. Use last version you will not have this problem
  20. Hello, all seems good, can you share full log file please. check if you haven't put bad space in items name
  21. Hello, try this custom profile: Prospecting.cs
  22. About first, you can disable option ignore fight when mounted (or use caster). Normally wrobot ignore mobs if they are far away, but finding the right distance is complicated
  23. Hello, Thank you for report. It is know problem, for now I haven't good solution, but these behaviors will be improved little by little
  24. You use recent version? because in recent version? normally the antistuck does not start if the person and stun or freeze. using System.ComponentModel; using wManager.Plugin; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { wManager.Events.MovementEvents.OnPulseStuckResolver += delegate(CancelEventArgs cancelable) { cancelable.Cancel = true; // Products.ProductStop(); }; } public void Dispose() { _isLaunched = false; } public void Settings() { } }
×
×
  • Create New...