Hello!
I think I've got the basics down for simulating my character, and now I'd like to learn a bit more.
What I want to know is how to use Simulation Craft to:
1) figure out the difference in using 1 piece of gear over the other, or talents or both.
2) Is there a way to do this without having to relog into your character, change talents/gear, and run the test again?
3) What if I want to sim with gear that I do not have? How do I go about this?
Thank you!
Hello there I think I can help you with these questions.
1) Lets look at changing just one variable of a character. Lets take my current character copy and paste from the simcraft in game mod I get this.
Code: Select all
mage="Idyar"
level=100
race=undead
region=us
server=area_52
role=attack
professions=tailoring=700/jewelcrafting=700
talents=3332311
glyphs=146976/56377/146662/56364/89749/63090
spec=frost
head=,id=113596,bonus_id=566
neck=,id=113833,bonus_id=563,gem_id=115806,enchant_id=5294
shoulder=,id=113609
back=,id=116295,bonus_id=563,gem_id=115806,enchant_id=5302
chest=,id=114500,bonus_id=137
wrist=,id=115999,bonus_id=42
hands=,id=113610
waist=,id=115429,bonus_id=43
legs=,id=109804,bonus_id=499/524
feet=,id=114501,bonus_id=73/563,gem_id=115806
finger1=,id=113604,bonus_id=40/566,enchant_id=5301
finger2=,id=118296,enchant_id=5301
trinket1=,id=113835,bonus_id=566
trinket2=,id=112320,bonus_id=525/529
main_hand=,id=113837,bonus_id=563/43,gem_id=115806,enchant_id=5334
off_hand=,id=118851
Now I know that I should be using prismatic crystal but I hate it so much UGH. So lets change my profile to figure out how much more DPS I could get by using crystal. You see the line:
talents=3332311 this represents my talent choices. They are listed by tier so the first number is tier1 second number is tier 2 talent etc etc. So if I want to change my tier7 (lvl100) talent I would be looking at the last number. Currently I have 1 which is Temporal Void lets change that to 3 which is Prismatic crystal. So now it looks like this
talents=3332313
You mentioned wanting to change a piece of gear as well so lets say I want to replace my sandmans trinket with heroic Imperator trinket . Looking at the item on wowhead we notice a couple things. One is the item ID and the other is the bonus ID. In this example
Code: Select all
http://www.wowhead.com/item=113859&bonus=566
The item id is 113859 and the bonus is 566. So we go up again and replace
trinket2=,id=112320,bonus_id=525/529 with
trinket2=,id=113859,bonus_id=566
2) Yes as you can see from my example above you can adjust things without having to relog.
3) Think my example above demonstrates the answer to this as well.