MMO News and theorycrafting for advanced MMO gamers. News and articles that relate to your gameplay. World of Warcraft, SWTOR, Guild Wars 2, Rift, TERA, Eve Online, Star Wars the Old Republic, Diablo3, The Secret World and all Western AAA MMOs

Your login from any MMO-Mechanics forum or site will work here.

Hello There, Guest! Register

Post Reply 
Project "Shield"
02-10-2012, 01:05 AM (This post was last modified: 02-10-2012 01:05 AM by MagicSN.)
Post: #21
RE: Project "Shield"
Project Shield V 1.0 reached (projectshield.codeplex.com).

Tank support considered complete now.
Find all posts by this user
Quote this message in a reply
02-10-2012, 09:52 PM
Post: #22
"Project Shield" needs your help!!!
Hello!

In this post I describe how you can help me to support more classes/specs for "Project Shield". As an introducting remark, opposed to the "ideagiver" of my project (the program "Rawr" from WoW) my tool is not able to dynamically adapt to changing specs. So for each class only a fixed set of specs is supported and not "how does the dps change if I do not spec into this talent".

My problem is that I don't know too much about many of the specs in SWTOR (I know about tanks, basically, that's currently the limit of my knowledge, and some minor knowledge on gunslingers and sages ^^)

This is how you can help me to add support for a new spec now:

1. Tell me what talents are involved which modify the combat result (especially talents which raise stats - even if only temporary - like Crit, Strength etc.).

2. Define an "optimal" fight-rotation (I would say at least 5 minutes long) against an enemy with unlimited hit points (single target!) for your class/spec. When you develop this sequence you HAVE to take things like resource-costs (force, energy etc.) into account, and try to optimize the sequence as best as possible !!!

The result of "2." is then written into a method like this (you can do this even if you are no programmer ^^), I am giving here an example (I did not list the complete method, that's why the "..." in the middle) of the Shadow Tank:

double shadowtankspec::getDPS(StatsDps *dps, double &length)
{
double dmg;
dmg = 0;
length = 0;
dmg+=slowtimeandkineticward(dps,length);
dmg+=forcebreach(dps,length);
dmg+=project(dps,length);
dmg+=doublestrike(dps,length);
dmg+=doublestrike(dps,length);
dmg+=project(dps,length);
dmg+=saberstrike(dps,length);
dmg+=doublestrike(dps,length);
dmg+=saberstrike(dps,length);
dmg+=slowtime(dps,length);
dmg+=forcebreach(dps,length);
// ... continues like that a lot !!!
return dmg;
}

3. Definition of the Damage methods

These methods will be defined in various classes, depending if they are spec-specific (in our example "Shadow-Tank") or AC-Specific (in our example "Shadow") or Class-specific (in our example "Consular"). For example you can define the skill "Project" in the context of the Consular, while "Slow Time" would be defined in the Shadowtank Context.

A definition would look like this:

abilities["consularspec::project"] = new Ability(0.058,0.098,0.78,0.01,kinetic);

and later this:

double consularspec::project(StatsDps *dps, double &length)
{
length += 1.5; // One GCD
return getAbilityDmg((char*)__FUNCTION__,dps->mhdmgmin,dps->mhdmgmax,0,0,dps->dmgbonus,dps->critchance,dps->critsize);
}

(if anyone wonders what the "0"s are about, they are the offhand-damage, and obviously a consular does not have any offhand-damage... for a gunslinger or a sentinel here there would be actual a value - though this part is not yet implemented - it is included in the software design though, so later these classes can be added).

Now, where do you get the data from? The numbers of the upper part you get from

http://www.torhead.com/ability/3aA49qz/project

(click on the "+" on Effect details to see the data we need!!!!)
At the bottom of this page you see:

SpellDamage: SpellType=>Force, StandardHealthPercentMin=>0.058, Slot=>None, Coefficient=>0.78, StandardHealthPercentMax=>0.098, AmountModifierPercent=>0.01, DamageType=>Kinetic
which is exactly the data we need !!!

If you need some special code (for example counting Harnessed Darkness stacks in our example) this needs to be implemented manually into the methods, of course. But if you are no programmer, you could describe the spell mechanics in question to me in text, and I will do the implementation part.

My model currently assumes a bossmob which never dodges/absorbs. I am not sure if this is the best way to handle it, if anyone has any suggestions on this (for example "example boss data") feel free to it. This might be an interesting discussion.

The code could be easily changed by me in the future to include just changes, though.

When you are done with the sequence and the spell details, just email the results to tirionareonwe@gmail.com (that's me !!!) and I will add it to a future version.
Please note that Project Shield currently cannot support Dual Wield classes (Gunslinger, Sentinel), but I *will* add support for them as soon as someone sends me the spell data/rotation data for these classes.

I am aware this is a more simplified approach compared to what Rawr or simulationcraft do, but it's good enough ;-) Basically what Project Shield does is that it runs an example fight with this data 1000 times, and then calculates the average on these 1000 times.

Thanks in advanc for anyone offering to help!!!

MagicSN
Find all posts by this user
Quote this message in a reply
02-11-2012, 03:11 AM (This post was last modified: 02-11-2012 03:19 AM by MagicSN.)
Post: #23
RE: "Project Shield" needs your help!!!
Hi!

I uploaded V 1.01 Beta, which implements the DPS Tab for the Consular Tank.

Current issues (and why this is still Beta):

- Only one spec supported right now (which is consular tank, it does NOT support
Shadow DPS BTW, which uses different skills, this is purely the DPS of the
Tanking priority list)
- I am not 100% sure as to which skills can miss (meaning they use the normal
accuracy, and not the force accuracy) and which not, hope I got it right, maybe
someone "fit" with the tables should have a look at shadowtank.cpp and
consular.cpp in the source-code
- Adrenals/Relics not yet included

In the future I want to add some sort of option to display the damage split up by
ability.

The code does not allow a lot of customization, for example it is not possible to compare different shadow tank specs, it only uses ONE. As well it is not possible to change various choices in the priority list without modifying the source code (like: "Do you want to cast Force Breach on Cooldown or only when the Debuff runs out"). This will probably stay like this. Enough work in other fields ^^ I am thinking though about a fake combat log which displays what happened.

The simulated fight is against a mob with 130000 life. Spinning Strike at 30% *will* be used in the calculation. At least currently this mob is implemented to never defend, and never absorb (Any suggestions? ^^)

Battle Readyness is never used, as I think of it as a defensive CD, not an offensive CD, and cannot really be planned to use it for DPS.

Force Potency is activated on Telekinetic Throws with 3 stacks of Harnessed Shadows.

Projects without Procc are "in", but according to the simulation it did not make much of a difference, if I let them "in" or not. Basically the same DPS.

MagicSN
Find all posts by this user
Quote this message in a reply
02-17-2012, 10:51 PM
Post: #24
RE: "Project Shield" needs your help!!!
Hi!

I released today a major update. Main issues currently:

- Data missing for Balance Sage
- In the enhancements/Mods/etc. list the numbers are listed with the wrong
mod names (in the wrong order). I am aware this is a major showstopper (will
be fixed next version)
- Telekinetic throw is currently handled as a cast of the length of the channel.
Due to that no single ticks can crit in this simulation the behaviour is different.
Some specs of the Balance sage especially might have less force than in the
game with this simulation, so this needs to be fixed
Find all posts by this user
Quote this message in a reply
02-18-2012, 02:13 AM
Post: #25
RE: "Project Shield" needs your help!!!
(02-17-2012 10:51 PM)MagicSN Wrote:  Hi!

I released today a major update. Main issues currently:

- Data missing for Balance Sage
- In the enhancements/Mods/etc. list the numbers are listed with the wrong
mod names (in the wrong order). I am aware this is a major showstopper (will
be fixed next version)
- Telekinetic throw is currently handled as a cast of the length of the channel.
Due to that no single ticks can crit in this simulation the behaviour is different.
Some specs of the Balance sage especially might have less force than in the
game with this simulation, so this needs to be fixed

Fixed the second problem in 3.0, and have a lot of data for the Balance sage added (not completely done though). Also noticed that torhead had the ForcePower missing for Shield Generators in the data, added them now to all classes. DPS Relic Calculation effects are still unimplemented which is why the use-effect-relics do not seem to raise the DPS-Calculation.
Find all posts by this user
Quote this message in a reply
02-19-2012, 02:01 AM
Post: #26
RE: "Project Shield" needs your help!!!
data.txt with the set boni fixed (old version had set bonus in some xenotech/exotech items by mistake and such) and also complete data For Balance Sages:

@Head|Rakata Survivor's Headgear|A=_Arm_456_End_55_Will_51_|M=_End_48_Will_37_Abs_29_|E=_End_40_Acc_51_A​bs_20_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Head|Columi Survivor's Headgear|A=_Arm_443_End_51_Will_48_|M=_End_45_Will_34_Def_27_|E=_End_38_Sh_48_De​f_19_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Head|Tionese Survivor's Headgear|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_A​bs_15_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Head|Xenotech Survivor's Headgear|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Def_22_|E=_End_31_Sh_40_De​f_15_|CL=_JCST_|Au=_End_0_@|
@Head|Battlemaster Survivor's Headgear|A=_Arm_456_End_31_Will_33_Exp_50_|M=_End_48_Will_37_Abs_29_|E=_End_40_A​cc_51_Abs_20_|SET=_3_|CL=_JCST_|Au=_End_0_@|
@Head|Exotech Survivor's Headgear|A=_Arm_443_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_A​bs_19_|CL=_JCST_|Au=_End_0_@|
@Head|Energized Survivor's Headgear|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_A​bs_15_|CL=_JCST_|Au=_End_0_@|
@Head|Rakata War Leader's Headgear|A=_Arm_861_End_55_Str_51_|M=_End_29_Str_48_Abs_37_|E=_End_40_Acc_51_Abs​_20_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Head|Columi War Leader's Headgear|A=_Arm_836_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_​19_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Head|Tionese War Leader's Headgear|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_​15_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Head|Xenotech War Leader's Headgear|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_​15_|CL=_JKGT_|Au=_End_0_@|
@Head|Battlemaster War Leader's Headgear|A=_Arm_861_End_31_Str_33_Exp_50_|M=_End_29_Str_48_Def_37_|E=_End_40_Acc​_51_Def_20_|SET=_3_|CL=_JKGT_|Au=_End_0_@|
@Head|Exotech War Leader's Headgear|A=_Arm_836_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_​19_|CL=_JKGT_|Au=_End_0_@|
@Head|Energized War Leader's Headgear|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_​15_|CL=_JKGT_|Au=_End_0_@|
@Head|Rakata Supercommando's Helmet|A=_Arm_861_End_55_Aim_51_|M=_End_37_Aim_61_Abs_11_|E=_End_40_Acc_51_Abs_2​0_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Head|Columi Supercommando's Helmet|A=_Arm_836_End_51_Aim_48_|M=_End_34_Will_57_Def_10_|E=_End_38_Sh_48_Def_1​9_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Head|Tionese Supercommando's Helmet|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Abs_8_|E=_End_31_Acc_40_Abs_15​_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Head|Xenotech Supercommando's Headgear|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Def_8_|E=_End_31_Sh_40_Def_1​5_|CL=_TRVT_|Au=_End_0_@|
@Head|Battlemaster Supercommando's Helmet|A=_Arm_861_End_31_Aim_33_Exp_50_|M=_End_37_Aim_61_Abs_11_|E=_End_40_Acc_5​1_Abs_20_|SET=_3_|CL=_TRVT_|Au=_End_0_@|
@Head|Exotech Supercommando's Headgear|A=_Arm_836_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Abs​_19_|CL=_TRVT_|Au=_End_0_@|
@Head|Energized Supercommando's Headgear|A=_Arm_776_End_43_Aim_40_|M=_End_28_Will_48_Abs_8_|E=_End_31_Acc_40_Abs​_15_|CL=_TRVT_|Au=_End_0_@|
@Head|Orange Customizable Light Armor Headgear|A=_Arm_456_|CL=_JCST_|Au=_End_0_@|
@Head|Orange Customizable Heavy Armor Headgear|A=_Arm_861_|CL=_JKGT_TRVT_|Au=_End_0_@|
@Head|Rakata Force-Master's Headgear|A=_Arm_456_End_44_Will_61_|M=_End_37_Will_61_Pow_11_|E=_End_24_Ala_51_P​ow_37_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Head|Battlemaster Force-Master's Headgear|A=_Arm_456_End_31_Will_33_Exp_50_|M=_End_37_Will_61_Pow_11_|E=_End_24_A​la_51_Pow_37_|SET=_3_|CL=_JCSB_|Au=_End_0_@|
@Chest|Rakata Force-Master's Vestments|A=_Arm_456_End_55_Will_51_|M=_End_29_Will_48_Cri_37_|E=_End_24_Ala_51_​Cri_37_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Chest|Battlemaster Force-Master's Vestments|A=_Arm_456_End_33_Will_31_Exp_50_|M=_End_29_Will_48_Cri_37_|E=_End_24_​Ala_51_Cri_37_|SET=_3_|CL=_JCSB_|Au=_End_0_@|
@Feet|Rakata Force-Master's Boots|A=_Arm_285_End_55_Will_51_|M=_End_29_Will_48_Cri_37_|E=_End_24_Ala_51_Cri_​37_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Feet|Battlemaster Force-Master's Boots|A=_Arm_285_End_31_Will_33_Exp_50_|M=_End_29_Will_48_Cri_37_|E=_End_24_Ala_​51_Cri_37_|SET=_3_|CL=_JCSB_|Au=_End_0_@|
@Feet|Xenotech Force-Master's Boots|A=_Arm_257_End_43_Will_40_|M=_End_22_Will_37_Cri_28_|E=_End_31_Sur_40_Cri_​15_|CL=_JCSB_|Au=_End_0_@|
@Feet|Exotech Force-Master's Boots|A=_Arm_277_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_Pow_​19_|CL=_JCSB_|Au=_End_0_@|
@Feet|Energized Force-Master's Boots|A=_Arm_257_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_Pow_​15_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Rakata Force-Master's Gloves|A=_Arm_285_End_44_Will_61_|M=_End_37_Will_61_Pow_11_|E=_End_24_Ala_51_Pow​_37_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Battlemaster Force-Master's Gloves|A=_Arm_285_End_31_Will_33_Exp_50_|M=_End_29_Will_48_Cri_37_|E=_End_24_Ala​_51_Cri_37_|SET=_3_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Xenotech Force-Master's Gloves|A=_Arm_257_End_43_Will_40_|M=_End_22_Will_37_Cri_28_|E=_End_31_Sur_40_Cri​_15_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Exotech Force-Master's Gloves|A=_Arm_277_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_Pow​_19_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Energized Force-Master's Gloves|A=_Arm_257_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_Pow​_15_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Rakata Force-Master's Lower Robe|A=_Arm_456_End_44_Will_61_|M=_End_37_Will_61_Cri_11_|E=_End_24_Ala_51_Cri_3​7_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Battlemaster Force-Master's Lower Robe|A=_Arm_456_End_31_Will_33_Exp_50_|M=_End_37_Will_61_Cri_11_|E=_End_24_Ala_5​1_Cri_37_|SET=_3_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Xenotech Force-Master's Lower Robe|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Cri_28_|E=_End_31_Sur_40_Cri_1​5_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Exotech Force-Master's Lower Robe|A=_Arm_443_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_Pow_1​9_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Energized Force-Master's Lower Robe|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_Pow_1​5_|CL=_JCSB_|Au=_End_0_@|
@Head|Columi Force-Master's Headgear|A=_Arm_443_End_41_Will_57_|M=_End_34_Will_57_Cri_10_|E=_End_23_Sur_48_C​ri_34_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Head|Xenotech Force-Master's Headgear|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Cri_28_|E=_End_31_Sur_40_C​ri_15_|CL=_JCSB_|Au=_End_0_@|
@Head|Exotech Force-Master's Headgear|A=_Arm_443_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_P​ow_19_|CL=_JCSB_|Au=_End_0_@|
@Head|Energized Force-Master's Headgear|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_P​ow_15_|CL=_JCSB_|Au=_End_0_@|
@Chest|Columi Force-Master's Vestments|A=_Arm_443_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_​Pow_19_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Chest|Xenotech Force-Master's Vestments|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Cri_28_|E=_End_31_Sur_40_​Cri_15_|CL=_JCSB_|Au=_End_0_@|
@Chest|Exotech Force-Master's Vestments|A=_Arm_443_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_​Pow_19_|CL=_JCSB_|Au=_End_0_@|
@Chest|Energized Force-Master's Vestments|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_​Pow_15_|CL=_JCSB_|Au=_End_0_@|
@Feet|Columi Force-Master's Boots|A=_Arm_277_End_51_Will_48_|M=_End_27_Will_45_Pow_34_|E=_End_38_Ala_48_Pow_​19_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Columi Force-Master's Gloves|A=_Arm_277_End_41_Will_57_|M=_End_34_Will_57_Cri_10_|E=_End_23_Sur_48_Cri​_34_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Columi Force-Master's Lower Robe|A=_Arm_443_End_41_Will_57_|M=_End_34_Will_57_Pow_10_|E=_End_23_Ala_48_Pow_3​4_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Head|Tionese Force-Master's Headgear|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_P​ow_15_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Chest|Tionese Force-Master's Vestments|A=_Arm_411_End_34_Will_48_|M=_End_28_Will_48_Pow_8_|E=_End_19_Ala_40_P​ow_28_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Feet|Tionese Force-Master's Boots|A=_Arm_257_End_34_Will_48_|M=_End_28_Will_48_Pow_8_|E=_End_19_Ala_40_Pow_2​8_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Gloves|Tionese Force-Master's Gloves|A=_Arm_257_End_43_Will_40_|M=_End_22_Will_37_Pow_28_|E=_End_31_Ala_40_Pow​_15_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Leggings|Tionese Force-Master's Lower Robe|A=_Arm_411_End_43_Will_40_|M=_End_22_Will_37_Cri_28_|E=_End_19_Ala_40_Cri_2​8_|SET=_0_|CL=_JCSB_|Au=_End_0_@|
@Head||Au=_End_0_@|
@Chest|Rakata War Leader's Body Armor|A=_Arm_861_End_55_Str_51_|M=_End_29_Str_48_Def_37_|E=_End_40_Cri_51_Def_20​_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Chest|Columi War Leader's Body Armor|A=_Arm_836_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_19_​|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Chest|Tionese War Leader's Body Armor|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Abs_28_|E=_End_31_Acc_40_Abs_15​_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Chest|Xenotech War Leader's Body Armor|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Acc_40_Def_15​_|CL=_JKGT_|Au=_End_0_@|
@Chest|Battlemaster War Leader's Body Armor|A=_Arm_861_End_31_Str_33_Exp_50_|M=_End_29_Str_48_Def_37_|E=_End_40_Cri_51​_Def_20_|SET=_3_|CL=_JKGT_|Au=_End_0_@|
@Chest|Exotech War Leader's Body Armor|A=_Arm_836_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_19_​|CL=_JKGT_|Au=_End_0_@|
@Chest|Energized War Leader's Body Armor|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_15_​|CL=_JKGT_|Au=_End_0_@|
@Chest|Rakata Survivor's Robe|A=_Arm_456_End_55_Will_51_|M=_End_48_Will_37_Def_29_|E=_End_40_Acc_51_Def_2​0_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Chest|Columi Survivor's Robe|A=_Arm_443_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_Def_1​9_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Chest|Tionese Survivor's Robe|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_Abs_1​5_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Chest|Xenotech Survivor's Robe|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Def_22_|E=_End_31_Sh_40_Def_15​_|CL=_JCST_|Au=_End_0_@|
@Chest|Exotech Survivor's Robe|A=_Arm_443_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_Abs_1​9_|CL=_JCST_|Au=_End_0_@|
@Chest|Battlemaster Survivor's Robe|A=_Arm_456_End_31_Will_33_Exp_50_|M=_End_48_Will_37_Def_29_|E=_End_40_Acc_5​1_Def_20_|SET=_3_|CL=_JCST_|Au=_End_0_@|
@Chest|Energized Survivor's Robe|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_Abs_1​5_|CL=_JCST_|Au=_End_0_@|
@Chest|Rakata Supercommando's Body Armor|A=_Arm_861_End_55_Aim_51_|M=_End_37_Aim_61_Def_11_|E=_End_40_Acc_51_Def_20​_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Chest|Columi Supercommando's Body Armor|A=_Arm_836_End_51_Aim_48_|M=_End_34_Aim_57_Def_10_|E=_End_38_Acc_48_Def_19​_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Chest|Tionese Supercommando's Body Armor|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Abs_8_|E=_End_31_Acc_40_Abs_15_​|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Chest|Xenotech Supercommando's Body Armor|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Def_8_|E=_End_31_Sh_40_Def_15_|​CL=_TRVT_|Au=_End_0_@|
@Chest|Battlemaster Supercommando's Body Armor|A=_Arm_861_End_31_Aim_33_Exp_50_|M=_End_37_Aim_61_Def_11_|E=_End_40_Acc_51​_Def_20_|SET=_3_|CL=_TRVT_|Au=_End_0_@|
@Chest|Exotech Supercommando's Body Armor|A=_Arm_836_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Abs_19​_|CL=_TRVT_|Au=_End_0_@|
@Chest|Energized Supercommando's Body Armor|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Abs_8_|E=_End_31_Acc_40_Abs_15_​|CL=_TRVT_|Au=_End_0_@|
@Chest|Orange Customizable Robe|A=_Arm_456_|CL=_JCST_|Au=_End_0_@|
@Chest|Orange Customizable Body Armor|A=_Arm_861_|CL=_JKGT_TRVT_|Au=_End_0_@|
@Chest||Au=_End_0_@|
@Feet|Rakata War Leader's Boots|A=_Arm_538_End_55_Str_51_|M=_End_29_Str_48_Def_37_|E=_End_40_Cri_51_Def_20​_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Feet|Columi War Leader's Boots|A=_Arm_523_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_19_​|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Feet|Tionese War Leader's Boots|A=_Arm_485_End_43_Str_40_|M=_End_22_Str_37_Abs_28_|E=_End_31_Acc_40_Abs_15​_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Feet|Xenotech War Leader's Boots|A=_Arm_485_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Acc_40_Def_15​_|CL=_JKGT_|Au=_End_0_@|
@Feet|Exotech War Leader's Boots|A=_Arm_523_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_19_​|CL=_JKGT_|Au=_End_0_@|
@Feet|Battlemaster War Leader's Boots|A=_Arm_538_End_31_Str_33_Exp_50_|M=_End_29_Str_48_Def_37_|E=_End_40_Cri_51​_Def_20_|SET=_3_|CL=_JKGT_|Au=_End_0_@|
@Feet|Energized War Leader's Boots|A=_Arm_485_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_15_​|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Feet|Rakata Survivor's Boots|A=_Arm_285_End_55_Will_51_|M=_End_48_Will_37_Def_29_|E=_End_40_Acc_51_Def_​20_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Feet|Columi Survivor's Boots|A=_Arm_277_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_Abs_​19_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Feet|Tionese Survivor's Boots|A=_Arm_257_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_Abs_​15_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Feet|Xenotech Survivor's Boots|A=_Arm_257_End_43_Will_40_|M=_End_37_Will_28_Def_22_|E=_End_31_Sh_40_Def_1​5_|CL=_JCST_|Au=_End_0_@|
@Feet|Exotech Survivor's Boots|A=_Arm_277_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_Abs_​19_|CL=_JCST_|Au=_End_0_@|
@Feet|Battlemaster Survivor's Boots|A=_Arm_285_End_31_Will_33_Exp_50_|M=_End_48_Will_37_Def_29_|E=_End_40_Acc_​51_Def_20_|SET=_3_|CL=_JCST_|Au=_End_0_@|
@Feet|Energized Survivor's Boots|A=_Arm_257_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_31_Acc_40_Abs_15_|​CL=_JCST_|Au=_End_0_@|
@Feet|Rakata Supercommando's Boots|A=_Arm_538_End_55_Aim_51_|M=_End_37_Aim_61_Def_11_|E=_End_40_Acc_51_Def_20​_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Feet|Columi Supercommando's Boots|A=_Arm_523_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Abs_19​_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Feet|Tionese Supercommando's Boots|A=_Arm_485_End_43_Aim_40_|M=_End_28_Aim_48_Abs_8_|E=_End_31_Acc_40_Abs_15_​|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Feet|Xenotech Supercommando's Boots|A=_Arm_485_End_43_Aim_40_|M=_End_28_Aim_48_Def_8_|E=_End_31_Sh_40_Def_15_|​CL=_TRVT_|Au=_End_0_@|
@Feet|Exotech Supercommando's Boots|A=_Arm_523_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Abs_19​_|CL=_TRVT_|Au=_End_0_@|
@Feet|Battlemaster Supercommando's Boots|A=_Arm_538_End_31_Aim_33_Exp_50_|M=_End_37_Aim_61_Def_11_|E=_End_40_Acc_51​_Def_20_|SET=_3_|CL=_TRVT_|Au=_End_0_@|
@Feet|Energized Supercommando's Boots|A=_Arm_485_End_43_Aim_40_|M=_End_28_Str_48_Abs_8_|E=_End_31_Acc_40_Abs_15_​|CL=_TRVT_|Au=_End_0_@|
@Feet||Au=_End_0_@|
@Feet|Orange Customizable Light Armor Boots|A=_Arm_285_|CL=_JCST_|Au=_End_0_@|
@Feet|Orange Customizable Heavy Armor Boots|A=_Arm_538_|CL=_JKGT_TRVT_|Au=_End_0_@|
@Gloves|Rakata War Leader's Gloves|A=_Arm_538_End_55_Str_51_|M=_End_29_Str_48_Abs_37_|E=_End_40_Acc_51_Abs_2​0_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Columi War Leader's Gloves|A=_Arm_523_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_19​_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Tionese War Leader's Gloves|A=_Arm_485_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_15​_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Xenotech War Leader's Gloves|A=_Arm_485_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Acc_40_Def_1​5_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Exotech War Leader's Gloves|A=_Arm_523_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_19​_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Battlemaster War Leader's Gloves|A=_Arm_538_End_31_Str_33_Exp_50_|M=_End_29_Str_48_Abs_37_|E=_End_40_Acc_5​1_Abs_20_|SET=_3_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Energized War Leader's Gloves|A=_Arm_485_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_15​_|CL=_JKGT_|Au=_End_0_@|
@Gloves|Rakata Survivor's Handwraps|A=_Arm_285_End_55_Will_51_|M=_End_48_Will_37_Abs_29_|E=_End_40_Acc_51_​Abs_20_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Gloves|Columi Survivor's Handwraps|A=_Arm_277_End_51_Will_48_|M=_End_45_Will_34_Def_27_|E=_End_38_Sh_48_D​ef_19_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Gloves|Tionese Survivor's Handwraps|A=_Arm_257_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_​Abs_15_|CL=_JCST_|Au=_End_0_@|
@Gloves|Xenotech Survivor's Handwraps|A=_Arm_257_End_43_Will_40_|M=_End_37_Will_28_Def_22_|E=_End_31_Sh_40_D​ef_15_|CL=_JCST_|Au=_End_0_@|
@Gloves|Exotech Survivor's Handwraps|A=_Arm_277_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_​Abs_19_|CL=_JCST_|Au=_End_0_@|
@Gloves|Battlemaster Survivor's Handwraps|A=_Arm_285_End_31_Will_33_Exp_50_|M=_End_48_Will_37_Abs_29_|E=_End_40_​Acc_51_Abs_20_|SET=_3_|CL=_JCST_|Au=_End_0_@|
@Gloves|Energized Survivor's Handwraps|A=_Arm_257_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_​Abs_15_|CL=_JCST_|Au=_End_0_@|
@Gloves|Rakata Supercommando's Gauntlets|A=_Arm_538_End_55_Aim_51_|M=_End_37_Aim_61_Abs_11_|E=_End_40_Acc_51_Ab​s_20_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Gloves|Columi Supercommando's Gauntlets|A=_Arm_523_End_51_Aim_48_|M=_End_34_Aim_57_Def_10_|E=_End_38_Sh_48_Def​_19_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Gloves|Tionese Supercommando's Gauntlets|A=_Arm_485_End_43_Aim_40_|M=_End_28_Aim_48_Abs_8_|E=_End_31_Acc_40_Abs​_15_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Gloves|Xenotech Supercommando's Gauntlets|A=_Arm_485_End_43_Aim_40_|M=_End_28_Aim_48_Def_8_|E=_End_31_Sh_40_Def_​15_|CL=_TRVT_|Au=_End_0_@|
@Gloves|Exotech Supercommando's Gauntlets|A=_Arm_523_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Ab​s_19_|CL=_TRVT_|Au=_End_0_@|
@Gloves|Battlemaster Supercommando's Gauntlets|A=_Arm_538_End_31_Aim_33_Exp_50_|M=_End_37_Aim_61_Abs_11_|E=_End_40_Ac​c_51_Abs_20_|SET=_3_|CL=_TRVT_|Au=_End_0_@|
@Gloves|Energized Supercommando's Gauntlets|A=_Arm_485_End_43_Aim_40_|M=_End_28_Aim_48_Abs_8_|E=_End_31_Acc_40_Abs​_15_|CL=_TRVT_|Au=_End_0_@|
@Gloves||Au=_End_0_@|
@Gloves|Orange Customizable Light Armor Gloves|A=_Arm_285_|CL=_JCST_|Au=_End_0_@|
@Gloves|Orange Customizable Heavy Armor Gloves|A=_Arm_538_|CL=_JKGT_TRVT_|Au=_End_0_@|
@Leggings|Rakata War Leader's Greaves|A=_Arm_861_End_55_Str_51_|M=_End_29_Str_48_Def_37_|E=_End_40_Acc_51_Def_​20_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Columi War Leader's Greaves|A=_Arm_836_End_51_Str_48_|M=_End_27_Str_45_Abs_34_|E=_End_38_Acc_48_Abs_​19_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Tionese War Leader's Greaves|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Cri_40_Def_​15_|SET=_0_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Xenotech War Leader's Greaves|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Acc_40_Def_​15_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Exotech War Leader's Greaves|A=_Arm_836_End_51_Str_48_|M=_End_27_Str_45_Def_34_|E=_End_38_Sh_48_Def_1​9_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Battlemaster War Leader's Greaves|A=_Arm_861_End_31_Str_33_Exp_50_|M=_End_29_Str_48_Def_37_|E=_End_40_Acc_​51_Def_20_|SET=_3_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Energized War Leader's Greaves|A=_Arm_776_End_43_Str_40_|M=_End_22_Str_37_Def_28_|E=_End_31_Sh_40_Def_1​5_|CL=_JKGT_|Au=_End_0_@|
@Leggings|Rakata Survivor's Legwraps|A=_Arm_456_End_55_Will_51_|M=_End_48_Will_37_Def_29_|E=_End_40_Acc_51_D​ef_20_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Leggings|Columi Survivor's Legwraps|A=_Arm_443_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_A​bs_19_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Leggings|Tionese Survivor's Legwraps|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Def_22_|E=_End_31_Acc_40_D​ef_15_|SET=_0_|CL=_JCST_|Au=_End_0_@|
@Leggings|Xenotech Survivor's Legwraps|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Def_22_|E=_End_31_Sh_40_De​f_15_|CL=_JCST_|Au=_End_0_@|
@Leggings|Exotech Survivor's Legwraps|A=_Arm_443_End_51_Will_48_|M=_End_45_Will_34_Abs_27_|E=_End_38_Acc_48_A​bs_18_|CL=_JCST_|Au=_End_0_@|
@Leggings|Battlemaster Survivor's Legwraps|A=_Arm_456_End_31_Will_33_Exp_50_|M=_End_48_Will_37_Def_29_|E=_End_40_A​cc_51_Def_20_|SET=_3_|CL=_JCST_|Au=_End_0_@|
@Leggings|Energized Survivor's Legwraps|A=_Arm_411_End_43_Will_40_|M=_End_37_Will_28_Abs_22_|E=_End_31_Acc_40_A​bs_15_|CL=_JCST_|Au=_End_0_@|
@Leggings|Rakata Supercommando's Legplates|A=_Arm_861_End_55_Aim_51_|M=_End_37_Aim_61_Def_11_|E=_End_40_Acc_51_De​f_20_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Leggings|Columi Supercommando's Legplates|A=_Arm_836_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Ab​s_19_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Leggings|Tionese Supercommando's Legplates|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Def_8_|E=_End_31_Acc_40_Def​_15_|SET=_0_|CL=_TRVT_|Au=_End_0_@|
@Leggings|Xenotech Supercommando's Legplates|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Def_8_|E=_End_31_Sh_40_Def_​15_|CL=_TRVT_|Au=_End_0_@|
@Leggings|Exotech Supercommando's Legplates|A=_Arm_836_End_51_Aim_48_|M=_End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Ab​s_19_|CL=_TRVT_|Au=_End_0_@|
@Leggings|Battlemaster Supercommando's Legplates|A=_Arm_861_End_31_Aim_33_Exp_50_|M=_End_37_Aim_61_Def_11_|E=_End_40_Ac​c_51_Def_20_|SET=_3_|CL=_TRVT_|Au=_End_0_@|
@Leggings|Energized Supercommando's Legplates|A=_Arm_776_End_43_Aim_40_|M=_End_28_Aim_48_Aim_8_|E=_End_31_Acc_40_Abs​_15_|CL=_TRVT_|Au=_End_0_@|
@Leggings||Au=_End_0_@|
@Leggings|Orange Customizable Light Armor Leggings|A=_Arm_285_|CL=_JCST_|Au=_End_0_@|
@Leggings|Orange Customizable Heavy Armor Leggings|A=_Arm_538_|CL=_JKGT_TRVT_|Au=_End_0_@|
@Wrist|Exo War Leader's Armguards|CL=_JKGT_|F=_Arm_523_End_83_Str_72_Def_27_@|
@Wrist|Battlemaster War Leader's Armguards|CL=_JKGT_|F=_Arm_538_End_69_Str_61_Abs_29_Exp_50_@|
@Wrist|Columi's War Leader's Armguards|CL=_JKGT_|F=_Arm_523_End_83_Str_72_Def_27_@|
@Wrist|Dalarian War Leader's Armguards|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Def_22_@|
@Wrist|Tionese War Leader's Armguards|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Def_22_@|
@Wrist|Xenotech War Leader's Armguards|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Abs_22_@|
@Wrist|Armguards of Vengeance|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Def_22_@|
@Wrist|Windforce Armguards|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Def_22_@|
@Wrist|Protector Bracers|CL=_JKGT_|F=_Arm_477_End_68_Str_59_Def_21_@|
@Wrist|Exo's Survivor's Bracers|CL=_JCST_|F=_Arm_277_End_83_Will_72_Abs_27_@|
@Wrist|Battlemaster Survivor's Bracers|CL=_JCST_|F=_Arm_285_End_69_Will_61_Abs_29_Exp_50_@|
@Wrist|Columi Survivor's Bracers|CL=_JCST_|F=_Arm_277_End_83_Will_72_Def_27_@|
@Wrist|Dalarian Survivor's Bracers|CL=_JCST_|F=_Arm_257_End_70_Will_61_Def_22_@|
@Wrist|Tionese Survivor's Bracers|CL=_JCST_|F=_Arm_257_End_70_Will_61_Abs_22_@|
@Wrist|Xenotech Survivor's Bracers|CL=_JCST_|F=_Arm_257_End_70_Will_61_Def_22_@|
@Wrist|Shadow Dancer Bracers|CL=_JCST_|F=_Arm_253_End_68_Will_59_Def_21_@|
@Wrist|Exo Supercommando's Bracers|CL=_TRVT_|F=_Arm_523_End_83_Aim_72_Abs_27_@|
@Wrist|Battlemaster Supercommando's Bracers|CL=_TRVT_|F=_Arm_538_End_69_Aim_61_Abs_29_Exp_50_@|
@Wrist|Columi's Supercommando's Bracers|CL=_TRVT_|F=_Arm_523_End_83_Aim_72_Def_27_@|
@Wrist|Dalarian Supercommando's Bracers|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Abs_22_@|
@Wrist|Tionese Supercommando's Bracers|CL=_TRVT_|F=_Arm_485_End_70_Str_61_Abs_22_@|
@Wrist|Xenotech Supercommando's Bracers|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Def_22_@|
@Wrist|Legionnaire's Bracers|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Def_22_@|
@Wrist|Maelstrom Bracers|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Def_22_@|
@Wrist|Techwarrior Bracers|CL=_TRVT_|F=_Arm_477_End_68_Aim_59_Def_21_@|
@Wrist|Redoubt Enigma Bracers|CL=_JCST_|F=_Arm_257_End_62_Will_54_Abs_19_Def_24_@|
@Wrist|Exo's Force-Master's Bracers|CL=_JCSB_|F=_Arm_277_End_69_Will_80_Pow_34_@|
@Wrist|Battlemaster Force-Master's Bracers|CL=_JCSB_|F=_Arm_285_End_60_Will_82_Pow_11_Exp_50_@|
@Wrist|Columi Force-Master's Bracers|CL=_JCSB_|F=_Arm_277_End_66_Will_97_Cri_10_@|
@Wrist|Dalarian Force-Master's Bracers|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Pow_28_@|
@Wrist|Tionese Force-Master's Bracers|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Pow_28_@|
@Wrist|Xenotech Survivor's Bracers|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Cri_28_@|
@Wrist|Deceptor's Bracers|CL=_JCSB_|F=_Arm_257_End_56_Will_83_Pow_8_@|
@Wrist|Enlightenment Bracers|CL=_JCSB_|F=_Arm_253_End_54_Will_80_Cri_8_@|
@Wrist|Infiltrator's Bracers|CL=_JCSB_|F=_Arm_257_End_56_Will_83_Pow_8_@|
@Wrist|Reaver's Bracers|CL=_JCSB_|F=_Arm_253_End_56_Will_66_Cri_27_@|
@Wrist||Au=_End_0_@|
@Waist|Belt of Vengeance|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Def_22_@|
@Waist|Protector Waistguard|CL=_JKGT_|F=_Arm_477_End_68_Str_59_Def_21_@|
@Waist|Exo War Leader's Belt|CL=_JKGT_|F=_Arm_523_End_83_Str_72_Def_27_@|
@Waist|Battlemaster War Leader's Belt|CL=_JKGT_|F=_Arm_538_End_69_Str_61_Def_29_Exp_50_@|
@Waist|Columi's War Leader's Belt|CL=_JKGT_|F=_Arm_523_End_83_Str_72_Def_27_@|
@Waist|Dalarian War Leader's Belt|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Def_22_@|
@Waist|Tionese War Leader's Belt|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Abs_22_@|
@Waist|Xenotech War Leader's Belt|CL=_JKGT_|F=_Arm_485_End_70_Str_61_Abs_22_@|
@Waist|Columi Survivor's Waistwrap|CL=_JCST_|F=_Arm_277_End_83_Will_72_Abs_27_@|
@Waist|Exo's Survivor's Waistwrap|CL=_JCST_|F=_Arm_277_End_83_Will_72_Abs_27_@|
@Waist|Dalarian Survivor's Waistwrap|CL=_JCST_|F=_Arm_257_End_70_Will_61_Def_22_@|
@Waist|Battlemaster Survivor's Waistwrap|CL=_JCST_|F=_Arm_285_End_69_Will_61_Def_29_Exp_50_@|
@Waist|Tionese Survivor's Waistwrap|CL=_JCST_|F=_Arm_257_End_70_Will_61_Abs_22_@|
@Waist|Xenotech Survivor's Waistwrap|CL=_JCST_|F=_Arm_257_End_70_Will_61_Def_22_@|
@Waist|Exo Supercommando's Belt|CL=_TRVT_|F=_Arm_523_End_83_Aim_72_Abs_27_@|
@Waist|Battlemaster Supercommando's Belt|CL=_TRVT_|F=_Arm_538_End_69_Aim_61_Def_29_Exp_50_@|
@Waist|Columi's Supercommando's Belt|CL=_TRVT_|F=_Arm_523_End_83_Aim_72_Abs_27_@|
@Waist|Dalarian Supercommando's Belt|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Abs_22_@|
@Waist|Tionese Supercommando's Belt|CL=_TRVT_|F=_Arm_485_End_70_Str_61_Abs_22_@|
@Waist|Xenotech Supercommando's Belt|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Def_22_@|
@Waist|Legionnaire's Waistguard|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Abs_22_@|
@Waist|Maelstrom Waistguard|CL=_TRVT_|F=_Arm_485_End_70_Aim_61_Abs_22_@|
@Waist|Techwarrior Waistguard|CL=_TRVT_|F=_Arm_477_End_68_Aim_59_Def_21_@|
@Waist|Crafted Belt Forgot the Name|CL=_JCST_|F=_End_52_Will_45_Acc_28_Abs_16_Def_25_@|
@Waist|Columi Force-Master's Sash|CL=_JCSB_|F=_Arm_277_End_69_Will_80_Pow_34_@|
@Waist|Exo's Force-Master's Sash|CL=_JCSB_|F=_Arm_277_End_69_Will_80_Pow_34_@|
@Waist|Dalarian Force-Master's Sash|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Pow_28_@|
@Waist|Battlemaster Force-Master's Sash|CL=_JCSB_|F=_Arm_285_End_53_Will_71_Cri_37_Exp_50_@|
@Waist|Tionese Force-Master's Sash|CL=_JCSB_|F=_Arm_257_End_56_Will_83_Pow_8_@|
@Waist|Xenotech Force-Master's Sash|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Cri_28_@|
@Waist|Deceptor's Waistwrap|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Pow_28_@|
@Waist|Enlightenment Belt|CL=_JCSB_|F=_Arm_253_End_56_Will_66_Pow_27_@|
@Waist|Infiltrator Waistwrap|CL=_JCSB_|F=_Arm_257_End_58_Will_68_Pow_28_@|
@Waist|Reaver Waistrwrap|CL=_JCSB_|F=_Arm_253_End_54_Will_80_Pow_8_@|
@Waist||Au=_End_0_@|
@Earpiece|Rakata War Leader's Module|CL=_JKGT_|F=_End_118_Str_77_Acc_48_Def_37_@|
@Earpiece|Columi War Leader's Module|CL=_JKGT_|F=_End_111_Str_72_Acc_45_Abs_34_@|
@Earpiece|Tionese War Leader's Module|CL=_JKGT_|F=_End_95_Str_61_Acc_37_Def_28_@|
@Earpiece|Xenotech War Leader's Module|CL=_JKGT_|F=_End_95_Str_61_Sh_37_Def_28_@|
@Earpiece|Battlemaster War Leader's Module|CL=_JKGT_|F=_End_102_Will_61_Acc_48_Def_37_Exp_50_@|
@Earpiece|Rakata Survivor's Module|CL=_JCST_|F=_End_118_Will_77_Acc_48_Def_37_@|
@Earpiece|Columi Survivor's Module|CL=_JCST_|F=_End_111_Will_72_Acc_45_Abs_34_@|
@Earpiece|Tionese Survivor's Module|CL=_JCST_|F=_End_95_Will_61_Acc_37_Def_28_@|
@Earpiece|Xenotech Survivor's Module|CL=_JCST_|F=_End_95_Will_61_Sh_37_Def_28_@|
@Earpiece|Battlemaster Survivor's Module|CL=_JCST_|F=_End_102_Will_61_Acc_48_Def_37_Exp_50_@|
@Earpiece|Rakata Supercommando's Module|CL=_TRVT_|F=_End_118_Aim_77_Acc_48_Def_37_@|
@Earpiece|Columi Supercommando's Module|CL=_TRVT_|F=_End_111_Aim_72_Acc_45_Abs_34_@|
@Earpiece|Tionese Supercommando's Module|CL=_TRVT_|F=_End_95_Aim_61_Acc_37_Def_28_@|
@Earpiece|Xenotech Supercommando's Module|CL=_TRVT_|F=_End_95_Aim_61_Sh_37_Def_28_@|
@Earpiece|Battlemaster Supercommando's Module|CL=_TRVT_|F=_End_102_Aim_61_Acc_48_Def_37_Exp_50_@|
@Earpiece|Subelectronic Resistance D-Module|CL=_JCST_|F=_End_69_Will_44_Acc_18_Abs_22_@|
@Earpiece|Rakata Force-Master's Relay|CL=_JCSB_|F=_End_85_Will_103_Cri_44_Ala_51_@|
@Earpiece|Columi Force-Master's Relay|CL=_JCSB_|F=_End_80_Will_97_Pow_41_Ala_48_@|
@Earpiece|Tionese Force-Master's Relay|CL=_JCSB_|F=_End_79_Will_68_Cri_40_Ala_40_@|
@Earpiece|Xenotech Force-Master's Relay|CL=_JCSB_|F=_End_79_Will_68_Cri_40_Sur_40_@|
@Earpiece|Battlemaster Force-Master's Module|CL=_JCSB_|F=_End_75_Will_82_Cri_44_Ala_51_Exp_50_@|
@Earpiece||Au=_End_0_@|
@Implant|Rakata War Leader's Implant|CL=_JKGT_|F=_End_118_Str_77_Acc_48_Def_37_@|
@Implant|Columi War Leader's Implant|CL=_JKGT_|F=_End_111_Str_72_Cri_45_Def_34_@|
@Implant|Tionese War Leader's Implant|CL=_JKGT_|F=_End_95_Str_61_Acc_37_Def_28_@|
@Implant|Xenotech War Leader's Implant|CL=_JKGT_|F=_End_95_Str_61_Acc_37_Def_28_@|
@Implant|Rakata Survivor's Implant|CL=_JCST_|F=_End_118_Will_77_Sh_48_Def_37_@|
@Implant|Columi Survivor's Implant|CL=_JCST_|F=_End_111_Will_72_Acc_45_Def_37_@|
@Implant|Tionese Survivor's Implant|CL=_JCST_|F=_End_95_Will_61_Acc_37_Def_28_@|
@Implant|Xenotech Survivor's Implant|CL=_JCST_|F=_End_95_Will_61_Acc_37_Def_28_@|
@Implant|Rakata Supercommando's Implant|CL=_TRVT_|F=_End_118_Aim_77_Sh_48_Def_37_@|
@Implant|Columi Supercommando's Implant|CL=_TRVT_|F=_End_111_Aim_72_Acc_45_Def_34_@|
@Implant|Tionese Supercommando's Implant|CL=_TRVT_|F=_End_95_Aim_61_Acc_37_Def_28_@|
@Implant|Xenotech Supercommando's Implant|CL=_TRVT_|F=_End_95_Aim_61_Sh_37_Def_28_@|
@Implant|Rakata Force-Master's System|CL=_JCSB_|F=_End_98_Will_85_Cri_51_Sur_51_@|
@Implant|Columi Force-Master's System|CL=_JCSB_|F=_End_93_Will_80_Cri_48_Ala_48_@|
@Implant|Tionese Force-Master's System|CL=_JCSB_|F=_End_68_Will_83_Cri_34_Ala_40_@|
@Implant|Xenotech Force-Master's System|CL=_JCSB_|F=_End_79_Will_68_Cri_40_Ala_40_@|
@Implant|Battlemaster Force-Master's System|CL=_JCSB_|F=_81_Will_71_Cri_51_Sur_51_Exp_50_@|
@Implant||Au=_End_0_@|
@Weapon|Battlemaster War Leader's Lightsaber|CL=_JKGT_|F=_End_140_Str_77_Abs_37_Exp_48_MinDmg_306_MaxDmg_459_FPow_​612_|C=_End_41_|Au=_End_0_@|
@Weapon|Darth Sion's Lightsaber|CL=_JKGT_|H=_End_55_Str_51_MinDmg_306_MaxDmg_459_FPow_612_|M=_End_29_​Str_48_Abs_37_|E=_End_40_Acc_51_Abs_20_|C=_End_41_|Au=_End_0_@|
@Weapon|The Indomitable|CL=_JKGT_|H=_End_55_Str_51_MinDmg_306_MaxDmg_459_FPow_612_|M=_End_29​_Str_48_Abs_37_|E=_End_40_Acc_51_Abs_20_|C=_End_41_|Au=_End_0_@|
@Weapon|Soresu's Razor|CL=_JKGT_|H=_End_51_Str_48_MinDmg_302_MaxDmg_453_FPow_605_|M=_End_27_Will_​45_Def_34_|E=_End_38_Sh_48_Def_19_|C=_End_41_|Au=_End_0_@|
@Weapon|Guiding Light|CL=_JKGT_|H=_End_43_Will_40_MinDmg_278_MaxDmg_417_FPow_556_|M=_End_22_Str_​37_Def_28_|E=_End_31_Sh_40_Def_15_|C=_End_41_|Au=_End_0_@|
@Weapon|Qel-Droma Ancestral Blade|CL=_JKGT_|H=_End_45_Str_42_MinDmg_278_MaxDmg_417_FPow_556_|M=_End_23_Will_​39_Def_29_|E=_End_33_Sh_42_Def_16_|C=_End_31_|Au=_End_0_@|
@Weapon|The Unstoppable Force|CL=_JKGT_|H=_End_43_Str_40_MinDmg_278_MaxDmg_417_FPow_556_|M=_End_22_Will_​37_Def_28_|E=_End_31_Acc_40_Def_15_|C=_End_41_|Au=_End_0_@|
@Weapon|Bastila Shan's Double-bladed Lightsaber|CL=_JCST_|H=_End_55_Will_51_MinDmg_367_MaxDmg_551_FPow_612_|M=_End_48​_Will_37_Def_29_|E=_End_40_Acc_51_Def_20_|C=_End_41_|Au=_End_0_@|
@Weapon|Exar Kun's Double-bladed Lightsaber|CL=_JCST_|H=_End_55_Will_51_MinDmg_367_MaxDmg_551_FPow_612_|M=_End_48​_Will_37_Def_29_|E=_End_40_Acc_51_Def_20_|C=_End_41_|Au=_End_0_@|
@Weapon|Battlemaster Survivor's Double-bladed Lightsaber|CL=_JCST_|F=_End_140_Will_77_Def_37_Exp_48_MinDmg_367_MaxDmg_551_FPow​_612_|C=_End_41_|Au=_End_0_@|
@Weapon|Champion's Decree|CL=_JCST_|H=_End_43_Will_40_MinDmg_333_MaxDmg_500_FPow_556_|M=__End_37_Wi​ll_28_Abs_22_|E=_End_31_Acc_40_Abs_15_|C=_End_41_|Au=_End_0_@|
@Weapon|Last Bastion|CL=_JCST_|H=_End_45_Will_42_MinDmg_333_MaxDmg_500_FPow_556_|M=_End_39_Wi​ll_29_Abs_23_|E=_End_33_Acc_42_Abs_16_|C=_End_31_|Au=_End_0_@|
@Weapon|Polesaber of Quintessential Defense|CL=_JCST_|H=_End_43_Will_40_MinDmg_333_MaxDmg_500_FPow_556_|M=_End_37_Wi​ll_28_Abs_22_|E=_End_31_Acc_40_Abs_15_|C=_End_41_|Au=_End_0_@|
@Weapon|Lightsaber of Premonition|CL=_JCST_|F=_End_114_Will_61_Abs_28_MinDmg_333_MaxDmg_500_FPow_556_|​C=_End_41_|Au=_End_0_@|
@Weapon|Terentatek's Bane|CL=_JCST_|H=_End_51_Will_48_MinDmg_363_MaxDmg_544_FPow_605_|M=_End_45_Will_​34_Abs_27_|E=_End_38_Acc_48_Abs_19_|C=_End_41_|Au=_End_0_@|
@Weapon|Lucky's Last Stand|CL=_TRVT_|H=_End_55_Aim_51_MinDmg_306_MaxDmg_459_TPOw_612_|M=_End_37_Aim_6​1_Def_11_|E=_End_40_Acc_51_Def_20_|C=_End_41_|Au=_End_0_@|
@Weapon|Stonewall|CL=_TRVT_|H=_End_51_Aim_48_MinDmg_302_MaxDmg_453_TPow_605_|M=_​End_34_Aim_57_Abs_10_|E=_End_38_Acc_48_Abs_19_|C=_End_41_|Au=_End_0_@|
@Weapon|Blackstar Squad Special|CL=_TRVT_|H=_End_43_Aim_40_MinDmg_278_MaxDmg_417_TPow_556_|M=_End_28_Aim​_48_Abs_8_|E=_End_31_Acc_40_Abs_15_|C=_End_41_|Au=_End_0_@|
@Weapon|Comet Strike|CL=_TRVT_|H=_End_45_Aim_42_MinDmg_278_MaxDmg_417_TPow_556_|M=_End_29_Aim_​50_Abs_8_|E=_End_33_Acc_42_Abs_16_|C=_End_31_|Au=_End_0_@|
@Weapon|Battlemaster Supercommando's Blaster|CL=_TRVT_|F=_End_140_Aim_77_Abs_37_Exp_48_TPow_612_MinDmg_268_MaxDmg_497​_|C=_End_41_|Au=_End_0_@|
@Weapon|Orange Weapon|Au=_End_0_@|
@Weapon|Echo of XoXaan|CL=_JCSB_|H=_End_44_Will_61_MinDmg_306_MaxDmg_459_FPow_612_|M=_End_37_Wil​l_61_Pow_11_|C=_Pow_41_|E=_End_24_Ala_51_Pow_37_|Au=_End_0_@|
@Weapon|Battlemaster Force-Master's Lightsaber|CL=_JCSB_|F=_End_62_Will_103_FPow_612_Exp_51_MinDmg_306_MaxDmg_459_|C​=_End_41_|Au=_End_0_@|
@Weapon|Draay's Legacy|CL=_JCSB_|H=_End_41_Will_57_MinDmg_302_MaxDmg_453_FPow_605_|M=_End_34_Wil​l_57_Cri_10_|C=_Cri_31_|E=_End_23_Sur_48_Cri_34_|Au=_End_0_@|
@Weapon|Harbringer Potentate's Lightsaber|CL=_JCSB_|F=_End_79_Will_68_MinDmg_278_MaxDmg_417_FPow_556_Exp_40_|C=​_End_41_|Au=_End_0_@|
@Weapon|Jolee Bindo's Lightsaber|CL=_JCSB_|H=_End_44_Will_61_MinDmg_306_MaxDmg_459_FPow_612_|M=_End_37​_Will_61_Pow_11_|C=_Pow_41_|E=_End_24_Ala_51_Pow_37_|Au=_End_0_@|
@Weapon|Kaelynn's Grace|CL=_JCSB_|H=_End_43_Will_40_MinDmg_278_MaxDmg_417_FPow_556_|M=_End_22_Will​_37_Pow_28_|C=_Pow_41_|E=_End_31_Ala_40_Pow_15_|Au=_End_0_@|
@Weapon|Master Chamma's Lightsaber|CL=_JCSB_|H=_End_45_Will_42_MinDmg_278_MaxDmg_417_FPow_556_|M=_End_23​_Will_39_Pow_29_|C=_Pow_31_|E=_End_33_Ala_42_Pow_16_|Au=_End_0_@|
@Weapon|Temptation|CL=_JCSB_|H=_End_45_Will_42_MinDmg_278_MaxDmg_417_FPow_556_|M​=_End_23_Will_39_Pow_29_|C=_Pow_31_|E=_End_33_Ala_42_Pow_16_|Au=_End_0_@|
@Weapon|Thelanthra's Wrath|CL=_JCSB_|H=_End_43_Will_40_MinDmg_278_MaxDmg_417_FPow_556_|M=_End_22_Will​_37_Pow_28_|C=_Pow_41_|E=_End_31_Ala_40_Pow_15_|Au=_End_0_@|
@Weapon||Au=_End_0_@|
@Offhand|Rakata War Leader's Shield Generator|CL=_JKGT_|F=_End_140_Str_77_Sh_48_Def_37_FPow_408_|Au=_End_0_@|
@Offhand|Columi War Leader's Shield Generator|CL=_JKGT_|F=_End_132_Str_72_Acc_45_Def_34_FPow_403_|Au=_End_0_@|
@Offhand|Tionese War Leader's Shield Generator|CL=_JKGT_|F=_End_114_Str_61_Sh_37_Def_28_FPow_370_|Au=_End_0_@|
@Offhand|Xenotech War Leader's Shield Generator|CL=_JKGT_|F=_End_114_Str_61_Acc_37_Abs_28_FPow_370_|Au=_End_0_@|
@Offhand|Battlemaster War Leader's Shield Generator|CL=_JKGT_|F=_End_126_Str_61_Sh_48_Def_37_Exp_50_FPOw_408_|Au=_End_0_@|​
@Offhand|Entropic Defense D-Shield Generator|CL=_JKGT_|F=_End_99_Str_52_Acc_32_Def_24_FPow_322_|Au__End_0_@|
@Offhand|Rakata Survivor's Shield Generator|CL=_JCST_|F=_End_140_Will_77_Sh_48_Def_37_FPow_408_|Au=_End_0_@|
@Offhand|Columi Survivor's Shield Generator|CL=_JCST_|F=_End_132_Will_72_Acc_45_Def_34_FPow_403_|Au=_End_0_@|
@Offhand|Tionese Survivor's Shield Generator|CL=_JCST_|F=_End_114_Will_61_Sh_37_Def_28_FPow_370_|Au=_End_0_@|
@Offhand|Xenotech Survivor's Shield Generator|CL=_JCST_|F=_End_114_Will_61_Acc_37_Def_28_FPow_370_|Au=_End_0_@|
@Offhand|Battlemaster Survivor's Shield Generator|CL=_JCST_|F=_End_126_Will_61_Sh_48_Def_37_Exp_50_FPow_408_|Au=_End_0_@​|
@Offhand|Entropic Resistence D-Shield Generator|CL=_JCST_|F=_End_99_Will_52_Acc_32_Def_24_FPow_322_|Au__End_0_@|
@Offhand|Rakata Supercommando's Shield Generator|CL=_TRVT_|F=_End_140_Aim_77_Sh_48_Def_37_TPow_408_|Au=_End_0_@|
@Offhand|Columi Supercommando's Shield Generator|CL=_TRVT_|F=_End_132_Aim_72_Acc_45_Def_34_TPow_403_|Au=_End_0_@|
@Offhand|Tionese Supercommando's Shield Generator|CL=_TRVT_|F=_End_114_Aim_61_Sh_37_Def_28_TPow_370_|Au=_End_0_@|
@Offhand|Xenotech Supercommando's Shield Generator|CL=_TRVT_|F=_End_114_Aim_61_Acc_37_Abs_28_TPow_370_|Au=_End_0_@|
@Offhand|Battlemaster Supercommando's Shield Generator|CL=_TRVT_|F=_End_126_Aim_61_Sh_48_Def_37_Exp_50_TPow_408_|Au=_End_0_@|​
@Offhand|Entropic Response D-Shield Generator|CL=_TRVT_|F=_End_99_Aim_52_Acc_32_Def_24_TPow_322_|Au__End_0_@|
@Offhand|Rakata Force-Master's Focus|CL=_JCSB_|F=_End_98_Will_85_Cri_82_Sur_51_FPow_612_|Au=_End_0_@|
@Offhand|Columi Force-Master's Focus|CL=_JCSB_|F=_End_93_Will_80_Cri_77_Ala_48_FPow_605_|Au=_End_0_@|
@Offhand|Tionese Force-Master's Focus|CL=_JCSB_|F=_End_68_Will_83_Cri_61_Ala_40_FPow_556_|Au=_End_0_@|
@Offhand|Xenotech Force-Master's Focus|CL=_JCSB_|F=_End_79_Will_68_Cri_66_Sur_40_FPow_556_|Au=_End_0_@|
@Offhand|Battlemaster Force-Master's Focus|CL=_JCSB_|F=_End_81_Will_71_Cri_82_Sur_51_Exp_50_FPow_612_|Au=_End_0_@|
@Offhand|Entropic Force D-Focus|CL=_JCSB_|F=_End_58_Will_68_Ala_34_Cri_56_FPow_483_|Au__End_0_@|
@Offhand||Au=_End_0_@|
@Relic|Battlemaster Relic of Imperiling Serenity|F=_End_37_|USE=_Use_DEF_380_20_120_Exp_51_|Au=_End_0_@|
@Relic|Battlemaster Relic of the Shrouded Crusader|F=_End_37_|USE=_Use_SH+ABS_235_20_120_Exp_51_|Au=_End_0_@|
@Relic|Battlemaster Relic of Forbidden Secrets|F=_End_37_|USE=_Use_CRI+SUR_235_20_120_Exp_51_|Au=_End_0_@|
@Relic|Battlemaster Relic of the Primeval Fatesealer|F=_End_37_|USE=_Use_ALA_380_20_120_Exp_51_|Au=_End_0_@|
@Relic|Columi Relic of Imperiling Serenity|F=_End_48_|USE=_Use_DEF_355_20_120_|Au=_End_0_@|
@Relic|Columi Relic of the Primeval Fatesealer|F=_End_48_|USE=_Use_ALA_355_20_120_|Au=_End_0_@|
@Relic|Columi Relic of the Shrouded Crusader|F=_End_48_|USE=_Use_SH+ABS_220_20_120_|Au=_End_0_@|
@Relic|Columi Relic of Forbidden Secrets|F=_End_48_|USE=_Use_CRI+SUR_220_20_120_|Au=_End_0_@|
@Relic|Rakata Relic of Imperiling Serenity|F=_End_77_|USE=_Use_DEF_380_20_120_|Au=_End_0_@|
@Relic|Rakata Relic of the Primeval Fatesealer|F=_End_77_|USE=_Use_ALA_380_20_120_|Au=_End_0_@|
@Relic|Rakata Relic of the Shrouded Crusader|F=_End_51_|USE=_Use_SH+ABS_235_20_120_|Au=_End_0_@|
@Relic|Rakata Relic of Forbidden Secrets|F=_End_51_|USE=_Use_CRI+SUR_235_20_120_|Au=_End_0_@|
@Relic|Rakata Relic of Boundless Ages|F=_End_77_|USE=_Use_POW_380_20_120_|Au=_End_0_@|
@Relic|Columi Relic of Boundless Ages|F=_End_72_|USE=_Use_POW_355_20_120_|Au=_End_0_@|
@Relic|Relic of Enlightened Destiny|F=_End_34_Pow_24_|USE=_Use_SH+ABS_165_20_120_|Au=_End_0_@|
@Relic|Relic of Devastating Legends|F=_End_52_|USE=_Use_CRI+SUR_165_20_120_|Au=_End_0_@|
@Relic|Relic of the Steadfast Defender|F=_End_34_Pow_24_|USE=_Use_DEF_270_20_120_|Au=_End_0_@|
@Relic|Relic of the Echoing Introspection|F=_End_52_|USE=_Use_ALA_270_20_120_|Au=_End_0_@|
@Relic|Relic of the Indomitable Wrath|F=_End_52_|USE=_Use_Pow_270_20_120_|Au=_End_0_@|
@Relic|Matrix Cube M7-Y3 (Version a)|F=_End_60_Def_18_Aim_52_|Au=_End_0_@|
@Relic|Matrix Cube M7-Y3 (Version b)|F=_End_60_Def_18_Str_52_|Au=_End_0_@|
@Relic|Matrix Cube M7-R3 (Version a)|F=_End_50_Will_58_Cri_24_|Au=_End_0_@|
@Relic|Matrix Cube M7-R3 (Version b)|F=_End_48_Cun_72_Cri_7_|Au=_End_0_@|
@Relic||Au=_End_0_@|
Find all posts by this user
Quote this message in a reply
02-22-2012, 07:14 AM
Post: #27
RE: Project "Shield"
I just downloaded Project Shield today and when I launch the shield.exe it crashes on Windows 7 64-bit. I tried running as administrator and it still crashed. What do I need to do to get the executable to run?

Xasis Sun'Tzu
Level 50 Sith Assassin Tank
Leader of Infernal Empire
Find all posts by this user
Quote this message in a reply
02-22-2012, 12:42 PM
Post: #28
RE: Project "Shield"
(02-22-2012 07:14 AM)Evel Wrote:  I just downloaded Project Shield today and when I launch the shield.exe it crashes on Windows 7 64-bit. I tried running as administrator and it still crashed. What do I need to do to get the executable to run?

Run it in compatibility mode as win xp sp3
Find all posts by this user
Quote this message in a reply
02-22-2012, 10:48 PM
Post: #29
RE: Project "Shield"
Check if the new version released today still crashes. Seemed the older versions ran only when running them from the VC++ Debugger ;-) And as I always run them in the debugger, I never noticed. If something like that should happen again contact me at tirionareonwe@gmail.com.

BTW: The 3.2 version had still a major simulation bug which ended letting 0/17/24 look like the best spec for Balance, while it is actually the worst. Fixed.

Also included:

- An optional "unlimited force" mode for simulation (disabled by default)
- Disabled the Double-Dipping Feature by default (as it seems it will soon be
removed from SWTOR)
- Added an Alpha (!!!) version of the Telekinetics Sage Simulation (but it really
is Alpha and unfinished!!!)

Once I finish the Telekinetics probably next will be Sage Healer (on request of a guildmate, who is waiting since quite a while for this).

Also: If anyone is willing to help on some more specs/classes, feel free to contact me on above mentioned email address !!! (Both coders and non-coders could help...).
Find all posts by this user
Quote this message in a reply
02-23-2012, 04:48 AM
Post: #30
RE: Project "Shield"
(02-22-2012 12:42 PM)blott Wrote:  Run it in compatibility mode as win xp sp3

Thanks that worked!

While I know the Shadow is basically a mirror of the Assassin is there any change you will specifically make it compatible for Empire classes?

Xasis Sun'Tzu
Level 50 Sith Assassin Tank
Leader of Infernal Empire
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)