
[REC] My Elemental shaman needs help ascending (Shaman viagra?)
saltmastergeneral opened this issue ยท 5 comments
Before You Begin
- I confirm that I have downloaded the latest version of the addon.
- I am not playing on a private server.
- I checked for an existing, open ticket for this issue and was not able to find one.
- I edited the title of this issue (above) so that it describes the issue I am reporting.
- I am reporting an issue with the default priority included with the specialization (imported or edited priorities are not supported).
Spec
Shaman - Elemental
Describe the Issue
The ongoing saga of Elemental not reccing ascendance continues (no best in slots rec either and house of cards is still wonky too but the former is the bigger issue)
How to Reproduce
- Enter as ele shaman
- Target non kelp dummy
- Here is loadout I'm using just in case (CYQAL+iDLHPJSLC+6fqMJ8tubCAAAAAMbzyyMjZGzysMGMYmBAAAAwmZ2gBMBzGTIzCAY2mmxwsxYmYmZmxw2MzMY2GsMzMzMzwMbA)
- do rotation
- Ascendence is not recced in the rotation where expected
Snapshot (Link)
Raidbots Sim Report (Link)
https://www.raidbots.com/simbot/report/u1EXodtGLp1gJJp1ev5yoY
Additional Information
Contact Information
No response
I just noticed that occasionally it does pop up later in the queue list but then disappears when I'd expect it to actually prompt
Looks like it's struggling because you're not using your On-Use (House Of Cards) Trinket macroed to Ascension, but are casting it manually before Ascension.
Looks like it's struggling because you're not using your On-Use (House Of Cards) Trinket macroed to Ascension, but are casting it manually before Ascension.
I guess that tracks cuz I do trigger it manually ...I will try binding it there
This is with binded to ascend. Shows kinda in the opener but it's almost like HoC and Ascend fight to show ..one will show then disappear then the other then that will disappear before pressing as well...and then later in the rotation it did not show at all again but prompted HoC (which then disappeared before I hit the button)
@syrifgit We need to make the conditions for Ascendance more resilient, so that if you just popped your trinket, Ascendance is still a valid options.
(
talent.first_ascendant |
( ! trinket.1.has_use_buff & ! trinket.2.has_use_buff ) |
buff.spymasters_web.up |
( trinket.1.has_use_buff & ! trinket.1.is.spymasters_web | trinket.1.is.funhouse_lens ) & trinket.1.ready_cooldown |
( trinket.2.has_use_buff & ! trinket.2.is.spymasters_web | trinket.2.is.funhouse_lens ) & trinket.2.ready_cooldown |
equipped.neural_synapse_enhancer & cooldown.neural_synapse_enhancer.remains = 0 |
equipped.best_in_slots & cooldown.best_in_slots.remains = 0
) & (
buff.fury_of_storms.up | ! talent.fury_of_the_storms
) & (
cooldown.primordial_wave.remains > 25 | ! talent.primordial_wave
)
We probably need to attack all of the cooldown checks in the first block.
( trinket.1.has_use_buff & ! trinket.1.is.spymasters_web | trinket.1.is.funhouse_lens ) & ( trinket.1.ready_cooldown | trinket.1.cooldown.remains > 20 ) |
( trinket.2.has_use_buff & ! trinket.2.is.spymasters_web | trinket.2.is.funhouse_lens ) & ( trinket.2.ready_cooldown | trinket.2.cooldown.remains > 20 ) |
equipped.neural_synapse_enhancer & ( cooldown.neural_synapse_enhancer.remains = 0 | cooldown.neural_synapse_enhancer.remains > 20 ) |
equipped.best_in_slots & ( cooldown.best_in_slots.remains = 0 | cooldown.best_in_slots.remains > 20 )
This should make it so that we'd never hold Ascendance for trinkets for more than 20 seconds. I don't have a sim-driven timeframe to apply here, since the sim won't use trinkets ahead of Ascendance. We do, however, need to course-correct when that happens.