Category Archives: World of Warcraft

Basic Simulationcraft Guide

What is Sumulationcraft?

Simulationcraft is a standalone program that can simulate combat scenarios for World of Warcraft and measure statistics such as damage per second. It is invaluable for finding out statistically superior rotations, and gear and talent setups. 

Simulationcraft provides the ultimate answer to questions such as “which trinket is better?” or “which talent is better?”. 

Simulationcraft has huge functionality, but can be hard to use properly. The purpose of this guide is explain the basics of Simulationcraft.

Why not just use a dummy?

no-dumy

Dummy testing will never yield accurate results because it has a very small sample size, even if you hammer at it for hours. Simulationcraft runs thousands of simulations in mere seconds, and averages out the results, making sure that random is never a factor. 

If you want to test different pieces of gear on a dummy, you have to actually own them. With Simulationcraft, you can run simulations for items you don’t have yet, to find out if they are even worth pursuing. 

Basics of Simulationcraft

On a primitive level, Simulationcraft works like this:

1) You import a summary of your character into Simulationcraft. It includes your equipped gear, talents, artifact traits, and all other relevant information.

2) You specify an Action Priority List  (APL)- a “rotation” of actions for you character to perform in Simulationcraft.

Both APL and the summary use Simulationcraft’s internal “programming” language.

3) You specify parameters of the simulation: number of fights, fight length, target level, number of targets, etc.

4) You start the simulation – a simulated battle between your character and enemy targets.

During a simulation, Simulationcraft constantly goes through the Action Priority List and executes first available action. 

5) You get results. Simulationcraft runs the specified number of fights, compiles the results and shows them to you, and you can analyze them and draw conclusions.

You can simulate multiple character summaries and APLs at once, and Simulationcraft will show you the comparison. 

For example, you can simulate your character with several different trinkets to find out which is superior.

How to sim your character

What you will need

1) Simulationcraft addon for World of Warcraft: DOWNLOAD LINK

The only purpose of this addon is to export a character summary.

Installation: download the addon, and extract the archive into this folder:

..\World of Warcraft\Interface\AddOns

World of Warcraft enables newly installed addons by default, so no further action should be necessary. 

To make sure the addon is enabled, go to “AddOns” menu on the lower left of the character select screen, and make sure Simulationcraft’s checkbox is checked.

2) Simulationcraft itself: Main SiteDownloads Fresh Versions

Depending on which version you choose to download, Simulationcraft may require an installation or just to extract the archive. 

Make sure to download new versions frequently.

What to do

Start Simulationcraft as you would launch any other program.

You will notice Simulationcraft has several tabs at the top. Select the “Simulate” tab.

Click on a small plus sign slightly below to create a new simulation tab.

sim1

It will be called “Simulate!” by default, but you can right click and rename it.

Start World of Warcraft and log into the character you wish to simulate.

Type this into in-game chat: /simc

A popup window will open, containing the summary of your character:

wowscrnshot_092516_045911

Press Ctrl + C to copy the summary, then Alt + TAB to switch back to Simulationcraft window. Or you can just exit the World of Warcraft.

Use Ctrl + V to paste the summary into Simulationcraft:

sim2

 Now you need an Action Priority List.

Ideally, you want to write your own APLs, that will reflect your playstyle, so you can get the most accurate and personalized results.

But writing an APL can be a daunting task, and for now it’s fine to use a sample APL from one of the Simulationcraft’s sample profiles.

Go to Import tab, and then to Sample Profiles subtab. Select your class and spec, and double click on a sample profile that is closest to your gear level. 

sim8

A new sample profile simulation tab will open:

sim10

 Select and copy everything from this line:

# This default action priority list is automatically created based on your character.

And up to the start of the gear section:

head=hood_of_th....

Then copy that Action Priority List into your own Simulation tab:

sim9

Make sure to add this after the Action Priority List, if you’re a Hunter:

summon_pet=cat

In total, your simulationcraft profile should look like this.

You are all set! Click “Simulate!” in the lower right corner to start simulation.

A window with results will shortly open:

sim11

The “DPS” statistics is the most important one, but you can learn other useful things as well.

Advanced Configuration

Talents

Your character summary contains your chosen talents in numerical form, for example:

talents=3112131

Refers to:

sim3

Replacing gear pieces

The gear section of your character summary consists of multiple lines, similar to this:

chest=,id=137368,bonus_id=1726/1497/3337

Simulationcraft uses identification numbers to describe pieces of gear. “id” refers to base id of the equipped item, while “bonus_id” refers to various modifiers such as gems or different item level version of the item, such as warforged of upgraded.

This code describes Breastplate of Ten Lashes.

You can replace this code with ID numbers of another item, if you wanted to simulate your character with it. 

The easiest way to find out ID numbers for an item is to equip it and use /simc command again, and just copy the single line describing that item.

If you don’t own the item, go to Wowhead and use it to find that item.

For example, Ley Dragoon’s Hauberk.

Let’s say I wanted to find out if it’s worth replacing my Breastplate of Ten Lashes with 845 itemlevel version of the Ley Dragoon’s Hauberk.

Select the itemlevel in “item versions” menu.

sim4

Then look at your browser’s address bar:

https://www.wowhead.com/item=134302/ley-dragoons-hauberk&bonus=1507:1826

The “item=134302” is the base ID of the item.

“bonus=1507:1826” are bonus IDs.

So to put the Ley Dragoon’s Hauberk on your character in simcraft, you have to replace the chest code with this:

chest=,id=134302,bonus_id=1507/1826

Stat Weights

By default, Simulationcraft doesn’t calculate your stat weights. To enable stat weight calculations, go to Options tab and Scaling sub tab.

Check the “Enable Scaling” checkbox, and checkboxes for all stats that you would like to get scaling for (stats that are useful to your character):

sim12

When you simulate a profile, Simulationcraft will show your Stat Weights on the results page:

sim13

You are even presented with a Pawn string that you can import into Pawn addon in game and use it to judge whether an item will be an upgrade for you, based on YOUR stat weights for YOUR character and YOUR rotation, if you actually bother to create a custom APL.

Action Priority List

It is important to understand and modify Action Priority Lists so you can find out the best rotation for your character. For example, you could find out that using ability A on a higher priority than ability B can increase your DPS.

APL has two sections: precombat and combat.

Precombat section makes your character perform certain actions before the simulated combat begins, such as eat food, drink a flask or precast an ability, such as Pyroblast.

Precombat section can have only one damaging action, after which the combat will begin.

# Executed before combat begins. Accepts non-harmful actions only.

actions.precombat=flask,type=flask_of_the_seventh_demon
actions.precombat+=/food,type=nightborne_delicacy_platter
actions.precombat+=/summon_pet
# Snapshot raid buffed stats before combat begins and pre-potting is done.
actions.precombat+=/snapshot_stats
actions.precombat+=/potion,name=deadly_grace
actions.precombat+=/augmentation,type=defiled
actions.precombat+=/windburst

After the simulated combat begins, your character will constantly go through the Action Priority List, executing the first available action.

Let’s analyze the basic priority list for Marksmanship Hunter:

(note that this APL doesn’t reflect optimal rotation for the MM hunter, it’s just an example)

actions=auto_shot
actions+=/trueshot
actions+=/barrage
actions+=/piercing_shot
actions+=/marked_shot
actions+=/windburst,if=debuff.vulnerability.remains<gcd.max&(buff.marking_targets.up|debuff.hunters_mark.down|focus>55)
actions+=/aimed_shot,if=buff.lock_and_load.up&debuff.vulnerability.remains>gcd.max|debuff.vulnerability.remains>2
actions+=/arcane_shot

Your character will activate Auto Shot.

Use Trueshot every time it’s available.

Use Barrage when it’s available and you have enough Focus for it. With this priority list, simulationcraft will not perform any special measures to pool focus or otherwise prepare for Barrage.

Same for Piercing Shot.

Use Marked Shot when it is available – when the target has Hunter’s Mark debuff. Casting Marked Shot will put Vulnerability debuff on the enemy. 

Cast Windburst if the enemy doesn’t have Vulnerability debuff or it will last less than a global cooldown, meaning that you can’t take advantage of it even if you have Lock’n’Load proc that makes Aimed Shots instant. 

Casting Windburst will also debuff the enemy with Vulnerability.

 Cast Aimed Shot if you have a Lock’n’Load buff AND the Vulnerability will last more than the global cooldown OR if Vulnerability will last longer than 2 seconds if you don’t have Lock’n’Load.

Finally, if there is no other action available, your character will cast Arcane Shot to replenish focus and make use of “Marking Targets” buff to activate Marked Shot.

Simulating multiple profiles at once

You can insert multiple profiles one after the other, and simcraft will simulate them at once:

For example, this combination of sample profiles will sim all three hunter specs at once:

sim14

You don’t have to copy whole profiles all the time.

If you want to perform a simple comparison, like would your DPS increase if you were to replace your chest piece with another one, you can just tell simcraft to copy your profile, but replace the chest piece.

Insert this after the profile:

copy="another chest"
chest=,id=134302,bonus_id=1507/1826

And the result will be:

sim15

This can be used to sim your character with different trinkets or talents as well.

Simulating trinkets with active abilities

By default, Simulationcraft will not use any trinket abilities, you have to manually add them into Action Priority List.

Example:

If you your character has this trinket equipped, add the following into Action Priority List:

actions+=/use_item,name=moonlit_prism

You can add “if” conditions to this action just as you would for an ability. For example:

actions+=/use_item,name=moonlit_prism,if=cooldown.barrage.remains=0&focus>60

This will make simcraft use the trinket only when Barrage is ready to cast and you have resources for it. 

 

WoW Addons: Epic Hunter Sounds

World of Warcraft is a great MMORPG, but it’s dated and it shows. The new character animations that came in Legion are great, but I’ve always been more of a sound kinda guy, so I find that adding a frivolous amount of custom sound effects to events and abilities can really spice up the dusty game.

HOW TO ADD YOUR OWN SOUNDS

There are several ways to attach custom sounds to events and abilities. The easiest way is to use the TellMeWhen addon:

 

This addon has a huge amount of features, and can be overwhelming to try and figure out, but it’s definitely worth the effort, because you can track almost anything with it.

Basic idea is to create a new icon, that will show on “succesfful cast” combat event, and play a custom sound when that happens. You don’t actually need the icon to show up, so check “always hidden” checkbox. 

WeakAuras is a popular alternative that can do this as well.

SOUND REPOSITORY

Burst activation and deactivation sounds

Sound\Spells\SPELL_InfraredHeatFocals_On_01.ogg
Sound\Spells\SPELL_InfraredHeatFocals_Off_01.ogg

These are stored in WoW files, so you don’t need to download them, just use these sound paths in TellMeWhen.

Marksmanship Hunter Gun Sound Pack
(12 files)

DOWNLOAD LINK

Includes: Aimed Shot, Piercing Shot, Counter Shot, Binding Shot (one sound for cast, one for stun), Black Arrow, Arcane Shot, Multi Shot, Bursting Shot, Bloodlust (Heroism, etc), Chimaera Shot (remnant of the old days).

You can configure TellMeWhen yourself or just import this group:

!!! Put sound files into this folder: 

World of Warcraft\Sound\MM

Marksmanship Hunter Bow Sound Pack
(31 file)

DOWNLOAD LINK

Perfect for Thas’dora in bow form. Also check out Barrage Alt 2 and Marked Shot Alt further below to complete the archery sound profile. 

Includes: Aimed Shot, Piercing Shot + Windburst, Counter Shot, Binding Shot (cast only), Black Arrow, Arcane Shot, Multi Shot, Bursting Shot, Bloodlust (Heroism, etc), Exhiliration plus a few unassigned files.

You can configure TellMeWhen yourself or just import this group:

!!! Put sound files into this folder: 

World of Warcraft\Sound\MMA

Beast Mastery Sound Pack
(10 files)

DOWNLOAD LINK

Includes sound for casting: A Murder of Crows, Cobra Shot, Kill Command, Dire Beast and Stampede. Also a pump shotgun version of the Multishot.

More sound files
(29 files)

DOWNLOAD LINK

Includes: gunshot and blaster sounds, weapon loading sounds, shattered glass. Possible sound effects for A Murder of Crows, Stampede, Kill Command, Cobra Shot.

Classic WoW Gunshot Sounds

DOWNLOAD LINK

Warlords of Draenor replaced classic gunshot sounds with new, terrible, muffled sounds. To bring old sounds back, just put the sound files into this folder:

World of Warcraft\Sound\Spells


This is just an example of what I’m using. I encourage all of you to seek your own custom sounds that would make your gameplay more epic and unique.

STANDALONE ADDONS

DOWNLOAD LINKS: BARRAGE ALT 2 | MARKED SHOT ALT | OTHER SHOTS (TMW GROUP)

BARRAGE

 

DOWNLOAD LINKS: STANDARD | ALTERNATIVE SOUND (STANDALONE)

MARKED SHOT

 

DOWNLOAD LINK

TRISTANA’S VOICEPACK FOR GNOME MARKSMEN

 

DOWNLOAD LINK

ARCANE MISSILES

Made with “blaster” *pew-pew* sounds in MoreSoundFilesPack above.

DOWNLOAD LINK

MUTE ANNOYING REPAIR SOUND FROM GNIMO ON TUNDRA MAMMOTH

LINK

Backup Links