Elden Ring - A Huge Oversight for Godfrey

Поделиться
HTML-код
  • Опубликовано: 24 дек 2024

Комментарии •

  • @ooloh
    @ooloh  6 дней назад +67

    come talk to me and ask questions and stuff - discord.gg/gtBk3vvJaA
    One of the reasons I'm thinking Godfrey is coded this way is because of the distance the player can create during the windup of the first shockwave, and From Software's hitboxes being limited to spheres and cylinders.
    Distance would largely affect the number of spheres needed to be present in order to cover the gaps made between each sphere with that distance, and on top of that, if their intention is for the player to jump the attack, then each hitbox would likely need to be deep underneath the arena, only appearing above ground at a jumpable height, which also decreases the amount of space they can cover of course because of a lower surface area at the top of a sphere.
    So overall, this would be a more convenient way to make this fight from a development standpoint. If only they remembered to do the one thing that makes it work, but still a peak boss

    • @bloostenXD
      @bloostenXD 6 дней назад

      Oil up stream when

    • @CreaturaVioleta
      @CreaturaVioleta 6 дней назад +4

      if from can use cylinders for hitboxes, then why not make the shockwave a huge cylinder that is either very short or just so low down that only a small portion of it goes above the arena floor? surely that would eliminate the need for only allowing moves classified as "jumps" within the code to make it through the attack unscathed, opening up more options for the player such as some of the ones showcased here?

    • @ooloh
      @ooloh  6 дней назад +5

      @ Generally, they reserve cylinders for attaching to bones on a model, like for a sword hitbox, although I’m not sure that that is an actual limiting factor.
      Otherwise, they chose not to for convenience most likely. It is easier to implement it this way, although I guess perhaps not if you have to flag every action that leaves the ground. There is no definitive answer

    • @noamias4897
      @noamias4897 6 дней назад

      Couldn’t they add a giant, thick but very short cylinder as the hit box on the ground?

    • @BlueSin-xw7id
      @BlueSin-xw7id 6 дней назад +1

      Unfortunately bosses like Godrick and Bayle are the same which is a bummer considering the combo potential

  • @Sekiro_lover
    @Sekiro_lover 6 дней назад +870

    Zullie the witch type editing

    • @ooloh
      @ooloh  6 дней назад +355

      I've been taking inspiration recently she is amazing

    • @Sekiro_lover
      @Sekiro_lover 6 дней назад +16

      @ooloh ye i like her work a lot

    • @blazex224
      @blazex224 6 дней назад +41

      @@oolohI love it, I like the idea of combining that style with videos about technical stuff when fighting or learning bosses

    • @blob8396
      @blob8396 6 дней назад +6

      where's the zelda music?

    • @RashFever26
      @RashFever26 6 дней назад +18

      I thought it was a Zullie video at first until I noticed the lack of Zelda music

  • @malikhittam1440
    @malikhittam1440 6 дней назад +454

    As a programmer, It really confuses me why they decided to give the attack a large hitbox and individually add flags to hundreds of animations instead of just going with the obvious route and making the shockwave hitboxes lower to the ground and have the animations just avoid them naturally. That just sounds like so much extra work which could easily have been avoided lol

    • @mmmmmhhhbeepbeep
      @mmmmmhhhbeepbeep 6 дней назад +81

      I would imagine it would be to prioritise the player's input over the character's position.
      If they are flagged as jumping (which is how most players dodge the attack) it guarantees the player is fairly rewarded for timing and input.
      If the ground was the hitbox a player may input jump but still get hit.
      (This is just my guess).

    • @alekosthecrow
      @alekosthecrow 6 дней назад +160

      @@mmmmmhhhbeepbeep not really actually, since when you jump you don't have a hitbox on your legs and that makes dodging attacks that way much easier

    • @Kittiesftw
      @Kittiesftw 6 дней назад +16

      ​@alekosthecrow fair point tbh I really cannot think of a counter argument for that

    • @FatedAwakening
      @FatedAwakening 6 дней назад +65

      It's mostly down to shape of the hitboxes Fromsoft uses, being capsules and spheres. They use them because the calculations for these kinds of hitboxes are simpler (adding in the possibility of corners complicates the maths a bit). The problem seems to be that they don't *not* use them even when it would be more efficient not to, perhaps for tech debt reasons. In theory it would be most efficient to just test the player's y-coordinate, then you don't need any hitbox, but because they only use spheres and capsules, they have to have a sphere with a wide enough diameter to include the entire arena, which would also make the hitbox massive vertically. And if they lowered the sphere, it would lead to a weird interaction where being far away would let you jump it but being close wouldn't, or it just wouldn't reach the edges of the arena period.
      Edit: the inverse can be seen with Miquella's light pillars, a large amount of which can be jumped over because they're a single tiny sphere on the ground. In theory it would be more efficient to just test the player's x and z coordinates, as it essentially already does that but also has to consider the y coordinates unnecessarily. This would mean creating a hitbox that would be an infinitely long cylinder from the ground to the sky. But since they can't express that with their already existing system for hitboxes that doesn't do corners, instead, tiny spheres on the ground that let you jump over these extremely tall light pillars.

    • @Ghorda9
      @Ghorda9 6 дней назад +15

      every collision box is a pill (a sphere is just a really short pill), that's how the engine handles it, it can't do any other shape.

  • @interloper9589
    @interloper9589 6 дней назад +356

    I've been working on a Godfrey mod for a while by now, so this could be something I could change as a fix. Very interesting, thanks!

    • @Nsscll
      @Nsscll 6 дней назад +3

      What Godfrey mod?

    • @bananacorn4375
      @bananacorn4375 6 дней назад +12

      It would be hard to implement as you would need a lot of small hitboxes like his cruicable knight stomps work, but also to cower the whole arena.

    • @interloper9589
      @interloper9589 6 дней назад +22

      @@Nsscll "Vanilla plus" type of mod. More difficult moveset, cool combos, and fixing any annoying stuff. But also keeping it polished and not too over the top.
      Hasn't really been done before other than some crappy paid mods (and they aren't amazing either) so I decided to do it myself.

    • @noamias4897
      @noamias4897 6 дней назад +3

      @@interloper9589Cough cough garden of eyes cough

    • @thebluehood35
      @thebluehood35 6 дней назад +4

      @@interloper9589 I guess we’re on the same page here. Though we have similar ideas for one attack (Gigantic Eruption for Phase 4), it’s gonna be interesting so see how both of our works would look like once it reaches a pretty long point of development

  • @Sinhsseax
    @Sinhsseax 6 дней назад +88

    If pre patch Consort gave us anything it was this channel becoming what it is today due to the Radahn guide.
    Thanks for the great work.
    All this time I used to think, that it was just hitboxes, but when I first realized that Messmer's Orb didn't seem to work for many jumps and that attacks like Bayles Nuke just had a huge sphere as a hitbox it dawned on me how this worked.
    But I didn't know it affected so many moves. This is tragic. I don't know if this will get fixed, because it's a very niche issue.

    • @darkdruidsvale
      @darkdruidsvale 3 дня назад

      chances are if it does ever get worked on we'd probably see a few versions of it as the flag gets added to the ones that where missed by the previous patch, we'd probably still come out the other side of these patches with actions missing the tag but would likely be very few and not worth the effort to add in, hopefully a modder gets around to doing it though

  • @bananacorn4375
    @bananacorn4375 6 дней назад +124

    The same is with Bayles Nuke Attack. When I was doing the Guts build against him, I felt disappointed when I couldn’t use the Dragon Katana Ash of war to dodge his nuke.

    • @ulysses5340
      @ulysses5340 6 дней назад +29

      This. It also happened to me several times. You can jump the attack normally but Dragonwound Slash AoW doesn't actually register as a jump. Despite levitating you very high. I never understood this but now I do.

    • @Bayle-the-Dread-Dragon
      @Bayle-the-Dread-Dragon 6 дней назад +56

      Skill issue

    • @ulysses5340
      @ulysses5340 6 дней назад +21

      @@Bayle-the-Dread-Dragon holy shit

    • @OzzyBlazeGaming
      @OzzyBlazeGaming 6 дней назад +12

      @@Bayle-the-Dread-Dragon Ngl, you had me in the first half, lmao!

    • @warcoder
      @warcoder 5 дней назад +1

      Curse you ​@@Bayle-the-Dread-Dragon

  • @ApapaneNui
    @ApapaneNui 6 дней назад +47

    Ah, that explains a lot. I would try using Wing Stance to dodge the shockwave and get a hit in, so you can imagine my surprise when I was clearly in mid air but still got knocked down. Waterfowl Dance seems to work, but I don’t know if it’s consistent.

    • @PeterEhik
      @PeterEhik 3 дня назад +4

      The wing stance one is quite annoying cause i seem to be able to jump some attacks with it but its far from consistent

  • @dziosdzynes7663
    @dziosdzynes7663 6 дней назад +58

    ongbal in shambles rn

  • @kindlingking
    @kindlingking 2 дня назад +10

    I'm personally more annoyed not by the issue itself, but by the fact it's an issue with Godefrey, one of the only Elden Ring bosses that naturally leads you to using jumps and is actually meant to be fought using jumps. Like the only time Elden Ring boss is actually an Elden Ring boss rather than sped up DS3 do over, it has this annoying flaw.

  • @thebluehood35
    @thebluehood35 6 дней назад +40

    Yeah, I’d say this is more towards the issue where those weapon arts didn’t count as a jump for some reason and I find it really strange.
    So it’s moreso towards fixing those weapon arts or incants where they needed to include a jump flag on all of the ones where the player isn’t touching the ground.
    Still didn’t change the fact that Godfrey is my favourite boss and I just hope the jump flag for certain weapon arts/incants gets fixed in the next patch. Or I’ll just have to do it myself for my upcoming Hoarah Loux Overhaul

    • @ooloh
      @ooloh  6 дней назад +8

      Yes, I also don't understand why they didn't simply check for whether the player is in contact with the ground collision, which is a sure-fire way to know whether to grant an exception or not. A lot of these points are probably put down to the limitations of an outdated game engine, sadly

    • @mollypolly8631
      @mollypolly8631 6 дней назад +8

      @@ooloh I believe the reason the flag is necessary is most jumping animations don't actually move your character's root bone off the ground.

    • @glatykoffi6672
      @glatykoffi6672 5 дней назад +3

      ​@mollypolly8631 Probably true as all "flying" enemies in this game can fall off a cliff.

    • @nightscout9979
      @nightscout9979 5 дней назад

      @@glatykoffi6672 Come to think of it, do the Warhawk and Stormhawk Deenh automatically avoid Godfrey's stomps?

  • @ulysses5340
    @ulysses5340 6 дней назад +19

    Very interesting. As someone else also said Bayle's nuke must be using the flag system as well instead of the jumping i-frames. Thanks a lot man, this actually solved lots of questions in my head regarding the jumping invulnerability in ER. Wish they could've done it in a more consistent way like Sekiro but it's still good.

  • @Guyy_1
    @Guyy_1 6 дней назад +59

    This is kind of unacceptable to me, the game is telling you that you can jump with abilities that move you into the sky, but then also stabbing you in the back with no rhyme or reason. Fromsoft really needs to graduate from slap on spheres as hitboxes, or actually make sure that everything is flagged the way it's supposed to instead of leaving it to the players to feel out the jank

  • @zezomorsy3165
    @zezomorsy3165 6 дней назад +6

    I'm noticing almost all of the animations without jumping flag thing are dlc animations. Maybe they just didn't think about the interaction with dlc weapons and godfrey

    • @ilikevideogames4331
      @ilikevideogames4331 5 дней назад +1

      It's not just godfrey though. The furnace golem stomps and rellanna's moon nuke work the same way. This is how most jumpable attacks work.

  • @SaxSlaveGael
    @SaxSlaveGael 6 дней назад +19

    Need to start calling you ooloh the witch. Just need that King's Field IV and Zelda sound track 👍

  • @Arfadoz
    @Arfadoz 6 дней назад +13

    This only applies to his shockwave stomps, and not the spike ones. I think it should be clarified.

  • @Drett25
    @Drett25 6 дней назад +10

    Now i understand why you can dodge attacks with plasidusax breath but not with other jumping breath attacks

  • @OzzyBlazeGaming
    @OzzyBlazeGaming 6 дней назад +6

    Very much so appreciate you highlighting this. There are also many other technical things that just annoy the hell out of me. An average player may not notice them but an avid one can't miss it. And f me is it frustrating

  • @Redmeteor200
    @Redmeteor200 5 дней назад +1

    Same great content you've always put out Zullie!

  • @emrecopur8455
    @emrecopur8455 6 дней назад +1

    I love these in-depth look videos. You nailed it! 🎉

  • @IVIaximum
    @IVIaximum 6 дней назад +7

    noticed this when doing a wing-stance style kill, didn't realize it was a more widespread issue curious how dancing lion's frost-stomp hitbox works, as I've observed some inconsistencies with aows and incants being able to jump teq it

  • @ela-811
    @ela-811 4 дня назад +1

    Favorite thing about Elden Ring is how mfing *ANIME* and cinematic they made attacks and Ashes of War. Woulda been amazing if *All* jumping attacks really had this feature.
    00:15 YOU CAN FLY OVER THE SPIKES TO SPEAR THINE ENEMY THROUGH THE SPINE!

  • @Lecan14
    @Lecan14 3 дня назад

    That's the content I'm looking for, loved it.

  • @Veloketh
    @Veloketh 6 дней назад

    love the lofi, banger video.
    I’ve been practicing Godfrey this week for the first time and was really confused by this, wish I would’ve waited till this vid lol

  • @fredking16
    @fredking16 6 дней назад +1

    thank you my goat for this information

  • @tomskeleton
    @tomskeleton 6 дней назад +1

    This also happens with Hoarah Loux's earthshaker in pvp iirc. There's probably other moves with this issue but that's the main one that comes to mind

  • @OmneAurumNon
    @OmneAurumNon 6 дней назад +1

    Thanks for explaining this! I was very confused by the Bolt of Gransax AoW let me jump over the attack, but I kept getting hit while in air using dragon communion incantations.

  • @TheMuslimMan1337
    @TheMuslimMan1337 6 дней назад +1

    Thank God for mods like reforged which fixed a lot of these inconsistencies

  • @basedneet_n3w0rd3r
    @basedneet_n3w0rd3r 6 дней назад +2

    So THAT'S what it is!
    This has been driving me nuts in co-op. Dragon Breath Incants don't work eithe4.

  • @BayleGlazer-b1n
    @BayleGlazer-b1n 5 дней назад +1

    0:55 oh my goodness that shockwave is massive

  • @Jormyyy
    @Jormyyy 6 дней назад +8

    Classic From being consistently inconsistent with the most random mechanics lol

  • @nierism_
    @nierism_ 6 дней назад +2

    rellanas twin moons and bayles nuke work the same way too

  • @nicholasscott3287
    @nicholasscott3287 3 дня назад

    "You're supposed to dodge by jumping" And here I am, dodge rolling

  • @UncleCorn
    @UncleCorn 4 дня назад +1

    This channel feels like zullie the witch but for gameplay quirks and neat info instead of lore and development breakdowns, I'm loving it!

  • @bluewind55
    @bluewind55 3 дня назад

    Interesting! This also explains why it clearly hits you a lot of the time but you take no damage as long as you started your jump animation. Cool video

  • @Patrick_Gameman
    @Patrick_Gameman 6 дней назад +2

    Amazing explanation as always

  • @kaonous
    @kaonous 2 дня назад

    I’ve made hitboxes for bosses in ps4’s game “Dreams” and for an arena-wide attack, I would have made a giant cylindrical hitbox that was about a foot high. In practice it works much better than a spherical hitbox

  • @knivy6160
    @knivy6160 15 часов назад

    I like to imagine godfrey is just so powerful, he make the air quake. Think like in dragon ball when pebbles start floating, except directed at you. It's just that jumping lets you dodge for purely mechanical reasons.

  • @scottknutson8267
    @scottknutson8267 6 дней назад

    We now need a 45 minute Vaatividya video explaining why those specific attacks being missed is actually lore accurate

  • @Jean-Malabar
    @Jean-Malabar 6 дней назад

    10 seconds in the video and i already learned i was doing something wrong by rolling godfrey’s stomp.

  • @sobo089
    @sobo089 6 дней назад +1

    Congrats to 5 k 🎉

  • @MatheusLinsCosta
    @MatheusLinsCosta 6 дней назад

    Best approach would be to make the attack hitbox be a cylinder shape on ground level (instead of a sphere). It would make it "future proof" in many cases. Whenever the player character is not touching the ground it would dodge the attack without requiring extra steps.

  • @ThePopeOfAllDope
    @ThePopeOfAllDope 6 дней назад

    Excellent content!

  • @Bacon-i9g
    @Bacon-i9g 12 часов назад +1

    didn't learn anything new but still cool

  • @joshuacook2
    @joshuacook2 2 дня назад

    Moral of the story: don't hack hit boxes with flags. Make one that is not circular, or use a bunch of ones that go under ground. Hacks lead to bugs especially as games get larger and more complex, unexpected combinations occur.

  • @DudeMcBro
    @DudeMcBro 20 часов назад

    Thanks for sharing that. That's deeply confusing.

  • @Creative_Flame9170
    @Creative_Flame9170 6 дней назад

    This is very good find that I’m sure not a lot of people were aware of. I was always under the impression that certain AoW just had their own s during their jumping animations while others didn’t, but it seems that it’s more of a hitbox thing with Godfrey, and I imagine no Ash of War actually does have any s when used (or maybe they do, I’m not sure)

  • @thebeef420
    @thebeef420 6 дней назад +1

    Idk why everyone jumps thru the stomps, you can easily roll through it. Jumping leaves you vulnerable for a second light attack, or lowers your Stam more if you do a jumping attack

    • @xd-px5ne
      @xd-px5ne 6 дней назад

      Jumping attacks do more damage in some weapons tho... And it's shorter thsn rolling and doing a light attack, which can help for poise damage. It's a calculated risk for the people who do them...

    • @BBQcheese
      @BBQcheese 6 дней назад

      Because you can attack while jumping. This attack in particular allows a full CR2 during the windup, then a jumping heavy over the stomp and another CR2 during the recovery. Rolling it is simply less optimal particularly for posture damage.

  • @raehik
    @raehik 5 дней назад

    Thanks! I love tiny bugs like this. Elden Ring is a massive game, and there are a lot of fairly inconsequential "bugs" floating around that probably won't get fixed.
    For example, some animations are missing R2 cancel windows. I know of Backhand Blade 1h tap R2 2 and Omen Cleaver 2h jump R2. If you spam R2 after inputting these, it won't do anything until you've gone completely idle. Won't even buffer the R2. It matters very little, because the roll and move windows are fine, but it's probably caught some people out before.

    • @nightscout9979
      @nightscout9979 5 дней назад

      If you file a bug report, you might be able to get those missing R2 cancel windows fixed.

  • @SharkyShocker
    @SharkyShocker 3 дня назад

    Great Video!

  • @leahthegeek9677
    @leahthegeek9677 6 дней назад

    Yoooooo Eleonoras poleblade my BELOVED, unrelated to the video but I just think shes neat. Great video btw.

  • @someoneunknown6553
    @someoneunknown6553 День назад

    Very interesting! I would have flagged whether or not you were on the ground rather than jumping. Way less room for error

  • @shahzilkhan778
    @shahzilkhan778 4 дня назад

    This also seems to apply to putrescent knight's blue flame aoes. I tried using ekzykes decay ti counter his phase transition blue flame attack and still got hit but not with placidusax's ruin

  • @brocksteele7475
    @brocksteele7475 2 дня назад

    Not surprised to see the DLC stuff having this issue. There seems to be a few little oversights in their coding.

  • @Mr.Starlight_gaming
    @Mr.Starlight_gaming 6 дней назад +3

    Was it really that hard to make the hitbox a thin disc?

  • @clankymocha
    @clankymocha 6 дней назад +1

    Confrats on 5k!

  • @ttchme9816
    @ttchme9816 6 дней назад +1

    We need to get fromsoft to see this

  • @pyromaniak2736
    @pyromaniak2736 День назад

    metronome meme "from are geniuses and everything they do is thinking from the 5th dimension, from are idiots and its a wonder they can get a game to run with their coding" god i love their games

  • @Dr_Hax
    @Dr_Hax 4 минуты назад

    would it be possible to have a e very short cylindrical hitbox? almost disk like so that every animation that rises your hitbox ?

  • @OwlScowling
    @OwlScowling 4 дня назад +1

    This is actually at the core, I think, with why some people got bored with Elden Ring's combat. I think it's great that the difficulty level is increased from DS3 (which was too easy IMO). But I don't think there's enough variety with the choices you make in combat. For FromSoft's next game, I'm hoping that there's more interesting choices to make. More attacks that also evade attacks in specific directions, making it more about finding the correct response instead of just the correct timing. Sekiro handled this really well, which is why it was my favorite FromSoft game. Oversights like this really limit the skill ceiling in these games.

  • @corneliusdwyer1824
    @corneliusdwyer1824 День назад

    Hell yeah, in here before the inevitable blow up.

  • @blackeddeath
    @blackeddeath 6 дней назад +1

    Still the best fight in the game. From would be so real if they fixed this and made it even better

  • @darik365
    @darik365 6 дней назад

    I straight up didn’t know you could jump that. 99% of the time in combat I never even consider jumping as an option at all.

    • @ooloh
      @ooloh  6 дней назад

      It’s definitely an option! But only really encouraged in some fights, Godfrey being one of them. It’s never required but can be used to get an extra hit and be stylish

  • @BurstVessels
    @BurstVessels 6 дней назад +1

    Do any other attacks make the same check if the player character is jumping? Also the Butterfly incant...who designed that 🤨

    • @ooloh
      @ooloh  6 дней назад +1

      I believe that Bayle's big slam attack does as well as Divine Beast Lion's hoarfrost stomp.

    • @guilhermebomfim567
      @guilhermebomfim567 6 дней назад +1

      ​@ooloh rellana twin moon works the same. There is a glitch that happens when she is next to the fog gate, that makes her moon spawn inside wall geometry. It makes the moon nuke immediately go off above your head, but you can still jump it

    • @ooloh
      @ooloh  5 дней назад +1

      @@guilhermebomfim567 Oh interesting, someone also suggested to me that the bosses may be coded this way to let you still jump the attacks in ways like this. Although I can't say I've ever seen Godfrey glitch up the side of his arena lol

    • @guilhermebomfim567
      @guilhermebomfim567 5 дней назад +1

      @ooloh yeah, Godfrey arena is pretty flat, so not going to happen. But I have played a bunch of randomizer, so it's easier to notice, like the time I got Godfrey in Fire Giant arena.
      I think the Godrick slamdown moves might also work like this and he arena is no flat, specially the stair part

  • @CodeineCoffee
    @CodeineCoffee 4 дня назад +1

    Seems over-engineered to me. I wonder why they didn't just make the hitboxes low to the ground?

  • @Scenery-1976
    @Scenery-1976 2 дня назад

    Quality Build video ❤️❤️❤️

  • @AnsonRhys
    @AnsonRhys 6 дней назад

    I can’t help but notice that the problems only seem to happen with the DLC stuff.

  • @gabebernhard4601
    @gabebernhard4601 4 дня назад

    Seems like a lot of the exceptions are from the DLC; could just be an oversight due to it being a much more independent project than previous DLCS

  • @nightscout9979
    @nightscout9979 5 дней назад

    I've noticed that Bayle's Placidusax-style explosion attack seems to work similarly, as it can be jumped despite visually looking like a spherical explosion. However, does Placidusax's lightning bolt explosion work the same way? If it does, do people who jump still ultimately take damage due to a lingering or subsequent hitbox?

    • @ooloh
      @ooloh  5 дней назад

      As far as I know Placidusax' lightning nuke isn't jumpable nor is it intended to be, so it just operates off a large sphere hitbox with no exception system

    • @nightscout9979
      @nightscout9979 5 дней назад

      @@ooloh I know from seeing Spirit Ashes get hit, as well as boss vs. boss videos, that Placidusax's explosion can actually hit twice, so perhaps there's more than one attack or hitbox going on there.

  • @X36Granitplate
    @X36Granitplate 6 дней назад

    Then there's prime radahn,s stomp attack, that doesn't check at all if the jump flag is on or not. You get hit regardless whether you are midair or not, which is actually really annoying not gonna lie.

  • @moneygrowslikegrass
    @moneygrowslikegrass 2 дня назад

    Fromsoft hates the Poleblade of the Bud

  • @angryskycraper
    @angryskycraper 6 дней назад

    Could this explain why some incantations/AOW feel very 'staggerable' by a lot of ennemies?

  • @Putrefrye
    @Putrefrye 6 дней назад

    This makes sense why he removed fall damage, eldenring is the next geshin impact

  • @aberfordwest4003
    @aberfordwest4003 6 дней назад

    That first one didn’t work because he did a roar as well as the aoe, the roar needs to be rolled through I’m pretty sure

  • @HeyTarnished
    @HeyTarnished 6 дней назад

    Ooooh having a Zullie The Witch ahh moment, you gotta love it! 😅

  • @Kcalb18
    @Kcalb18 5 дней назад

    Most of them, are AOW or encantations from dlc.

  • @Father_of_Kos
    @Father_of_Kos 5 дней назад

    My favorite attack in the game ❤

  • @HatTrickzTV
    @HatTrickzTV 3 дня назад

    Biggest flaw for me is his axe still doesn't have a S scaling in str

  • @regulareric8759
    @regulareric8759 3 дня назад

    and the fromsoft spaghetti code unveiled XD

  • @_iRBiS
    @_iRBiS 6 дней назад

    Thank you for this service which is very very good for those who really want a challenge haha ​​GG ooloh ♡

  • @giuseppedesantis4274
    @giuseppedesantis4274 6 дней назад

    I’m currently doing my first no damage against him and I was trying to use Dragon hunter’s katana’s AOW to dodge this hit. A couple of hours later here’s the explanation to my frustration 😂

  • @joebykaeby
    @joebykaeby 2 дня назад +1

    I cannot be the only one who felt like jumping as a combat action in ER feels like absolute trash to begin with

  • @Lumigle
    @Lumigle 6 дней назад

    Ooooh, I tried the My lady AOW and sometimes worked and sometimes no.
    I guess this is the answer, thanks!

  • @LordZeroTheNightmare
    @LordZeroTheNightmare 4 дня назад

    nooooo, not messmer's orb, my beloved!
    at least Crucible Wings works

  • @sqrt-ts2xj
    @sqrt-ts2xj 5 дней назад

    omg I had been rolling through them this whole time 😭

  • @sirith9157
    @sirith9157 6 дней назад +3

    The longer I'm watching and learning about these games, the more I start to hate them.
    I know game design isn't easy, but damn me if this game isn't made by interns or fundamentally broken. So many bosses and enemies have unnatural rhythm, hitboxes which are visibly hitting while they shouldn't or mechanics which are making them inseanly annoying. You need a PHD to have even the slightest chance at fighting them. This is not a difficulty. It's bs...

    • @uyeah1234
      @uyeah1234 6 дней назад

      Most 3d games works this way. It's been that way since demon souls. Hitboxes never align with the actual animation because that is impossible to do. The amount of hand crafted man power and calculations needed for every single attack animation is not worth it. What matter is that the attack feels right to dodge even if that hit boxses technically aren't accurate.
      The problem here is balancing and presentation. If these didnt one shot you or stagger out of counter attacking you wouldnt even notice. However since dark souls bros have this stupid since of pride and think all souls games are hardest things ever made, they push them to make every game harder and harder. So even little mistakes have the harshest of punishments. One miss flagged animation and you lose the fight and have to restart. The souls games have tons and tons of jank and lack of polish that people willfully ignore because fromsoft can never do anything wrong. Hit boxes have always been bad, their games have always been horribly balanced and people tend to remeber the good boss fights and forget that 80% of the bosses are forggetable slosh. Unironically demon souls ds 1 and ds 2 combined maybe have 6 total bosses that are good by todays standards.

  • @StarShade0
    @StarShade0 6 дней назад

    Weird, I have successfully jumped over a stomp attack after a side dash with the Wing Stance heavy, but as you show in the last seconds of the video, it didn’t work. Maybe some of those with the flag have really tight timings?

    • @versernal
      @versernal 6 дней назад +1

      yeah i've definitely leaped over some of messmer's attacks with wing stance, but that's because my character model physically goes over the hitbox unlike godfrey's whole arena hitbox

  • @Deadgye
    @Deadgye 5 дней назад

    This video should be emailed to from software with a "fix plz".

  • @noamias4897
    @noamias4897 6 дней назад

    Interesting and clear video and breakdown of gameplay mechanics. I’m curious about how long you think it’d take a developer to go through all of the relevant animations and add the flag, a day? A week? A month? I have no clue about game development btw lol

    • @sirith9157
      @sirith9157 6 дней назад

      Maybe three more games

  • @chemshanauli6100
    @chemshanauli6100 6 дней назад

    most of AoW affected are from dlc so theres lore reasoning💡, maybe Godfrey helped seal land of shadow therefore his attacks affect any battle arts learned in the shadowland

  • @Chrisbun1
    @Chrisbun1 6 дней назад

    I feel switching the hitbox to a square slightly above the ground could fix this, is there anything stoppinghitboxes from being a noncylinder shape?

  • @mt2r-music
    @mt2r-music 4 дня назад +4

    Its a shame developers these days just don’t care anymore. They couldve at least given us some microtransactions to buy more invincibility frames. On a serious note im kinda confused something big like this hasnt been patched out yet with how many bug fixes they were.

  • @KingOf_B
    @KingOf_B 4 дня назад

    Do the three moon spells work?

  • @someminorities
    @someminorities 6 дней назад

    what’s the bgm?

  • @abdalla8558
    @abdalla8558 6 дней назад +1

    Noo not Godfrey, he is my perfect boss 😭
    ( I actually thought it is problem with the ashes of war, so those will work on Bayle nuke attack?)

  • @karamuto1565
    @karamuto1565 4 дня назад

    Probably different person's working on the attacks and some of them didn't know about the "Godfrey" flag.

  • @diegofrancione5972
    @diegofrancione5972 День назад

    So does this mean that the Claw Talisman works with the animation flagged as jumps?

    • @ooloh
      @ooloh  12 часов назад

      No, claw talisman only works on attacks activated in mid air, excluding select incants like dragon breaths

    • @diegofrancione5972
      @diegofrancione5972 12 часов назад

      @ooloh ok thank you

  • @nitromonkeyz21
    @nitromonkeyz21 5 дней назад

    ok wow good to know

  • @saurabh4721
    @saurabh4721 5 дней назад

    also when you jump down from torrent into combat. that is also not flaaged as jumpijng.

  • @richardavelino7383
    @richardavelino7383 День назад

    Nice vid, Zullie

  • @1bucketcrusader834
    @1bucketcrusader834 4 дня назад

    YOU'RE MEANT TO JUMP?!