Jump to content

BetterSister

Elite user
  • Posts

    1887
  • Joined

  • Last visited

Everything posted by BetterSister

  1. i let the bot run for the night and it didn't crash!
  2. if you can't find changelog it means it is a hotfix where Droidz is attempting to fix something (bugs from bugtracker or some other reported issues) on the side of working on something bigger
  3. windows defender can cause same issue by denying something that it doesn't like causing a crash
  4. What antivirus and firewall and windows do you have @tomei My game just crashed even with "reduce input lag". I started thinking if it's because of Avast...
  5. Basicly currently the problem is that it follows tank in combat and all if going too far doing fine but if tank goes out of line of sight (behind tree, hill or something) it'll just stand there like mushroom in shit. Any ideas how to improve this? For some reason with MovementManager.MoveTo(tank) it requires straight line to the target without anything on its way #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); while (tank.GetDistance > 15) { MovementManager.MoveTo(tank); } MovementManager.StopMove(); return false; } #endregion
  6. BINGO! i just remembered that back in moltens low population days if my game crashed i got the exact same error every now and then but it was because of some graphics settings example "reduce input lag" fixed it for me. Ever since i used it but for some reason i don't have it enabled now! gotta try it out
  7. Oh and while we're at it please remove your username from the crash files because it can potentionally get you banned if warmane staff checks the website. I've been banned for 3 days and i already regret getting busted (was own fault tho... stupid head hurts the whole body)
  8. So it isn't custom... i have custom PC with 2 sticks of 1 model ram and 1 stick of other model ram so it wouldn't be any surprise if it would cause problems for me but before we get your problem fixed i can't really count on RAM fault
  9. what RAMs your PC has? I'm starting think about faulty memory Reasons for it is the crash dump tells that WoW tried to write something to memory and crashed because of it... But in other hand the crashes happen (for me atleast with same error) only if bot is active
  10. How do i tell the bot to do *something* if there is Elite nearby? currently: #region Wrath bool Wrath() { if (!_wrath.KnownSpell) return false; if (!_wrath.IsSpellUsable) return false; if (ObjectManager.Me.ManaPercentage > 50) { WoWPlayer tank = getTanks().First(); WoWUnit target = tank.TargetObject; if (ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(tank.Position) <= 8 && UnitCanAttack.CanAttack(u.GetBaseAddress, tank.GetBaseAddress)) >= 3 || ObjectManager.Target.IsElite) //to improve with elite area check { return false; } Interact.InteractGameObject(target.GetBaseAddress, true); MovementManager.Face(target); _wrath.Launch(); } return false; } #endregion
  11. on 3.3.5a it did the same for me but after changing some settings it at somepoint started working properly
  12. Strange thing is that it freezes for 6 hours and then throws the error (on the 2nd log)
  13. hard to fix something if you don't do what is asked
  14. @Droidz should add a condition for checking ground debuffs and then moving away from it. Or atleast add a way to tell the bot to move at some direction
  15. i think you can't do that with xml only. Maybe with LUA or C# additional code but guaranteed with C# only
  16. same issue as i have but for me it happens mostly on automation and sometimes on Party too :/ edit: post #100
  17. it's working now :) Server is just laggy as fuck so it's causing the bot to be little weird
  18. var tank = getTanks(); WoWUnit target = ; Interact.InteractGameObject(target.GetBaseAddress); _wrath.Launch(); now i got the tank but then i can't get it to find the target... if i tried to use wowplayer then it threw shit ton of error.
  19. otherwise good but now i can't get it to read the name from settings :/
  20. i've been trying to improve druid heal profile but my skills aren't enough at this point. Could someone help me with this? it is in C#
×
×
  • Create New...