Spell.Buff("Arkanian Relic of Imperiling Serenity", ret => Me.HealthPercent <= 40),
doesn't seem to be working...
{ new ClassTunables() {
Class = CharacterClass.Trooper,
RejuvenateAbilityName = "Recharge and Reload",
SelfBuffName = "Fortification",
IsRejuvenationNeeded = (torPlayer) => { return ((torPlayer.HealthPercent < 70) || (torPlayer.ResourceStat < 5)); },
IsRejuvenationComplete = (torPlayer) => { return ((torPlayer.HealthPercent >= 95) && (torPlayer.ResourceStat > 9)); },
NormalizedResource = (torPlayer) => { return (torPlayer.ResourceStat); }
}},
torPlayer.ResourceStat * 100 / 12
BTW: is there any way for bot to vendor everything (don't ask me why ) even medpacks, stims, orange, artifact, everything?
I'm wondering if i'm doing anything wrong with my lvl 19 Shadow .. when i use pure, all it does is Saber strike and shadow strike .. and when i use Walter's it just stands at range and does is cast ranged abilities (not good as a shadow)...a combo of the two CR would be awesome so that it would actually use all my abilities![]()
Code:{ new ClassTunables() { Class = CharacterClass.Trooper, RejuvenateAbilityName = "Recharge and Reload", SelfBuffName = "Fortification", IsRejuvenationNeeded = (torPlayer) => { return ((torPlayer.HealthPercent < 70) || (torPlayer.ResourceStat < 5)); }, IsRejuvenationComplete = (torPlayer) => { return ((torPlayer.HealthPercent >= 95) && (torPlayer.ResourceStat > 9)); }, NormalizedResource = (torPlayer) => { return (torPlayer.ResourceStat); } }},
Can someone correct this for Trooper, i didn't check other classes but mine wasn't recharging for ammo, only for health.
original line:
Code:torPlayer.ResourceStat * 100 / 12
i believe you are correct. i am only here from 2.0 so i don't know what was before, but i noticed mine wasn't recharging for ammo and without 100/12 thing its working for me![]()
Pure is only really designed for level 50 and 55 ops and flashpoints. As such, there are some dependencies on talents and procs that your character might have.
The Pure rotation for Shadows (I'm guessing you're infiltration?) should go:
Cast Breach when 3 stacks of Breaching Shadows
Cast Project when 2 stacks of Circling Shadows
Cast Shadow Strike when behind enemy
Cast Spinning Strike when enemy below 30% hp
Cast Clairvoyant Strike when less than 2 stacks of Circling Shadows
Cast Saber Strike
So the problem is that you don't have a lot of the necessary talents yet. This makes the bot only cast those two abilities because it's waiting for stacks of buffs that won't come.
I'm not sure why Walter's isn't working, you should post a log over there for him. My suggestion would be to use his (if he can fix the problems you're having) until you get high enough to get those proc abilities I mentioned.
I just added a Cast Double Strike right above Saber Strike, and now it works much better, cause even tho i'm 22 and have the Circling shadows buff, it didn't activate, cause i only had double strike and shadow strike to activate the buff, so now it goes much faster![]()
Prior to 2.0, Troopers ran on 12 ammo cells instead of 100. This made for weird recharge issues (you lost 4 bars of regeneration at 6.7 ammo or something silly like that) so they fixed it to 100. I'll get a change up in a bit.