alltrueist
Active Member
- Joined
- Dec 10, 2012
- Messages
- 1,424
BW doesn't work in PvP. Problem solved.
BW doesn't work in PvP. Problem solved.
BW works in PVP, just not optimally. And problem is not solved until it works properly.
I am thinking what might cause the bot to hang, could be crowd control. If I remember right it is almost certain to hang after a crowd control.
Stealth causes GetHealth errors, which crash the bot.
in Sentinel combat.cs in the aoe sectio you have
Spell.Cast("Cyclone Smash", ret => Me.CurrentTarget.Distance <= 0.5f)
when it should be
Spell.Cast("Cyclone Slash", ret => Me.CurrentTarget.Distance <= 0.5f)
Also i read a few post before, to have a default and pure in the routines folder. i only have pure (only using rotation, not moving) Am i doing something wrong?
Hi, i notice SWTOR crashes sometimes when Force Speed is activated. I'm using a Jedi Shadow(Balance). No error message or anything. Not sure if its my graphic driver or just the game. When I'm not on Buddywing that doesn't happen. BTW... just wanted to say this rotation has been serving me well besides that.
I'm looking at Plasma Probe-- is it a ground targeted AoE? I don't have a high-level Sniper, so I have no idea. That could be the reason why it's not functioning correctly.
I just put a fix on the SVN: changed Plasma Probe from Spell.Cast to Spell.CastonGround.
Update from SVN and see if that fixes the problem.
You can put Covered Escape in your rotation, but I won't put it in there automatically. It's a dangerous ability to trust the bot to use, since it rolls forward (bot will do something dumb like roll off a ledge or into fire).
If you want help putting it into your version, just let me know.
It would just be:
Spell.Cast("Covered Escape"),
If you want to add conditionals, for example, making sure your target is within 15 feet:
Spell.Cast("Covered Escape", ret => Me.CurrentTarget.Distance <= 1.5f),
For your second post about Crouch: which routine? Which spec?