- This isn't final as of Jan 19th 2025 - this approach is based on testing on prepatch PTR and Midnight beta using my own characters or premades. I'll get a lot more feedback tomorrow when prepatch goes live on Raidbots and bug reports start showing up.
- Timewalking items might be funky. Need to see some new items that drop once prepatch launches.
- Some special items don't quite work (Heart of Azeroth is weird - seems to apply bonuses in a different order than expected)
- Handling future eras is speculative but it seems to make sense
- Not sure how to handle bonuses with squishEra of 0. Looks like if these bonuses are used, the era squish is skipped. But that seems extremely suspicious since it would cause weird issues in the future if my speculation about the system is correct.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PASTE IN YOUR /SIMC INPUT AFTER THIS LINE | |
| # Run this in Raidbots Advanced mode: https://www.raidbots.com/simbot/advanced | |
| # | |
| # Or using a recent nightly build of SimC: https://www.simulationcraft.org/download.html | |
| # | |
| # The lines below test out 5, 10, 15, and 20 stacks of each Bounty buff to give a sense of what | |
| # will provide the most DPS. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # SimC item strings for Jaithys, the Prison Blade | |
| # Thanks to Archimtiros for providing the initial bonus IDs for each empowered level | |
| # | |
| # Copy any of these version of the items and paste them at the end of your /simc input | |
| # and Top Gear will think they are in your bags. Make sure you keep the # at the beginning | |
| # of the line. The "# main_hand=XXX" lines are the ones that matter. | |
| # | |
| # ====== LFR Versions | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you want to sim higher level cloaks, you can edit your SimC input and replace your current "back=" line with one of the following: | |
| Rank 1 | |
| back=,id=169223,bonus_id=6272/1472,context=11 | |
| Rank 2 | |
| back=,id=169223,bonus_id=6273/1472,context=11 | |
| Rank 3 | |
| back=,id=169223,bonus_id=6274/1472,context=11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Paste your /simc input here | |
| # Races for Both Factions | |
| profileset."Pandaren"+="race=pandaren" | |
| # Horde Races |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| druid="T24_Druid_Balance" | |
| source="default" | |
| spec="balance" | |
| level="120" | |
| race="troll" | |
| role="spell" | |
| position="ranged_back" | |
| talents="1000231" | |
| azerite_essences="14:3/5:3/4:3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ptr="1" | |
| deathknight="T24_Death_Knight_Blood" | |
| source="default" | |
| spec="blood" | |
| level="120" | |
| race="undead" | |
| role="tank" | |
| position="front" | |
| talents="2220022" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ptr="1" | |
| deathknight="T24_Death_Knight_Blood" | |
| source="default" | |
| spec="blood" | |
| level="120" | |
| race="undead" | |
| role="tank" | |
| position="front" | |
| talents="2220022" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let fs = require('fs'); | |
| const _ = require('lodash'); | |
| const Promise = require('bluebird'); | |
| fs = Promise.promisifyAll(fs); | |
| const main = async () => { | |
| const data = await fs.readFileAsync('./1.input', 'utf8'); | |
| const changes = _.split(data, '\n'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const azeriteUsable = { | |
| 0: 'any', | |
| 3: 'shaman - ele', | |
| 4: 'shaman - resto ?', // healing stream totem | |
| 5: 'dk - blood', | |
| 6: 'dk - frost ?', | |
| 7: 'dk - unholy', | |
| 8: 'dh - havoc + veng', // immolation aura | |
| 9: 'dh - havoc ?', // fel rush | |
| 10: 'dh - veng', |
NewerOlder