0 of 0

File information

Last updated

Original upload

Created by

wankingSkeever

Uploaded by

wSkeever

Virus scan

Safe to use

Tags for this mod

80 comments

  1. GhostyGage
    GhostyGage
    • premium
    • 0 kudos
    Hello! :3 Would you consider making a patch for Stormcrown? And possibly adding the skeletons that have hoods on to the list of things it works on? Thank you for reading!
  2. AnduruHadawatha
    AnduruHadawatha
    • supporter
    • 1 kudos
    Between this and the JS's it is just pure aesthetic difference and nothing else. Both are great mods!!! Kudos ! I like this one, pure classic comical drop of the skeletons, it is kind of dark too. so yeah I love this one more.
  3. Mabra51
    Mabra51
    • member
    • 3 kudos
    Skyrim skeletons when a slight breeze hits them:
  4. hamletsdead
    hamletsdead
    • premium
    • 41 kudos
    Great mod, thanks! Almost deleted it by accident when reviewing my mod list and saw soskeleton.esp -- for a second I thought I'd made a dumb newbie error and accidentally added the skeleton from SOS. Kudos for the work!
    1. Hermaen2000
      Hermaen2000
      • premium
      • 33 kudos
      I'm convinced wSkeever names his mods like this on purpose.
  5. johnskyrim
    johnskyrim
    • premium
    • 7,508 kudos
    I'm all for the cleaner approach, I applaud you for that. I can even learn from it. However, you could have done without the scaremongering for the purpose of "selling", wSkeever.

    "JS's mod distributes a spell to all skeletons"
    Not all Skeletons, only 5 races. These are the only 5 races that are physically capable of collapsing into parts on death.

    "Many mods will also use cloak spells to distribute magic effects to NPCs"
    Including this one.

    "OnHit is called very often..."
    Irrelevant in this case. The skeletons die on the first hit via Unrelenting Force and within 10 hits of regular attacks.

    "There is no way to filter for specific OnHit events."
    "OnMagicHit" exists via Papyrus Extender. Though granted I only found it yesterday. No need for it now ;)

    "Having too many event scripts executing at once can lead to the game exceeding the papyrus thread limit, causing script executions to be canceled, leading to serious bugs."
    This is the kind of line that makes every new modder panic whenever they see the word "script". In relation to the mod, you would need a scenario where there are double to triple figure amounts of Skeletons on screen, all getting hit at exactly the same time. This doesn't occur in the vanilla game and unless a third party mod adds in literal armies of Skeletons, it's never going to be an issue.

    "It is probably fine performance-wise"
    There is no probably about it, unless of course you spawn in a crazy number of Skeletons and decide to kill them all in one go. You'll experience severe performance issues regardless due to the strain on Havok. This affects your implmentation too.

    Best of luck!
    1. wSkeever
      wSkeever
      • premium
      • 5,541 kudos
      Not all Skeletons, only 5 races. These are the only 5 races that are physically capable of collapsing into parts on death.
      Seems a bit pedantic
      "Many mods will also use cloak spells to distribute magic effects to NPCs"
      Including this one.
      wat
      Irrelevant in this case. The skeletons die on the first hit via Unrelenting Force and within 10 hits of regular attacks.
      I think you are confused here. All spells and attacks will cause onhit for skeletons, whether the skeleton dies or not.
      This is the kind of line that makes every new modder panic whenever they see the word "script". In relation to the mod, you would need a scenario where there are double to triple figure amounts of Skeletons on screen, all getting hit at exactly the same time. This doesn't occur in the vanilla game and unless a third party mod adds in literal armies of Skeletons, it's never going to be an issue.
      Mods using OnHit extensively are actually "script heavy" and should be avoided. This is why we have OnHitEx in po3 papyrus extender and mods that removes vanilla OnHit events such as vanilla script enhancements
      There is no probably about it, unless of course you spawn in a crazy number of Skeletons and decide to kill them all in one go. You'll experience severe performance issues regardless due to the strain on Havok. This affects your implmentation too.
      You don't have to kill the skeletons, all you need is a few mods using cloak spells to trigger OnHit for all skeletons in a cell. To Quote vanilla script enhancements: "Honestly, if your playing the vanilla game with a small amount of mods, you probably don't need this. If you use a lot of mods, particularly mods that have invisible cloak spells (Vokrii, Adamant, Footprints, etc.) you may notice that certain NPCs' presence (Saadia, Nirya, Alduin, etc.) gives you script lag."

      JS, there are best practices, and using OnHit for something that doesn't need scripts at all isn't one of them. You often criticize other modders when they make suboptimal meshes: heavy use of OnHit is suboptimal too.
    2. Dragens
      Dragens
      • premium
      • 111 kudos
      Don't get me wrong. Best practice is a good thing but why didn't you just dmed JS and told him that instead of creating your own mod with an original idea of someone else? Wouldn't that be much more productive?
    3. Fuzzlesz
      Fuzzlesz
      • premium
      • 451 kudos
      I'd say an open source, open perms, free mod with write-up, credit, and explanation is pretty 'productive'.
    4. ZephP
      ZephP
      • supporter
      • 12 kudos
      It's a battle of "why are you not following my standards of modding" group of modders. Just let them fight lol. These fights are always fun to watch. 
    5. bientje
      bientje
      • premium
      • 188 kudos
      The fact that JS's version has closed permissions (and doesn't even include the script source, come on...) and wSkeever's version has open permissions is in itself already a major plus, on top of this wskeever's implementation is cleaner. What's not to love here?
    6. johnskyrim
      johnskyrim
      • premium
      • 7,508 kudos
      Thanks for replying, wSkeever. I read everything you said and it feels counter-productive to refute some of the things you've said, so I'll just reply to the part that actually matters:

      "JS, there are best practices, and using OnHit for something that doesn't need scripts at all isn't one of them. You often criticize other modders when they make suboptimal meshes: heavy use of OnHit is suboptimal too."
      The original request on reddit wanted a mod that split apart Skeletons and pushed their bones away. With my limited amount of papyrus knowledge (as you know, my field is 3D) the only way to do that is by sending a havok impulse immediately after they die (which I'm assuming your mod doesn't do?). I can fully appreciate that your revision is a cleaner approach and I've definitely learned from it (If we're not constantly learning, what's the point right?) I cannot know something unless it is pointed out and while it would have been easier to inform me last week, I completely understand that under no circumstance are you obligated to reach out and assist me. At the end of the day, the entire purpose was to fill a simple request with a simple mod. Nothing more.

      I'll probably update my version with po3's hit events and leave it as is. Thanks again.
    7. Fuzzlesz
      Fuzzlesz
      • premium
      • 451 kudos
      I like the Havok impulse, and I look forward to your update!
    8. wSkeever
      wSkeever
      • premium
      • 5,541 kudos
      You can just add a pushing mgef to unrelenting force too. If you don't wanna edit vanilla spells, just use po3 extender to add the mgef to the spells
    9. johnskyrim
      johnskyrim
      • premium
      • 7,508 kudos
      Updated my version with OnHitEx btw.
    10. DarkDominion
      DarkDominion
      • premium
      • 511 kudos
      At the end of the day, the entire purpose was to fill a simple request with a simple mod. Nothing more
      If that's the case, why you're creating such a ruckus (again) on someone's mod page ?
      Leave it be man...
    11. johnskyrim
      johnskyrim
      • premium
      • 7,508 kudos
      @DarkDominion I learned something new from this, which to me is always a huge plus. Stop trying to stir an empty pot.
    12. Zoroastre
      Zoroastre
      • member
      • 5 kudos
      From their respective preview, and considering  it is a mod to complement unrelenting force, JS's version looks better thanks to the force added to the bones while this version makes the skeleton simply fall apart to the ground without force. I think the script is needed in this situation to add that havok reaction.
      If you want to fight hundreds of skeletons with multiple shouting follower, wS's version is probably slightly better.
      Someone with a powerful pc would have to compare, but I don't expect a difference in fps with JS's revised version.
      It will be an aesthetic choice in the end.
    13. Atroxion
      Atroxion
      • supporter
      • 13 kudos
      I'm not on anyone's side. I just wanted to chime in to say that I appreciate the civilised discussion between two of my favourite modders on Nexus.

      I think both mods have something to offer, and there's no one better than wSkeever to optimise the sh*t out of a mod idea. That being said, JS deserves massive props for thinking of it and implementing it in the first place. There's nothing wrong with a bit of competition so long as it remains healthy.

      Love both of your work, and I for one will be sure to endorse both mods! :)
    14. Exalderan
      Exalderan
      • premium
      • 865 kudos
      Good-Natured Rascal
      "Your reputation as a good-natured friend of the community manages to outshine your dark side."

      Please pardon the new vegas joke :p
    15. ElSopa
      ElSopa
      • premium
      • 5,818 kudos
      popcornbros...
    16. Punch3r
      Punch3r
      • premium
      • 11 kudos
      What is it with people enjoying "drama" of other people and even looking to create or promote it. Ugh, average humans with garbage self reflection are so appalling.
    17. nirnNPC
      nirnNPC
      • member
      • 0 kudos
      ** Casts Calm spell on both **
    18. trashedrice
      trashedrice
      • member
      • 9 kudos
      I think both of you are swell! Love your mods!
    19. MetallicHydrogen65
      MetallicHydrogen65
      • premium
      • 39 kudos
      ' He used OnHit for a mod that doesnt need scripts, and he gets to be a modder what a sick joke!' 
    20. hadrianus2020
      hadrianus2020
      • member
      • 24 kudos
      Sigh. Wish they'd hurry the f up with the New Vegas Fallout 4 mod.
    21. SpicyBoi27
      SpicyBoi27
      • supporter
      • 3 kudos
      I just want to applaud both of you (JS and Skeever) for having a proper, respectful and level headed discussion about different practices rather than just flaming each other like some other authors would, it makes me as the end user trust the quality of both your work more than I already did knowing it's being made by actual professional adults.
    22. daydreamer488
      daydreamer488
      • supporter
      • 4 kudos
      k s0 wat one do i use?
    23. HiImJustHereForSkyrim
      HiImJustHereForSkyrim
      • supporter
      • 8 kudos
      Never thought i'd see modder beef in the wild. 
    24. XliquidsquidX
      XliquidsquidX
      • supporter
      • 4 kudos
      A year late but yeah, it was fun, both are excellent modders, nobody loses and everyone wins, even us mere spectators.
    25. Trentckx
      Trentckx
      • member
      • 6 kudos
      @blackjack95 wheelofnames.com
  6. Glormac
    Glormac
    • supporter
    • 4 kudos
    I like it.
  7. Cavhesnir
    Cavhesnir
    • member
    • 7 kudos
    Oldrim (Skyrim LE)?
  8. LizardCor
    LizardCor
    • premium
    • 15 kudos
    Just out of curiosity... While creating this file... how many skeletons lost their lives?
  9. Cataclysimz
    Cataclysimz
    • premium
    • 62 kudos
    Is this compatible with The Elder Scrolls 5? 
    1. deleted81945088
      deleted81945088
      • account closed
      • 0 kudos
      Nope. Only Skyrim 2: The Rise of Nazeem.
    2. CluelessCourier
      CluelessCourier
      • member
      • 13 kudos
      I thought this was the The Special Skyrim: Scrolls Edition nexus?
    3. kennyrogers999
      kennyrogers999
      • premium
      • 2 kudos
      Not sure if that question should be funny or sad ??
    4. DarkDominion
      DarkDominion
      • premium
      • 511 kudos
    5. Badee
      Badee
      • member
      • 55 kudos
      You guys obviously mean Oblivion 2
    6. deleted53104696
      deleted53104696
      • account closed
      • 2 kudos
      Is The Elder Scrolls 5 compatible with The Elder Scrolls 5?
  10. tunax09
    tunax09
    • member
    • 2 kudos
    This only works on the level 1 naked skeletons right? I mean not the ones that wear a hood and stuff