Everything posted by BetterSister
-
Battlegrounder Crashes
i let the bot run for the night and it didn't crash!
-
Patch Notices?
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
-
Battlegrounder Crashes
windows defender can cause same issue by denying something that it doesn't like causing a crash
-
Battlegrounder Crashes
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...
-
Improving tank(Too)Far()
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
-
Battlegrounder Crashes
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
-
Battlegrounder Crashes
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)
-
Battlegrounder Crashes
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
-
Battlegrounder Crashes
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
-
Elite nearby? C#
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
-
[5.4.8] Bot goes to town on its own.
on 3.3.5a it did the same for me but after changing some settings it at somepoint started working properly
-
Battlegrounder Crashes
Strange thing is that it freezes for 6 hours and then throws the error (on the 2nd log)
-
Height flying in outland
oh
-
[Suggestion] Start all Bots with 1 Key and Force stop fight
ETA?
-
Height flying in outland
hard to fix something if you don't do what is asked
-
Help Lua Avoid ground AOE from bosses?
@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
-
Switching stances after pull
i think you can't do that with xml only. Maybe with LUA or C# additional code but guaranteed with C# only
-
Battlegrounder Crashes
same issue as i have but for me it happens mostly on automation and sometimes on Party too :/ edit: post #100
-
Feral Fight Class PVP
i think only if you code your own using C#
-
Targeting tanks target and casting spells on it
it's working now :) Server is just laggy as fuck so it's causing the bot to be little weird
-
Targeting tanks target and casting spells on it
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.
-
Targeting tanks target and casting spells on it
otherwise good but now i can't get it to read the name from settings :/
-
Targeting tanks target and casting spells on it
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#
- Battlegrounder Error Popup
- Crashing with Automation