Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Use "radar3d" (tab map) to try to understand what happen. But I think that WRobot try to go to position who is in the instance. For instance it is better to use quester
  2. you can also try to download wow client on another website (to be sure that your client is not modified)
  3. No sorry, update your windows (or make VM with more recent windows version)
  4. Hello, I think that problem is caused by "wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true". Disable also "wManager.wManagerSetting.CurrentSetting.LootMobs = false;" and enable it sometime to loot killed mobs.
  5. problem is that you use outdated version of Windows. Try to put NoFakeCallStack.bat in wrobot folder and run WRobot with that
  6. you use quester? if yes after step to pulse followpath add step type "RunMacroLua" and use in param "/use YourItemName"
  7. Hello, when you upgrade your key to need to restart all running sessions to apply new limit. You should no longer have this problem.
  8. Hello, try to run wrobot with shortcut "WRobot (No DX hook)" or "WRobot (DX hook)"
  9. Hello, what product do you use? quester? grinder? gatherer?
  10. 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)
  11. Hello, is done
  12. 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/ ).
  13. 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.
  14. Hello, you can add node names to list of object to not gather (in advanced general settings)
  15. Hello, download wow client in another website (to use default Wow files)
  16. Hello, in mount name use Flight Form and not flight form
  17. 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); } }
  18. Droidz

    battlegound

    this problem is normally resolved in new update
  19. 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
  20. I'll release fix on all version in next update (during next week I think)
  21. Hello, Sorry I cannot with current used function to get lua variable.
  22. Maybe I found, I release it only for tbc, tell me if it is that (or not)
  23. hi, call UpdateSpellBook() reload fightclass (call ICustomClass.Dispose() and abord thread created to run ICustomClass.Initialize())
  24. 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)
×
×
  • Create New...