Your thoughts about cryo resonance after a full update worth of time
▲ 65 r/YaeMiko

Your thoughts about cryo resonance after a full update worth of time

Now that we got more than 1 month to test Stellar Yae Miko, are you still taking into account the 15% Crit rate from Cryo resonance?

Or are you building your Yae with 80% or more Crit rate.

u/MarvelousMarbel — 4 days ago

GetKeyState doesn't detect button releases

Hello everyone,

Don't know if I misunderstood something, but I tried writing 2 scripts and both of them keep not detecting

GetKeyStateGetKeyState

The goal being simply :

  • I hold the XButton2 : the script should repeat "mouse left click"
  • I release XButton2 : the script should stop

In my case the script runs forever until I click the XButton2 again and again until it detects :

!GetKeyState("XButton2", "P")

The 2 scripts I tried are :

#Requires AutoHotkey v2.0


; Run as admin is needed
if (!A_IsAdmin) {
    Run '*RunAs "' A_ScriptFullPath '"'
    ExitApp
}


XButton2::
{
    ; Optional: Prevent starting the timer if the button isn't physically down
    ; (though the timer itself checks this too)
    if !GetKeyState("XButton2", "P")
        return
    
    ; Start the timer. It will call TurboClick every 50ms.
    ; If the timer is already running, this resets it.
    SetTimer(TurboClick, 50)
}


TurboClick() {
    ; Check if the button is still physically held down
    if !GetKeyState("XButton2", "P") {
        ; Button released: stop the timer
        SetTimer(TurboClick, 0)  ; 0 means "turn off this timer"
        return
    }
    ; Button is still held: perform a click
    Click
}


; Safety net: If the hotkey somehow ends while the timer is running,
; stop the timer when the button is physically released.
XButton2 up:: {
    SetTimer(TurboClick, 0)  ; Stop the timer immediately on release
}

And :

#Requires AutoHotkey v2.0


if (!A_IsAdmin) {
    Run '*RunAs "' A_ScriptFullPath '"'
    ExitApp
}


XButton2::
{
    while GetKeyState("XButton2", "P") {
        Click
        Sleep 50
    }
}

What am I doing wrong ?

How would you guys write a simple script that just repeats "mouse left click" that works ?

reddit.com
u/MarvelousMarbel — 18 days ago

I'm surprised how easy the new boss is. Or how strong Sandrone is? [Fearless difficulty 5]. Very bad build Sandrone right now.

If you are wondering why my Sandrone is using an under leveled Def% Goblet blame Hoyo for not giving enough Resin.

I will be in the mines for a long long time it seems considering the game is only giving me the Hexerei artifacts instead of the Stellar one.

u/MarvelousMarbel — 1 month ago
▲ 45 r/YaeMiko

So, the Stellar buff is a 400% increase to Yae's personal damage ?

I was recently told that Yae's damage distribution is something like 80% stellar-20% Talent Electro DMG.

Then Yae's stellar-conduct DMG comes entirely from her passive.

If her talent level's only accounts for 20% it means that the stellar buff is like a 400% boost.

Now that I think about it, newer Yae owners don't need to crown her talents if it accounts for so little of her DPS.

Which makes Yae a very F2P friendly character.

reddit.com
u/MarvelousMarbel — 2 months ago
▲ 33 r/YaeMiko

I'm finally a proper Yae Miko main. And that specific voice-over is single-handedly worth the primogems spent on her banner 😍.

I think Yae may have my favorite "opening chest" voiceline.

Yae : Go on. Open it up, show me what's inside.
Me while blushing : yes mommy.
u/MarvelousMarbel — 2 months ago

Guys, I think there's an opportunity to get Apologems.

Using the burst is supposed to reset the cooldown of the turrets.

But when I tested it did nothing and my 3 turrets still expired 2 seconds after my Burst dealt damage.

So, how do we get Apologems for this bug ?

u/MarvelousMarbel — 2 months ago

Guys, I'm Sandrone main now !!!

Sandrone is :

  1. my first Cryo DPS
  2. my first Harbinger
  3. and my first Tsudere DPS

She took 3 of my virginities single handedly.

u/MarvelousMarbel — 2 months ago
▲ 46 r/YaeMiko

Is this true?

This guide says that The Widsith is better than all other 5 STAR weapons beside her signature and Nefer's.

Do you all agree?

I thought higher base attack from weapons like Skyward Atlas was significantly better than low base attack weapons like Widsith .

u/MarvelousMarbel — 2 months ago

Add 1 hydro character to guarantee Cryo resonance for Yae

In case you don't know how Freeze can synergies with Yae, Freeze = higher than 1 Cryo aura. And electro hits from Yae = 1 electro unit.

So if there's freeze on a target, Yae won't be able to remove the whole cryo aura. The stellar hit Yae deals right after will always benefit from Cryo resonance in this case.

In this video the Cryo/freeze aura on the boss is so strong that Yae couldn't remove it all before the boss mechanic ends. So I couldn't stun the boss because Yae does not apply enough Electro.

Whichis very very good for stellar Yae.

u/MarvelousMarbel — 2 months ago

The new superconduct set works only on active characters?

I see many people mention the superconduct set doesn't work when the character is off-field. But I also see pre-access videos using this set on Yae.

reddit.com
u/MarvelousMarbel — 2 months ago
▲ 46 r/YaeMiko

How will you play Yae Miko if Hoyo ever releases a new character who's a stronger Stellar support then the Shrine Maiden ?

For my part, I was thinking that if a better Stellar conduct support gets released in 2 or 3 months, maybe your team will simply change from :

  • Sandrone/Wriothesley/Cyno
  • Yae Miko
  • Flex 1 (Qiqi, Xilonen, Beidou, Diona, etc.)
  • Flex 2 (Qiqi, Xilonen, Beidou, Diona, etc..)

To :

  • Sandrone/Wriothesley/Cyno
  • Yae Miko
  • NEW STELLAR SUPPORT
  • Flex (Qiqi, Xilonen, Beidou, Diona, etc..)

Then :

  • Sandrone/Wriothesley/Cyno
  • Yae Miko
  • NEW STELLAR SUPPORT
  • CRYO ARCHON

So, I don't quite understand why every streamers are saying :

"Yae Miko will likely get replaced by the NEXT STELLAR SUPPORT".

reddit.com
u/MarvelousMarbel — 2 months ago

Today I just learned that Zhongli has another priviledge he wasn't supposed to have in Stygian Onslaught

Zhongli is the only Geo character who can oneshot buffed Half-Tulpas from Difficulty 5 or 6.

u/MarvelousMarbel — 2 months ago

After several months, finally managed to take a good picture of Nefer caresssing her own body using her shadows. Shoutout to Miliastra wonderland for giving us the opportunity to goon properly.

u/MarvelousMarbel — 2 months ago

Anyone else noticed how suspiciously that guy shills Zhongli ? So, Zhongli buff incoming ?

If Hoyo follows the same pattern as for Venti buff, then Zhongli buff should be released 1 or 2 version updates from when this local legend is available in Stygian and Abyss.

u/MarvelousMarbel — 2 months ago

How satisfying is this Raiden team in coop ?

I was thinking that one of the most satisfying Raiden team to play in coop might look like this :

  1. Raiden C1
  2. Flins
  3. Xilonen C2
  4. Columbina

Xilonen C2 being the necessary here.

reddit.com
u/MarvelousMarbel — 3 months ago

If you liked Emilie's story quest, you might like the world quest that "has" easter egg resembling it.

u/MarvelousMarbel — 3 months ago