![]() |
[Enhancement] Rawr.Enhance thread
Given I've started doing some work on the Rawr.Enhance module I thought it worth while to create a new thread to keep all the information about the work and questions and answers about the accuracy of the model in one place. I thought it best to do this rather than polluting the EnhSim thread, where whilst there is a degree of cross-over I felt separation was better.
Model progress : The model as it stands has a lot of old lvl 70 stuff in it still. I'd like some assistance in digging out the right base values and testing the internal calculations if members here would be so kind as to assist. This way we can build a model to serve the purposes of the Rawr community as well as adding the EnhSim export to serve our purposes. I am able to do some of the stuff whilst I am at work, unfortunately that means no WoW access to test things in game eg: strip off character to get some base stats. So it would be useful to have feedback from users who have such access, as typically by the time I am home my time is taken up raiding/guild management/eating/sleeping leaving little coding time. I've got most of the base model stuff working, I need to clarify what the base melee & spell crit values should be though, ie: with no talents and no kit what is a lvl 80's base melee & spell crit percentages. More questions and testing to follow as project develops. If you are willing to assist testing the alpha & beta phases please let me know here. I am aware that Toots Hepcat will also be doing a fair bit of work on the module, however having got the go ahead from Rawr co-ordinator to include the EnhSim config export into the model I was keen to get going faster, sorry if that interferes with anything you have done Toots. I'd love to co-ordinate better with you for the benefit of the whole community. |
Well I don't know if you still need it, I unlearned all my talents and took off all my stuff:
Unluckily I am Master of Anatomy which grants me 32 Crit Rating, thus we have to substract something from the crit values I obtained. Draenai, level 80, shaman: Base stats Strength: 121 Agility: 71 Intellect: 129 Stamina: 135 Spirit: 145 Armor: 142 Melee stats: Atackpower: 332 Crit chance: 3,77% (4,47% - 32 CR (0.7%)) Spell stats: Mana Regen: 45 Crit chance: 2,774% (3.67% - 32 CR (0.896%)) Defenses: Armor: 142 Dodge: 3,04% Block 5% All values I didn't mention are zero. I hope this is some kind of help. |
Thanks yes that has helped. It confirms my own manual calculations as to what it should probably be but to see it confirmed is very helpful.
|
I can provide tauren naked stats if you still need them.
|
Saw your post in the EnhSim thread and just wanted to say that I am more than willing to help with testing it. Not sure how to get it though since the latest Rawr release incorporates what I assume is a wrong model (suggests stuff like str/stam gems) and your latest release contains only sources. I can probably get my hands on VS to build it, but if the Rawr.Enhance dll was available somewhere it would make it easier.
|
I am maintaining a thread at Some volunteer testers for Rawr.Enhance required which has a download link. I can update the initial post in this thread with the same info. The mmo-champion posters tend to be less stats focused and more results focused "End users". I'd anticipate that the EJ forum folks would be more picky little detail focused :) This should help the model reach greater degrees of accuracy, as I need people to test who can find picky little details.
|
I can't promise that I'll be very active since I'm starting a new work in two weeks so I'll probably won't have much time left, but I'm also willing to test.
I downloaded the sources from the official rawr website and compiled it myself using Visual Studio Express for C#. It worked fine so far, except the optimizer crashes but I don't know if that is a Enhance issue or a Rawr general issue. Well I found some missing buffs, but perhaps I'm just a bit confused. The Windfury Totem / Hastebuff is missing, Leader of the Pack / Totem of Wrath / Critbuffs are also missing. I think these are quite important. But getting Rawr and the Sim on one level settingswise, the Rawr module is still quite off (using revision 32300) the difference was about 400 DPS but perhaps I missed something somewhere. All those checkboxes are making me dizzy ;) |
Are the weapon slots not finished yet or is it a bug that no weapon has any dps value ?
|
Quote:
Levva are you just doing this export function or are you also helping to tweak the dps models to be a little more useful? If the latter, it's worth mentioning that we actually had an existing rawr.enhance thread but it fell off the main page of this forum. Some older feedback (that likely still applies) is in there if you want it. http://elitistjerks.com/f79/t37921-rawr_enhancement/ |
After brief flirting with the elemental thread, I came to my senses and moved my post to THIS thread.
Grim toll and Mirror of truth are listing their proc values as average over uptime in Rawr, presume it's the same for all proc trinkets. This is fine for Rawr's dps calculation I guess, but represents somewhat of a problem in doing the export to enhsim. Basically, since I have the two aforementioned trinkets, my AP and armor pen comes out too high. It's obviously not hard to fix manually, since the average proc values are listed on the tooltip of the items in Rawr, but I thought I'd just point it out in case it's been overlooked for the export module. Edit: Also, the greyed out weapon imbues, with FT on the offhand, I presume is what is inflating my spellpower value. Still overvalues my spelldamage by about 43.1. Is FT adding too much spellpower? |
Quote:
Toots hadn't done much updating for ages. I was keen to get the project going so I've been getting things updated. I'm happy to take more of a back seat if and when Toots is able to contribute more. I'll check the old thread in the meantime. Quote:
The export however I wrote, and so what I do is reverse out all the direct adding of stats, so that the EnhSim config export SHOULD be base stats without the extras. What I haven't done at present is to check the buffs and reverse out them. So all initial dps testing should be done with zero ticked buffs. The imbues : At present I've not changed the options to allow for more than one option on imbues. I feel its far more important to get the dps values calculated correctly for BASE stats + equipment and only then build up the various tweaks, buffs & options. If the basic calcs are wrong then no amount of adding buffs etc is going to work either. What version are you using for testing BTW? Are you compiling from the committed source code? If not then nothing you are testing is up to date. I'm a bit stuck to release new versions at present unfortunately. The base code has been updated to include a whole new method of gemming, this changed all the models. I cannot therefore compile a new dll as it needs the v2.2 base code to work, so until the executable for v2.2 is released I can't release a new dll. However to date almost all the export stuff is done, only the meta gems haven't been implemented yet. I've added support for tickboxes for glyphs only the Glyph of Shocking I've not implemented as I'm not entirely sure given the "flat calculation" method how I should deal with GCD calcs. |
Can someone check the validity of this calculation for Mongoose & Berserking. Its largely copied from the Cat model with a few tweaks. In passing I noted that the weapon enchants had largely been turned off for all of Rawr. I am not at all sure why this is, I'll need to check their forums for info.
Code:
if (stats.MongooseProc > 0) |
Code:
float timeBetweenBerserkingProcs = 45f / (whiteAttacksPerSecond + yellowAttacksPerSecond);I was looking through the rest of the committed code recently and noticed that the WFT haste is always included -- can you add that to the buffs section and make it optional? Apologies if this has been done and I haven't seen it. |
In the 2.2 beta of Rawr that was just released when I load the enhancement model it only shows my current items. No other items listed in the model on the right hand pane.
|
I had the same issue but talking with Astry I got it fixed. You have to enable the gemming. Go to Tools > Gemming Template > hit the rare check box than Ok. You should get items than.
|
| All times are GMT -4. The time now is 11:17 AM. |
Forum Infrastructure by vBulletin 3.6.12 ©2000-2007, Jelsoft Enterprises Ltd.