Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Shamans

Closed Thread
 
LinkBack Thread Tools
Old 06/04/09, 1:06 PM   #2101
Levva
In Awe of Shocks
 
Levva's Avatar
 
Draenei Shaman
 
Khadgar (EU)
There is a known bug in v1.7.0 where the new parameters for gloves_enchant and cloak_enchant are read but never initialised. I've posted a fix which Tukez has acknowledged is probably the cause of the crash however he has not yet posted a new version.

Author of ShockAndAwe Enhancement Shaman max dps addon
Please use the EnhSim by Ziff & others to simulate what gear, priorities etc are the best dps. You can use ShockAndAwe to export your paperdoll stats to EnhSim.

Offline
Old 06/04/09, 2:46 PM   #2102
Sylvand
Piston Honda
 
Draenei Shaman
 
Spirestone
For what it's worth, I was hitting a crash as well. It seems that it would always happen on the armor pen calculation (I don't do expertise or mana sim though). If I disabled armor pen calculations it completed just fine.

Offline
Old 06/04/09, 9:34 PM   #2103
tortugapir8
Glass Joe
 
tortugapir8's Avatar
 
Draenei Shaman
 
Khadgar
Based on Torodo's excellent post about the Sim miscalculating the value of Armor Penetration I've dusted off my C++ skills and have had a whack at the source.

I've managed to add some missing trinkets (Dark Matter, Blood of the Old God, Mjolnir, and the Elemental Focus Stone) but I'm having troubles trying to work in the new Armor Penetration formula.

What the sim is currently doing seems very strange to me. Next paragraph for the technical / nerdy:

The sim is taking the defined 'armor' value in the config, applying the the armor_major_debuff and armor_minor_debuff directly to this value giving a reduced total AC value. This debuffed armor value is then multiplied by what appears to be 100% - Armor Penetration config'd value for the MH and 100% - (ArmPen / 2) for the OH to be used as a new armor base value for calculating a damage multiplier which acts as a damage reducer. So this calculated armor base value divided by the sum of the calculated armor base plus the expected armor value of the target mob and this is used as the final damage multiplier.

The problem is when I try to rewrite the formula which GC has posted, the updated sim code looks like:

//compute constant max armor cap
acmax_ = static_cast<int>(400.0 + (85.0 * TARGET_LEVEL) + (4.5 * 85.0 * (TARGET_LEVEL - 59.0)));

// calculate effective armor due to debuffs
acdebuff_ = static_cast<int>(armor_base_ * (1.0f - armor_debuff_major_) * (1.0f - armor_debuff_minor_));

//the cap is an average of max and debuffed armor
accap_ = static_cast<int>((acmax_ + acdebuff_) / 3.0);

//apply armor penetration additively to the armor cap to get armor reduction
acreduction_ = static_cast<f32>(accap_ * (1.0f - armor_penetration_));

//damage reduction is an inverse function of reduction
damage_reduction_ = static_cast<f32>((acdebuff_ - acreduction_) / acdebuff_);

std::cout << "NEW DAMAGE REDUCTION FORMULA\n";
std::cout << "armor_pen raw function val: " << (armor_penetration_) << "\n";
std::cout << "max boss AC" << acmax_ << " | debuffed armor total " << acdebuff_ << " | cap for reduction " << accap_ << " | armor reduced by ArmPen " << acreduction_ << " | damage bonus multiplier " << damage_reduction_ << "\n\n";
But since the armor_penetration value in the sim is based on inverse percentages and some odd OH handling, I get very out of whack values as can be seen in those print debug statements:

NEW DAMAGE REDUCTION FORMULA
armor_pen raw function val: 0.95
max boss AC16635 | debuffed armor total 8515 | cap for reduction 8383 | armor reduced by ArmPen 419.15 | damage bonus multiplier 0.950775

NEW DAMAGE REDUCTION FORMULA
armor_pen raw function val: 0.453095
max boss AC16635 | debuffed armor total 8515 | cap for reduction 8383 | armor reduced by ArmPen 4584.7 | damage bonus multiplier 0.461573
As you can see, that armor_pen value being fed in to this function is pretty unusable for me due to the new formula. I'll try to experiment with modifying the multipliers but not only will this probably throw all sorts of procs and modifier out of whack, I don't think during EP calculations I'd be getter anything remotely useable without overhauling a lot more than meets the eye.

Hopefully Tukez is already on top of it as it looks like it's going to take some effort.

Offline
Old 06/05/09, 6:13 AM   #2104
bacham
Glass Joe
 
Draenei Shaman
 
Страж Смерти (EU)
I ve tried many variants of stats and items in enh sim due i have plenty of them and i can say that that it gave me nothing. I have good results on most of bosses using haste and critbased items in Ulduar but iam still far 100-300 dps from Wowmeteronline Europe top 20 on Kologarn and Iron council, for example. Only explanation that i have is difference in raid tactics. Can someone here help me to optimize my dps on this encounters and sorry for my eng if there any mistakes not my native lang.

Offline
Old 06/05/09, 8:23 AM   #2105
Levva
In Awe of Shocks
 
Levva's Avatar
 
Draenei Shaman
 
Khadgar (EU)
Originally Posted by tortugapir8 View Post
Based on Torodo's excellent post about the Sim miscalculating the value of Armor Penetration I've dusted off my C++ skills and have had a whack at the source.

I've managed to add some missing trinkets (Dark Matter, Blood of the Old God, Mjolnir, and the Elemental Focus Stone) but I'm having troubles trying to work in the new Armor Penetration formula.
The post by GC was later corrected as it had some mistakes there is a lengthy discussion on the combat ratings thread about it. The formulae was worked out and implemented in Rawr last month as follows :

        // http://forums.worldofwarcraft.com/thread.html?topicId=16473618356&sid=1&pageNo=4 post 77.
        // Ghostcrawler vs theorycraft.
        /// <summary>
        /// Returns how much physical damage is reduced from Armor. (0.095 = 9.5% reduction)
        /// </summary>
        /// <param name="AttackerLevel">Level of Attacker</param>
        /// <param name="TargetLevel">Level of Target</param>
        /// <param name="TargetArmor">Armor of Target</param>
        /// <param name="ArmorIgnoreDebuffs">Armor reduction on target as result of Debuffs (Sunder/Fearie Fire)</param>
        /// <param name="ArmorIgnoreBuffs">Armor reduction buffs on player (Mace Spec, Battle Stance, etc)</param>
        /// <param name="ArmorPenetrationRating">Penetration Rating (Can be rolled into ArmorIgnoreBuffs and then set this to 0)</param>
        /// <returns>How much physical damage is reduced from Armor. (0.095 = 9.5% reduction)</returns>
        public static float GetArmorDamageReduction(int AttackerLevel, float TargetArmor,
            float ArmorIgnoreDebuffs, float ArmorIgnoreBuffs, float ArmorPenetrationRating)
        {
            float ArmorConstant = 400 + 85 * AttackerLevel + 4.5f * 85 * (AttackerLevel - 59);
            TargetArmor *= (1f - ArmorIgnoreDebuffs) * (1f - ArmorIgnoreBuffs);
            float ArPCap = Math.Min((TargetArmor + ArmorConstant) / 3f, TargetArmor);
            TargetArmor -= ArPCap * Math.Min(1f, GetArmorPenetrationFromRating(ArmorPenetrationRating));
            
            return 1f - ArmorConstant / (ArmorConstant + TargetArmor);
        }
Yes its C# not C++ but hopefully would give you a steer as to what needs fixed. I'm keenly awaiting this fix as I really can't do much more on Rawr.Enhance without a fixed EnhSim to compare my results to.

Author of ShockAndAwe Enhancement Shaman max dps addon
Please use the EnhSim by Ziff & others to simulate what gear, priorities etc are the best dps. You can use ShockAndAwe to export your paperdoll stats to EnhSim.

Offline
Old 06/05/09, 11:40 AM   #2106
tortugapir8
Glass Joe
 
tortugapir8's Avatar
 
Draenei Shaman
 
Khadgar
Thank you very much Levva, that was hugely helpful! I've updated the damage_reduction code in EnhSim to the following:

//compute constant max armor cap
acmax_ = static_cast<int>(400.0 + (85.0 * ATTACKER_LEVEL) + (4.5 * 85.0 * (ATTACKER_LEVEL - 59.0)));

// calculate effective armor due to debuffs
acdebuff_ = static_cast<int>(armor_base_ * (1.0f - armor_debuff_major_) * (1.0f - armor_debuff_minor_));

//the cap is an average of max and debuffed armor
accap_ = static_cast<int>((acdebuff_ + acmax_) / 3.0);

//apply armor penetration additively to the armor cap to get armor reduction
acdebuff_ = static_cast<int>(acdebuff_ - (accap_ * (1.0f - armor_penetration_)));

//damage reduction is an inverse function of reduction
damage_reduction_ = static_cast<f32>(1.0f - (acdebuff_ / ((467.5 * TARGET_LEVEL) + acdebuff_ - 22167.5)));
And is looking good for overall DPS simulations. However, I'm personally getting lower numbers then I expected for the calculated EP value of Armor Penetration

WARNING! The following is a very non-official version of EnhSim I've compiled for TESTING
This build is based on the 1.7.0 source and contains the following modifications:
  • Added support for the following trinkets: Dark Matter, Blood of the Old God, Mjolnir, and the Elemental Focus Stone
  • Updated Armor Penetration formula (exact changes can be seen above)

NOTE: Since I do not have the source to the EnhSIm GUI you'll be unable to select these new trinkets in the dropdown, however the sim handles them being imported properly (by item ID) or by editing you config with either the item ID or the following constants:
  • Dark Matter => 'dark_matter' or id # 46038
  • Blood of the Old God => 'blood_of_the_old_god' or id # 45522
  • Mjolnir => 'mjolnir_runestone' or id # 45931
  • Elemental Focus Stone => 'elemental_focus_stone' or id # 45866

NOTE: I was unable to compile this with multi-threaded support so you'll probably see a moderate performance hit between this and the official 1.7.0 version.


Can some other people get me back some comparison numbers between the 1.7.0 sim'd DPS and EP calculation vs this build? Please include your config file as well. Also, rather than cluttering this thread, please email me the results (the address to send it to can be seen in the enhsim output window) or PM me here.

New EnhSim executable can be downloaded at: http://www.apatheia.org/download/enhsim.exe

Edit: New version 1.7.0.3

MD5: F65AEF34965BAC370D22C4894958C761

Last edited by tortugapir8 : 06/17/09 at 12:02 PM.

Offline
Old 06/06/09, 3:49 AM   #2107
EmeraldArcana
Glass Joe
 
Human Priest
 
Twisting Nether
Unix Makefile

Hi guys, this isn't really a theorycrafting contribution, but I thought others might find it useful.

I saw that there were Mac OS X (Leopard) instructions for using XCode to compile EnhSim. However, I am a command-line person, so I thought I'd write a Makefile instead.

To use this, create a file called "Makefile" and copy and paste the contents below into it. Watch that the "spaces" on the lines are actually "tabs" (that's a common gotcha with Makefiles). Put the Makefile into the "sources" directory, launch a terminal, go to the directory, and type "make" to compile it. I'm assuming that those of you who know what Makefiles are won't have a problem with using them.

IMO, it's much easier than using XCode. It works on Mac OS X 10.5.7. If we assume that EnhSim compiles on Linux and other UNIX-like systems (I don't have a Linux to test this on) then the Makefile should work on those systems too.

I hope someone else finds it useful! If you want to run new versions of EnhSim on your OS then this'll be an easy way to get yourself going.

CC=g++
CFLAGS=-Wall -g
LIBS=
DEFINES=-DNOTHREADS
LDFLAGS=
SRCS=consumables.cpp effects.cpp enchants.cpp enhsim.cpp enhsimconfig.cpp enhsimoutput.cpp event.cpp event_queue.cpp globalutil.cpp hand.cpp items.cpp main.cpp metagems.cpp normal.cpp rotation.cpp setbonuses.cpp skills.cpp stats.cpp talents.cpp totems.cpp trinkets.cpp weapon_enchants.cpp
OBJS=$(SRCS:.cpp=.o)
EXECUTABLE=enhsim

.PHONY: depend clean

all: $(EXECUTABLE)
	@echo successfully compiled

$(EXECUTABLE): $(OBJS)
	$(CC) $(CFLAGS) $(INCLUDES) -o $(EXECUTABLE) $(OBJS) $(LDFLAGS) $(LIBS) $(DEFINES)

.cpp.o:
	$(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) $(LIBS) -c $< -o $@ $(DEFINES)

clean:
	rm *.o core *~ $(EXECUTABLE)

depend: $(SRCS)
	makedepend $(INCLUES) $^

Last edited by EmeraldArcana : 06/06/09 at 3:55 AM.

Offline
Old 06/06/09, 6:49 PM   #2108
Levva
In Awe of Shocks
 
Levva's Avatar
 
Draenei Shaman
 
Khadgar (EU)
Originally Posted by tortugapir8 View Post
NOTE: I was unable to compile this with multi-threaded support so you'll probably see a moderate performance hit between this and the official 1.7.0 version.
You are aware that the source of v1.7.0 contains a bug in the NON multi threaded support that frequently silently fails to complete the simulation? If you don't compile with ZTHREADS enabled it will often fail to run at all or give some really odd results. My bug report is at EnhSim: NOTHREADS option code doesn't simulate

Have you also fixed that issue?

Did you also fix the glove_enchant, cloak_enchant not being initialised as per bug report on EnhSim website? This is what causes the occasional crash on Vista when doing EP values calcs. My bug report is at EnhSim: Gloves & Cloak Enchant Null Pointer

It would also be useful if you could apply the fix for the Flametongue Weapon co-efficients bug see my report EnhSim: Flametongue co-efficient incorrect

When compiling your code have you added a unique version number eg: v1.7.0.1 so we know ppl are using your version for data comparisons?

Last edited by Levva : 06/06/09 at 7:01 PM.

Author of ShockAndAwe Enhancement Shaman max dps addon
Please use the EnhSim by Ziff & others to simulate what gear, priorities etc are the best dps. You can use ShockAndAwe to export your paperdoll stats to EnhSim.

Offline
Old 06/08/09, 4:33 AM   #2109
Trollpriest
Glass Joe
 
Trollpriest's Avatar
 
Dwarf Shaman
 
Barthilas
Minor quirk I've been having since updating my versions of SAA and EnhSim, my SAA exports have been making my weapons both slower by .1. Nothing huge but it's still pretty annoying having to manually change every export. Anyone else been hit with something like this?

Offline
Old 06/08/09, 5:12 AM   #2110
draizen
Glass Joe
 
Draenei Shaman
 
Destromath (EU)
Originally Posted by Trollpriest View Post
Minor quirk I've been having since updating my versions of SAA and EnhSim, my SAA exports have been making my weapons both slower by .1. Nothing huge but it's still pretty annoying having to manually change every export. Anyone else been hit with something like this?
yes i get the same behavior, got it since v4.35. ticket on WoW AddOns - ShockAndAwe - CurseForge.com is open

Offline
Old 06/08/09, 10:44 AM   #2111
tortugapir8
Glass Joe
 
tortugapir8's Avatar
 
Draenei Shaman
 
Khadgar
Originally Posted by Levva View Post
You are aware that the source of v1.7.0 contains a bug in the NON multi threaded support that frequently silently fails to complete the simulation...
I was totally unaware of that bug, but I've been having no problems simulating without ZTHREADS, perhaps it's something about my development environment (win2k3 server, VS 2008). So far the few people sending me sim results don't seem to be having any problems, strange.

Originally Posted by Levva View Post
I've recompiled with this fix, thanks for the info!

Originally Posted by Levva View Post
It would also be useful if you could apply the fix for the Flametongue Weapon co-efficients bug see my report EnhSim: Flametongue co-efficient incorrect
I've adjusted this in the latest version, thanks for the update!

Originally Posted by Levva View Post
When compiling your code have you added a unique version number eg: v1.7.0.1 so we know ppl are using your version for data comparisons?
Yup, my first initial version was 1.7.0 revB, but now I'm going with another minor revision extension, so the link below is 1.7.0.2



Edit: Link to 1.7.0.3
New EnhSim executable (1.7.0.3) can be downloaded at: http://www.apatheia.org/download/enhsim.exe

MD5 Hash: F65AEF34965BAC370D22C4894958C761


Thanks to those sending me results, it's looking good!

Last edited by tortugapir8 : 06/17/09 at 12:03 PM.

Offline
Old 06/08/09, 10:49 AM   #2112
Malan
Mind the gap.
 
Malan's Avatar
 
Malan
Tauren Shaman
 
No WoW Account
What sort of differences in DPS and EP values are you seeing between the your branch and Tukez' core?

United States Offline
Old 06/08/09, 11:46 AM   #2113
tortugapir8
Glass Joe
 
tortugapir8's Avatar
 
Draenei Shaman
 
Khadgar
They are pretty close. For my config in 1.7.0 I was getting:

                    DPS                 PPM       MPS
white               1869.62   29.24%    82.28
windfury            765.12    11.97%    6.96
flametongue         558.53    8.74%     52.31
stormstrike         395.78    6.19%     6.73      0.00      0.00%
lava lash           338.39    5.29%     8.08      16.64     10.00%
magma totem         526.01    8.23%     2.90      53.87     32.36%
earth shock         576.91    9.02%     8.82      38.31     23.02%
lightning bolt      850.39    13.3%     8.89      54.32     32.63%
lightning shield    213.45    3.34%     0.82      0.00      0.00%
spirit wolves       299.73    4.69%     0.40      3.31      1.99%

DPS                 6393.92
In 1.7.0.2:
                    DPS                 PPM       MPS
white               1913.93   29.76%    82.28
windfury            785.06    12.21%    6.98
flametongue         542.51    8.44%     52.29
stormstrike         405.60    6.31%     6.73      0.00      0.00%
lava lash           338.42    5.26%     8.07      16.62     9.98%
magma totem         526.36    8.18%     2.90      53.86     32.33%
earth shock         576.87    8.97%     8.82      38.27     22.98%
lightning bolt      854.37    13.29%    8.92      54.51     32.73%
lightning shield    217.69    3.38%     0.83      0.00      0.00%
spirit wolves       270.19    4.2%      0.40      3.31      1.98%

DPS                 6431.00
It's pretty much as expected for me, a little more white damage due to the new formula for damage reduction due to armor, and a little hit on Flametounge from the new co-efficient.

The only thing that bugs me still is the EP calculations. In 1.7.0 I get:

EP                        value     DPS       total DPS      difference

baseline                                      6394.55
ap                        1.00      0.62      6518.69        124.14
crit rating               1.66      1.03      6425.40        30.85
hit rating                1.58      0.98      6423.93        29.38
expertise rating          0.00      0.00      0.00           -6394.55
haste rating              1.54      0.95      6423.14        28.59
armor penetration rating  1.44      0.90      6421.41        26.86
spellpower                0.97      0.60      6484.63        90.08
mh dps                    5.36      3.32      6419.48        24.93
oh dps                    3.37      2.09      6410.22        15.67
strength                  1.10
agility                   1.71
intelligence*             1.35
spirit                    0.00      0.00      0.00           -6394.55
mana                      0.00      0.00      0.00           -6394.55
mp5                       0.00      0.00      0.00           -6394.55
Where as in 1.7.0.2:

EP                        value     DPS       total DPS      difference

baseline                                      6432.86
ap                        1.00      0.62      6556.03        123.17
crit rating               1.69      1.04      6464.11        31.25
hit rating                1.61      0.99      6462.62        29.77
expertise rating          0.00      0.00      0.00           -6432.86
haste rating              1.50      0.93      6460.61        27.75
armor penetration rating  1.32      0.81      6457.15        24.30
spellpower                0.97      0.60      6522.54        89.68
mh dps                    5.41      3.33      6457.86        25.00
oh dps                    2.41      1.49      6444.00        11.14
strength                  1.10
agility                   1.69
intelligence*             1.37
spirit                    0.00      0.00      0.00           -6432.86
mana                      0.00      0.00      0.00           -6432.86
mp5                       0.00      0.00      0.00           -6432.86
I was expecting to see ArmorPen being given more weight due to the new formula not less. Still working on the rhyme and reason behind it and trying to build some test cases I can actually proof against.

Offline
Old 06/08/09, 3:14 PM   #2114
OnosKT
Piston Honda
 
Tauren Shaman
 
Kel'Thuzad
I was expecting to see ArmorPen being given more weight due to the new formula not less. Still working on the rhyme and reason behind it and trying to build some test cases I can actually proof against.
Now this is just an assumption in my case of what is going on, but here it goes:

First of all, we need to realize that the ArP EP is based on the relative value of ArP versus AP. So if AP goes up in terms of how good it is, then ArP EP goes down. With that in mind - I suspect that the extra gain that the base ArP debuffs on the target (sunder armor, etc.) give us in terms of hitting harder (white, SS, wf) increases the AP value more than the increase ArP would give us.

Quick question: Any idea why wolves simulate 20 DPS lower in yours than in 1.7.0?

Offline
Old 06/08/09, 3:23 PM   #2115
Malan
Mind the gap.
 
Malan's Avatar
 
Malan
Tauren Shaman
 
No WoW Account
Originally Posted by OnosKT View Post

Quick question: Any idea why wolves simulate 20 DPS lower in yours than in 1.7.0?
His windfury was 20 dps less too, random effects more than likely.

United States Offline
Old 06/08/09, 4:25 PM   #2116
OnosKT
Piston Honda
 
Tauren Shaman
 
Kel'Thuzad
Well, I assumed WF would be lower due to lower effects from ArP. But actually that could explain wolves too, since their damage is melee damage, and I assume mitigated my armor.

Offline
Old 06/09/09, 10:54 AM   #2117
Ryethe
Piston Honda
 
Ryethe's Avatar
 
Draenei Shaman
 
Medivh
Originally Posted by OnosKT View Post
Well, I assumed WF would be lower due to lower effects from ArP. But actually that could explain wolves too, since their damage is melee damage, and I assume mitigated my armor.
Unless something has changed (ie. the pet change GC was talking about) wolves do not inherit your ArP.

Offline
Old 06/09/09, 12:19 PM   #2118
OnosKT
Piston Honda
 
Tauren Shaman
 
Kel'Thuzad
Unless something has changed (ie. the pet change GC was talking about) wolves do not inherit your ArP.
They do not need to. I assume he was using some ArP debuffs on the mob (i.e. sunder armor) - in which case the new ArP calculations would increase the dogs damage.

Offline
Old 06/09/09, 8:08 PM   #2119
Brynmor
Von Kaiser
 
Brynmor's Avatar
 
Dwarf Shaman
 
Akama
Sim inaccurate with FT Glyph

I've noticed that there is a bit of a problem with the Flametongue Glyph on EnhSim. On the character stats you are supposed to put in your stats as they appear on your character sheet and of course Flametongue Glyph's extra 2% spell crit shows up there. However when you put the Flametongue Glyph into the simulator it adds another 2% spell crit on top of the 2% already added to your character page.

I ran the sim with my stats with no glyphs and without the 2% spell crit from FT Glpyh to get my base DPS and got these results;

DPS 6910.88
Lightning Bolt Crit% 43.05
Earth Shock Crit% 43.04
Flametongue Crit% 43.03

I then ran the sim adding 2% spell crit as if I had the FT Glyph without adding the FT Glyph as one of my major glyphs in the sim and got these results;

DPS 6956.92
Lightning Bolt Crit% 45.15
Earth Shock Crit% 45.01
Flametongue Crit% 45.02

I then added the FT Glyph into the sim but removed the 2% spell crit I had previously added and got these results;

DPS 6957.25
Lightning Bolt Crit% 45.04
Earth Shock Crit% 45.05
Flametongue Crit% 45.06

Lastly I ran the sim with the Glyph added into the sim and with the 2% spell crit as you would see it on your character page and got these results;

DPS 7002.34
Lightning Bolt Crit% 46.91
Earth Shock Crit% 47.04
Flametongue Crit% 47.02

As you can see this shows that when using the FT Glyph if you copy your stats and glyphs from the character page the sim treats it as if you get an 4% additional spell crit rather than the correct 2%. That is, the sim double counts the 2% extra spell crit when you copy your characters stats and glyphs.

Offline
Old 06/09/09, 8:12 PM   #2120
Malan
Mind the gap.
 
Malan's Avatar
 
Malan
Tauren Shaman
 
No WoW Account
Are you by chance leaving the flametongue weapon buff active when you copy your stats over?

United States Offline
Old 06/09/09, 8:42 PM   #2121
Brynmor
Von Kaiser
 
Brynmor's Avatar
 
Dwarf Shaman
 
Akama
When I ran the sim on these last tests no. I copied my stats without it, then added the crit manually as if I had the buff for the second test without adding the glyph to the sim, input just the glyph and assumed no buff for the third, and assumed both the buff on and the glyph in the sim for the last one.

Normally I would copy the stats with buffs active, I don't recall seeing anywhere on the Sim's instructions that I should not have, all it said is copy your stats as you see them on the character sheet. I had assumed before that the Flametongue Glyph on the sim was just a text placeholder that didn't change your stats at all because you are instructed to copy your stats, which already included the 2% crit.

If I'm mistaken and there is indeed instructions somewhere in the sim that tell you to leave the FT Buff off when copying your stats when using the FT Glyph perhaps it should be more prominent.

Offline
Old 06/09/09, 8:46 PM   #2122
Malan
Mind the gap.
 
Malan's Avatar
 
Malan
Tauren Shaman
 
No WoW Account
The method you used on your 3rd test is how you should be doing it.

United States Offline
Old 06/09/09, 8:52 PM   #2123
Brynmor
Von Kaiser
 
Brynmor's Avatar
 
Dwarf Shaman
 
Akama
I see. I would say that maybe that should be changed or make it more clear that you shouldn't have the buff active when you copy stats when using the FT Glyph. I would assume a lot of people run the sim as I had, copying stats with the buff active and with the FT Glyph in the sim.

Offline
Old 06/10/09, 4:45 AM   #2124
Atren
Piston Honda
 
Orc Shaman
 
Shattered Halls (EU)
FT is no go already due to spellpower part regardless about glyph. So basically any weapon enchant that modifies your stats should not be active.

Offline
Old 06/10/09, 12:48 PM   #2125
Spaceinvader
Glass Joe
 
Troll Shaman
 
Blackhand
Originally Posted by tortugapir8 View Post
New EnhSim executable (1.7.0.2) can be downloaded at: http://www.apatheia.org/download/1702/enhsim.exe
You might want to fix the link in your post. The URL displayed is correct but clicking on the link will load a different URL which will download Rev B instead of 1.7.0.2 (fixed in the quoted text). I downloaded the old version by mistake and I imagine I am not the only one.

Thanks for all your hard work -- it is much appreciated.

Offline
Closed Thread

Go Back   Elitist Jerks » Shamans

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
DPS Simulator Grim13 Warriors 133 11/12/08 8:20 AM
Teron Gorefiend Ghost Simulator Zugstab Public Discussion 31 01/16/08 8:14 PM
[Mage] DPS Simulator zurmagus Class Mechanics 41 11/08/07 10:11 PM
[Shaman] Experimental combat simulator draghkar Class Mechanics 182 08/30/07 5:33 AM