Jump to content

Fixing Shadow Tank Spikiness


Kitru

Recommended Posts

It *used* to be. Now, it'll melt your face off if you're not specifically prepared for it. Thermal Tolerance's CD was reduced so that it gets used *right before"* Force Cloak goes off of CD and it punches right through Resilience so that won't even buy you some time (because, you know, Jesse Sky just wants Resilience to be worthless). Of course, it's interesting that this is probably the *only* fight where Phase Walk is actually an asset since you can instantly break LoS by popping behind a pillar with it. When I did it, it was a bit of a rude awakening as I went from being able to do the things that made it a joke of a fight before (using Resilience and Force Cloak to ignore Thermal Tolerance) and discovering that they did nothing. The standard tanking was a joke like always, but it was annoying as hell to find out that they redid Thermal Tolerance specifically to screw over Shadows.

 

Let me guess saber reflect works on it?

 

 

You keep going on about probability this, probability that. I'm talking about what I've seen and what I've done. All your probabilities are nothing more than educated guesses. Probability isn't ever going to stand up against the chaos that is a RANDOM number generator.

 

The "chaos" of a number generator isn't chaos at all, infact isn't not even close to it. As Kitru mentioned before it's unsure if real chaos and therefore true random numbers exist. Most random generators work by inserting numbers(the seed) into a function that converts the numbers into a given range. The functions are made in such a away that the number appear random and that they will pass the appropiate statisical test for the chosen distrubition. The seed used in computers are usually the millisecond of the time and when you want more control the seed can be chosen by the user. Given the same seed the exact same random numbers will be generated.

 

The range these functions usually give is 0 to 1 since it can be shown that given a set of these numbers you can generate the other distrbutions like normal and such. Most(all i think, are there any exceptions?) distributions in swtor are binomial(aka a series of events X1,X2,X3,...XN either they happen or they don't happen) or uniform(like the dmg range for instance). The math discussed here about the probability of a spike is bionomial if we don't consider the dmg ranges.

 

TLDR: The numbers from random number generators are chosen so they pass statistical tests, not because they are truly random.

Link to comment
Share on other sites

  • Replies 662
  • Created
  • Last Reply

Top Posters In This Topic

You keep going on about probability this, probability that. I'm talking about what I've seen and what I've done. All your probabilities are nothing more than educated guesses. Probability isn't ever going to stand up against the chaos that is a RANDOM number generator.

 

Statistical models are used to model every aspect of our lives that has even the smallest iota of randomness. Your statement is patently false.

 

Secondly, depending up your opinions on chaos theory, there is either no such thing as a truly random number generator or no such thing as a *virtual* truly random number generator. Computers are incapable of actual random number generation since all they do is run processes to get answers. What computers do to achieve what is *perceived* as a random number is to do calculations that are based upon given variables that change without appreciable ability for people to control. Generally, this means going off of time (microseconds are pretty popular) since, if you use a small enough unit, it's beyond the ability of a person to functionally reproduce. There are a bunch of other randomization constructs, but the basics of it is that computers don't actually generate random numbers: they simply generate the *illusion* of random numbers within an entirely predetermined system.

 

Let me guess saber reflect works on it?

 

The "chaos" of a number generator isn't chaos at all, infact isn't not even close to it. As Kitru mentioned before it's unsure if real chaos and therefore true random numbers exist. Most random generators work by inserting numbers(the seed) into a function that converts the numbers into a given range. The functions are made in such a away that the number appear random and that they will pass the appropiate statisical test for the chosen distrubition. The seed used in computers are usually the millisecond of the time and when you want more control the seed can be chosen by the user. Given the same seed the exact same random numbers will be generated.

 

The range these functions usually give is 0 to 1 since it can be shown that given a set of these numbers you can generate the other distrbutions like normal and such. Most(all i think, are there any exceptions?) distributions in swtor are binomial(aka a series of events X1,X2,X3,...XN either they happen or they don't happen) or uniform(like the dmg range for instance). The math discussed here about the probability of a spike is bionomial if we don't consider the dmg ranges.

 

TLDR: The numbers from random number generators are chosen so they pass statistical tests, not because they are truly random.

 

I have put together a quick computer lesson for all of you following along at home to explain where randomness comes from. Computers have two 'random' devices. One is the hardware random device and the other is in software.

 

I do a bit of over-simplification to make my argument shorter. For the adventurous, there is a decent Wiki article on this that is fairly high level: http://en.wikipedia.org/wiki//dev/random

 

/dev/random vs /dev/urandom

 

/dev/random is truly random. /dev/urandom is psuedorandom and "random enough". For cryptographic usage where true randomness matters, /dev/random is what is used (for you Java developers, its the difference between SecureRandom and Random). I italicize truly as it is as random as everything else in the universe. I am not here to debate philosophy.

 

/dev/random is populated based on entropic feedback from peripherals. This is generated by minute fluctionations in signals from your monitor and graphics card, keyboard and mouse activity (and signal variation when idle) among other non-predictable things. /dev/random (or HW random for you non-POSIX types) has a major problem though; it is a blocking device. If there is not enough entropic feedback, applications will block until there is sufficient random data to fullfill the request. Additionally, reads of /dev/random are sequential across all threads and processes. This leads /dev/random to appear 'slow' as only one read request can be done at a time across everything running on your system.

 

To get around this, most operating systems/programming languages provide a psuedorandom device (in the POSIX world, this /dev/urandom). The advantage of /dev/urandom is that it permits non-blocking IO and is very hard to exhaust (since effectively the kernel will just spout nonsense based on a reusable pool of data into it after every read). The down side is that it is not truly random (it is however, random enough for most uses outside of cryptography and security). It is often an algorithm based on the number of occurances a very small time unit since a fixed point in time (such as the POSIX or DOS epochs). For example, the number of nanoseconds that have elapsed since January 1st, 1970, 00:00:00.000 UTC (the POSIX epoch).

 

I can guarantee you no game developer would use the HW based /dev/random as it would inject uncontrollable, difficult to predict lag spikes depending on what else is running on their systems. Additionally, servers tend to have serious issues keeping /dev/random full during high utilization of randomization as they have less peripherals than a desktop (unless they have dedicated hardware to generate random data) so entropy accumulates very slowly (I know Sun/Oracle Sparc systems have ways around this, but I doubt SWTOR is backed by the Solaris OS running on Sparc chips. It is far more economical in terms of cost to system performance to use commodity x86/x86_64 based hardware running Linux or Windows).

 

Additionally, using a psuedorandom number generator allows you to have valid unit testing, as for the same seed, the sequence of random data returned is always the same. For those who don't believe me, I can write you a quick program that you can play with to prove it to yourself (since I doubt you would trust my logs).

 

So, given how many combat rolls are going on across however many threads and how many application instances on each of their backend hardware platforms, I am going to assume with 98% confidence they are using the psuedorandom device if for no other reason that performance.

 

Why does this matter?

 

The psuedorandom number generator (/dev/urandom) is deterministic over sufficiently large datasets or samples of random data (even without knowing the seed). Given no outside influence, this might give one pause when considering the statistical models used by the likes of KBN and dipstick.

 

If you are someone that believes that this fact has any impact on our ability to create valid statistical models then I have some swampland in Florida to sell you.

 

Given the number of variables in play, such as the number of attacks (controlled by humans) going on in a given piece of software on a piece of hardware at a fixed point in time, the deterministic behavior of the psuedorandom number generator is statistically eliminated by the number of truly random variables involved in its consumption.

 

TL;DR: The RNG is as close to truly random as matters for the sake of the statistical models used to model incoming damage to tanks. As such, the statistical models are great tool to determine, given a fight, the statistically most likely outcome. This post makes no argument for or against the accuracy of the assumptions used in the statistical models and simply seeks to eliminate the 'randomness' or the RNG as something that has any bearing on this discussion.

Edited by xnightshadex
Fixing a sentence.
Link to comment
Share on other sites

I have put together a quick computer lesson for all of you following along at home to explain where randomness comes from. Computers have two 'random' devices. One is the hardware random device and the other is in software.

 

That was actually really interesting. I didn't know about the cryptographic random mechanism (I knew there was a secure random, but didn't know the mechanism). Very interesting (even though it was a *complete* departure from the actual conversation, lol).

Link to comment
Share on other sites

For the last time.

 

1) YOU are the one that repeatedly accuses people of "lieing". Apologize for these attacks now.

 

2) The word is "lying". Hence, YOU are the one that needs to "lern to reed" and "rite".

 

1) I will not apologize for anything, if it's the truth.

2) If you find grammar more important then actual content in posts (my "learn to read" was about his incompetence to understand the difference between kephess spikes and frog miniboss spikes), you are in the wrong forum.

 

I stopped participating in this discussion after this post:: "Probability isn't ever going to stand up against the chaos that is a RANDOM number generator. ". (I am not feeding any trolls.)

 

Topic:

Getting killed by spikes is mostly about probabilty of a certain damage over a certain time, when we assume constant healing. If we count burst healing from all the different healer classes in, everything would get far more complex, but for a comparision of all the different tank classes it seems rather unimportant.

The problem the spike simulators in the forums have is that they are not counting specific attacksequences and therefore the probability of a certain amount of damage over a certain amount of time excactly in. As far as i saw kbns simulator is just counting the average probabilty of a certain damage, (e.g. probability of a specific attack times the chance of it being defended/shielded/unmigated), but not the probability of a certain amount of damage over a number of attack chains.

That may work for attacks like terminate (which more or less stands alone), but not for the standard attack chains every gcd an operation boss does.

(Second there are also no defensive cooldowns counted into the calculation as far as i see, just the standard migation. Shadows/Assassin tanks should always cycle with their cooldowns, to prevent all lot spike attacks (resilience for nim thrasher...))

Edited by THoK-Zeus
Link to comment
Share on other sites

(Second there are also no defensive cooldowns counted into the calculation as far as i see, just the standard migation. Shadows/Assassin tanks should always cycle with their cooldowns, to prevent all lot spike attacks (resilience for nim thrasher...))

 

The problem is that the Shadow's cooldowns are nor more numerous, nor avaliable more often (lower CD), nor more powerful. If we consider that they have to use these CD and do so in order to be as competitive as other tanks in regular situations, without taking into consideration feasibility either, then it puts them behind in their ability to survive critical situation, because it will be inevitable that they have less tools to face them. It would turn the problem into another problem.

Link to comment
Share on other sites

The problem is that the Shadow's cooldowns are nor more numerous, nor avaliable more often (lower CD), nor more powerful. If we consider that they have to use these CD and do so in order to be as competitive as other tanks in regular situations, without taking into consideration feasibility either, then it puts them behind in their ability to survive critical situation, because it will be inevitable that they have less tools to face them. It would turn the problem into another problem.

 

They are more powerful then the ones pts have and they have the lowest CDs.

For critical situations you have to take them into account to provide a realistic mathematical modell to explore tank spikes. It's not turning any problem into another one as i am not telling anywhere that they "have" to use their defensive cooldowns to survive Spikes.

I was just stating that it's not a realistic modell to not consider them.

Link to comment
Share on other sites

They are more powerful then the ones pts have and they have the lowest CDs.

For critical situations you have to take them into account to provide a realistic mathematical modell to explore tank spikes. It's not turning any problem into another one as i am not telling anywhere that they "have" to use their defensive cooldowns to survive Spikes.

I was just stating that it's not a realistic modell to not consider them.

 

PTs may not have better CDs than Shadows, but Guardians do (all his CDs are similar or superior). So what a Shadow will avoid/reduce, a Guardian will because he will be able to use similar tools at the same time. So what will differentiate them is the damage profile of what get through these similar CDs.

In the end, when comparing a Shadow with a Guardian, including the CD in the mathematical model becomes optional because not counting CDs may be not representative of reality, but it will not change the relative profiles when comparing these two.

Link to comment
Share on other sites

It *used* to be. Now, it'll melt your face off if you're not specifically prepared for it. Thermal Tolerance's CD was reduced so that it gets used *right before"* Force Cloak goes off of CD and it punches right through Resilience so that won't even buy you some time (because, you know, Jesse Sky just wants Resilience to be worthless). Of course, it's interesting that this is probably the *only* fight where Phase Walk is actually an asset since you can instantly break LoS by popping behind a pillar with it. When I did it, it was a bit of a rude awakening as I went from being able to do the things that made it a joke of a fight before (using Resilience and Force Cloak to ignore Thermal Tolerance) and discovering that they did nothing. The standard tanking was a joke like always, but it was annoying as hell to find out that they redid Thermal Tolerance specifically to screw over Shadows.

 

Let me guess saber reflect works on it?

 

Yes, Saber Reflect works and gives you long enough to get behind the pillar (assuming you don't mess up like I did and prematurely click it). And it even helps with the boost to dps at the same time!

 

I was fortunate that when I tried to tank Xeno on my shadow that I had a group that could warn me that Phase Walk was the only sure fire way to avoid the damage. It's still irritating that they changed the mechanics in a way that took away some of one tank's strength and gave it to a different tank.

Link to comment
Share on other sites

PTs may not have better CDs than Shadows, but Guardians do (all his CDs are similar or superior). So what a Shadow will avoid/reduce, a Guardian will because he will be able to use similar tools at the same time. So what will differentiate them is the damage profile of what get through these similar CDs.

In the end, when comparing a Shadow with a Guardian, including the CD in the mathematical model becomes optional because not counting CDs may be not representative of reality, but it will not change the relative profiles when comparing these two.

 

For spike damage you are not comparing a Shadow with a Guardian, you are comparing how a shadow behaves when getting spike damage and how a Guardian behaves when getting spike damage. You can't get defensive cooldowns out of this equation or else the mathematical modell will be incorrect (I hate to say that again).

You can compare them afterwards but you can't make assumptions on one single parameter before you even have a mathematical modell for spike damage.

Also, they have highly different defensive cooldowns, so I really doubt that it's not changing their relative profiles, but even if they had the excact same defensive cooldowns you couldn't tell how they behave on the damage profile a sin tank has (with high shield/abs....) and how they behave on a jugg, cause they are both 2 completely different tanks...

Edited by THoK-Zeus
Link to comment
Share on other sites

Is the issue that Resilience doesn't effectively "cleanse" the Thermal Tolerance 1 stack debuff after you Force Cloak? I don't remember it doing that on HM last time Xeno was available at 50, but I think it did do that way back when Xeno was brand new. Also, 1 stack isn't going to ruin you. You take +20% damage from 1 stack.

 

I'm also guessing Saber Reflect is a temporary oversight as well and will be nerfed in a future release to also not allow the mechanic to be specifically cheesed. Then again, 10 stacks is pretty brutal for any tank to take here, so even if it buys it down to less stacks, it's probably not terrible. In that case, it is the Vanguards that should be incensed by the Xeno fight right now, not Shadows and Guardians.

 

In any case, I'm not surprised. Almost all instances of Resilience behaving like a "cleanse" have been removed from the game. I think they've over-corrected a little bit in this regard, but even so the devs have made their intentions for Resilience clear. They want it to "block" incoming Tech and Force attacks for 3 to 5 seconds as its primary function. In rare cases, they may allow it to also remove "removable" hostile effects as it says, but it's pretty clear they don't mean for this to be something that defeats their boss mechanics, especially those that would normally force a tank swap. I might suggest they drop that little part of "removes hostile removable effects" from the Tool Tip and do away with it completely since the other tanks don't get a cleanse and that seems like the way they want it to behave. However, until they do, I guess trial and error is the way to see if the devs remembered to block out the oft-forgotten "cleanse" effect of Resilience for any given new or updated content piece. Thermal Tolerance is most likely intended to force a tank swap and possibly other creative LoS actions by the team. If Resilience used to bypass that, they obviously are going to nerf it. Most likely they didn't consider it in the original encounter design and now have accounted for it.

 

Force Cloak did work for me with Xeno on HM.

If your DPS is TOO awesome, you indeed will not be off cool down of Force Cloak before Thermal comes up again, but worst case scenario is that you do a standard tank swap as the mechanic was probably designed to intend.

 

Ultimately is it unfortunate that Resilience is hit again? Sure. But let's keep our eye on the prize, which is armor/DR and/or the overall spikiness issue. Trying to persuade the devs to make Resilience better isn't going to solve the problems with spikiness, which is the number one issue around here right now.

Edited by Aieranda
Link to comment
Share on other sites

Is the issue that Resilience doesn't effectively "cleanse" the Thermal Tolerance 1 stack debuff after you Force Cloak? I don't remember it doing that on HM last time Xeno was available at 50, but I think it did do that way back when Xeno was brand new. Also, 1 stack isn't going to ruin you. You take +20% damage from 1 stack.

 

I'm also guessing Saber Reflect is a temporary oversight as well and will be nerfed in a future release to also not allow the mechanic to be specifically cheesed. Then again, 10 stacks is pretty brutal for any tank to take here, so even if it buys it down to less stacks, it's probably not terrible. In that case, it is the Vanguards that should be incensed by the Xeno fight right now, not Shadows and Guardians.

 

In any case, I'm not surprised. Almost all instances of Resilience behaving like a "cleanse" have been removed from the game. I think they've over-corrected a little bit in this regard, but even so the devs have made their intentions for Resilience clear. They want it to "block" incoming Tech and Force attacks for 3 to 5 seconds as its primary function. In rare cases, they may allow it to also remove "removable" hostile effects as it says, but it's pretty clear they don't mean for this to be something that defeats their boss mechanics, especially those that would normally force a tank swap. I might suggest they drop that little part of "removes hostile removable effects" from the Tool Tip and do away with it completely since the other tanks don't get a cleanse and that seems like the way they want it to behave. However, until they do, I guess trial and error is the way to see if the devs remembered to block out the oft-forgotten "cleanse" effect of Resilience for any given new or updated content piece. Thermal Tolerance is most likely intended to force a tank swap and possibly other creative LoS actions by the team. If Resilience used to bypass that, they obviously are going to nerf it. Most likely they didn't consider it in the original encounter design and now have accounted for it.

 

Force Cloak did work for me with Xeno on HM.

If your DPS is TOO awesome, you indeed will not be off cool down of Force Cloak before Thermal comes up again, but worst case scenario is that you do a standard tank swap as the mechanic was probably designed to intend.

 

Ultimately is it unfortunate that Resilience is hit again? Sure. But let's keep our eye on the prize, which is armor/DR and/or the overall spikiness issue. Trying to persuade the devs to make Resilience better isn't going to solve the problems with spikiness, which is the number one issue around here right now.

 

I think the fact this was brought up was not a call to fix shroud/resilience but rather demonstrate another example as to how content is being designed with a perspective of the Jugg/Guardian as the only tank class that matters (this is reminiscent of Titan 6 in NiM S&V).

Link to comment
Share on other sites

With the changes to thermal tolerance, it is pretty obvious that Jesse Sky is on a quest to remove the shadow tank from the game. He is doing it in a very odd manner by introducing all these little changes that weren't in the game before. If for NIM they used the excuse that they want to make the game more challenging for Xeno they put that change in there and gave the guardian another advantage without any reason. Go figure, the tank that is a faceroll needed another buff.

 

 

I think we, the shadow tank community are using the wrong approach with the developers. We have been avid promoters of fair class balancing but BioWare does not speak this language. So having said that, I start the usual approach on this board ' NERF GUARDIANS'!!!

Link to comment
Share on other sites

Guardian the best. He have the best def CD's, 2 stuns for 4 sec, mass sleep, spam AOE slow, force leap, guardian leap....amazing for PvP tank. His threat/dmg is not the best but not so bad as u think. Vanguard need defense buff to approximately equal with guardian, but he have not so good def CD's. Shadow...too many nerfs, good potential was killed, not re-balanced for better equal with other tanks, just killed. Sad.
Link to comment
Share on other sites

I did Xeno on SM and HM on my shadow main and I got 0 stacks from thermal tolerance every time. The order is resilience, then force cloak, then blackout, then go back to DPS. I even had to taunt back almost immediately once as second tank was low on health for some reason, no problem. Is there any change then? I did everything just like before 2.0.

 

 

Edit: Having read through previous posts more carefully I think I must have got incredibly lucky? The way we do the other tank taunts right when I pop resilience and I stealth out as soon as I can click next button it all happens when he starts his channel. I can't check it again until tomorrow though.

Edited by AAAAzrael
Link to comment
Share on other sites

I did Xeno on SM and HM on my shadow main and I got 0 stacks from thermal tolerance every time. The order is resilience, then force cloak, then blackout, then go back to DPS. I even had to taunt back almost immediately once as second tank was low on health for some reason, no problem. Is there any change then? I did everything just like before 2.0.

 

 

Edit: Having read through previous posts more carefully I think I must have got incredibly lucky? The way we do the other tank taunts right when I pop resilience and I stealth out as soon as I can click next button it all happens when he starts his channel. I can't check it again until tomorrow though.

 

I only did it on SM so far this time, but I was able to do Force Shroud and Phase Walk to much the same effect. I took no stacks and taunted right back. This worked for me on both casts of thermal tolerance.

 

Is it supposed to be different in HM, or is the claim that it doesn't work on either?

Link to comment
Share on other sites

It *used* to be. Now, it'll melt your face off if you're not specifically prepared for it. Thermal Tolerance's CD was reduced so that it gets used *right before"* Force Cloak goes off of CD and it punches right through Resilience so that won't even buy you some time (because, you know, Jesse Sky just wants Resilience to be worthless). Of course, it's interesting that this is probably the *only* fight where Phase Walk is actually an asset since you can instantly break LoS by popping behind a pillar with it. When I did it, it was a bit of a rude awakening as I went from being able to do the things that made it a joke of a fight before (using Resilience and Force Cloak to ignore Thermal Tolerance) and discovering that they did nothing. The standard tanking was a joke like always, but it was annoying as hell to find out that they redid Thermal Tolerance specifically to screw over Shadows.

 

Resilience worked for me, but not super-reliably. Another tank I was doing it with tried Resilience and still gained stacks. So, it seems that the whole "minimum hit chance" thing is a bit more like a "maximum application chance".

 

BTW, regarding the randomness discussion… All RNGs used in modern *anything* (cryptography or otherwise) have extremely high entropy and very long periods. This means that in order to distinguish computerized RNG from "true" random, you would need to sample the function once every few milliseconds for the next several hundred thousand years. That is, the pseudo-RNGs used today are, for all statistical intents and purposes, random.

Edited by KeyboardNinja
Link to comment
Share on other sites

Resilience worked for me, but not super-reliably. Another tank I was doing it with tried Resilience and still gained stacks. So, it seems that the whole "minimum hit chance" thing is a bit more like a "maximum application chance".

 

When I was doing HM, *every time* I used Resilience, I kept getting stacks and ended up dying to 'em. It *completely* ignored it. First few times we did it, I could only imagine that it was bugging out for some reason. After the third time it gibbed me (before Force Cloak was off CD, to boot), I said screw it and started resorting to Phase Walk.

Link to comment
Share on other sites

With the changes to thermal tolerance, it is pretty obvious that Jesse Sky is on a quest to remove the shadow tank from the game. He is doing it in a very odd manner by introducing all these little changes that weren't in the game before. If for NIM they used the excuse that they want to make the game more challenging for Xeno they put that change in there and gave the guardian another advantage without any reason. Go figure, the tank that is a faceroll needed another buff.

 

 

I think we, the shadow tank community are using the wrong approach with the developers. We have been avid promoters of fair class balancing but BioWare does not speak this language. So having said that, I start the usual approach on this board ' NERF GUARDIANS'!!!

 

If we are going to jump off of the fair and balanced wagon, let's go this route:

 

  • Restore 150% armor bonus from Dark Charge/CT
  • Restore armor bonus to Hand of Darkness/Martial Prowess talent
  • Restore self-heals to pre 1.6 levels
  • Restore tank damage output to pre-2.0 levels

 

As an olive branch to prevent the insane DPS based shadow/sin tanks in PVP that led to the castration of shadow and assassin tanks in the first place, I would be willing to leave Dark Charge at 115% and move that other 35% to somewhere high in the Darkness/KC tree.

Link to comment
Share on other sites

As someone who has healed (much to my chagrin) Shadow tanks and has tanked damn near everything with my Guardian, I'll wholeheartedly agree that Shadows need a buff to remove their spike damage levels to bring them on the same page with the other 2 tanks in this game. Some sort of flat mitigation boost is absolutely necessary for me to even consider taking them on ops with my group over an equally geared and skilled Vanguard or Guardian. The proposed damage reduction boost (~5%) would do some, but in my opinion not enough. A boost to both flat damage reduction and perhaps an additional 2% for both Shield and Absorb at the expense of some self heals would work wonders for this class' survivability. It's just so frustrating seeing good tanks die or come very close to death due to the nature of a class even when they do everything absolutely correctly. Thank you Kitru for starting this thread and bringing this serious issue to light to the developers.
Link to comment
Share on other sites

When I was doing HM, *every time* I used Resilience, I kept getting stacks and ended up dying to 'em. It *completely* ignored it. First few times we did it, I could only imagine that it was bugging out for some reason. After the third time it gibbed me (before Force Cloak was off CD, to boot), I said screw it and started resorting to Phase Walk.

 

 

This is very interesting. I will surely update after I do it again after reset. Can you do that as well Kitru?

Link to comment
Share on other sites

This is very interesting. I will surely update after I do it again after reset. Can you do that as well Kitru?

 

I expect I'll just do the Phase Walk every time. I'll use Resilience during the channel while Phase Walk is activating but I doubt I'll be able to see any difference.

Link to comment
Share on other sites

I expect I'll just do the Phase Walk every time. I'll use Resilience during the channel while Phase Walk is activating but I doubt I'll be able to see any difference.

 

OK I'll do it the old way, maybe even try to single tank if I can get a group to agree to it. We'll see if I die.

Link to comment
Share on other sites

It's simple, the word is out because of real life experience, not math. Shadow tanks are not a welcome sight in ops. It is really really happening that we are being turned away and replaced by guardians. I say good for guardians but shame to whoever did this to us for not correcting this totally obvious situation. I see it also in the gear. Not one piece of underworld gear has BIS enhancements. Alacrity? Accuracy? come on. I listened to a GS today from my guild show off his MH underworld and say "look at it. It's perfect. All the mods are perfect". Now I've played every class from dps to heals to tank and none other used to match my shadow being fun and a challenge to play properly. Now it's just being drained of all that.
Link to comment
Share on other sites

It's simple, the word is out because of real life experience, not math. Shadow tanks are not a welcome sight in ops. It is really really happening that we are being turned away and replaced by guardians. I say good for guardians but shame to whoever did this to us for not correcting this totally obvious situation. I see it also in the gear. Not one piece of underworld gear has BIS enhancements. Alacrity? Accuracy? come on. I listened to a GS today from my guild show off his MH underworld and say "look at it. It's perfect. All the mods are perfect". Now I've played every class from dps to heals to tank and none other used to match my shadow being fun and a challenge to play properly. Now it's just being drained of all that.

 

I have literally changed my assassin to madness in protest. LOL its not like I am going to take him on hm, I have all 72 gear with set bonus. No point in trying to take him for NiM because even with all 72's I get one-shotted by TWH or Dash'rood. I actually have solid DPS gear, and have managed to get in a couple PUG groups as a gimp DPS. I just dont mention I have a geared Juggernaut, otherwise they would make me tank.

 

I feel like my toons were raped. They were raped by AP and his gang of Assassin hating thugs. I miss tanking with that toon.

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.