Jump to content

UnvalidUserName

Premium Member
  • Posts

    148
  • Joined

  • Last visited

Posts posted by UnvalidUserName

  1. If you want the opinion of some with a sewing machine for PC I can give you mine. The game doesn't stutter for me in any particular cell except for the hub section of the Mothership Zeta DLC. There, as the hub gets more and more cluttered with garbage the worse it runs for me. So, I would use it as an example of what NOT to do.

    Edit: I confused this with Fallout 3 forum

  2. Well if that didn't work you could use an Activate Entry Point on a hidden perk. That entry point is the one that cannibal perk uses but you can set it to run immediately instead of by a menu option. You will have to make sure that the conditions option react to all possible campfire-like crafting station. Then when the player interacts with them you apply the effect and open up the crafting menu through ShowRecipeMenu command.

    edit: Adding items and equipping them in the same frame causes crashes for me. I just use CastInmediatlyOnSelf instead. And it shouldn't cause save bloat unless the player somehow drops the item.

  3. The MenuMode function can detect the crafting menu if you use "MenuMode 1077".

    Use this in a MenuMode block, if it yeilds true you apply the effect otherwise you remove it if active. On a GameMode block you also check if the effect is active and remove it if necessary. And that's about it

  4. I think the GECK doesn't allow to creating new entries for Attack animations, that's why most mods either reuse them or replace them all together. You could probably get around it with JIP by using some of the skeleton functions but idk

  5. If you want to use OnDeath Block, it has to be attached to the actor whose death you want to script. When you use "OnDeath player" you are just making a block that reacts to the death of the character that the script is attached to when the player is the one killing it.
    OnDeath block fires when the actor finishes ragdolling so that's something that you want. However attaching a script to the player itself is a BIG hotspot for compatibility issues. The way I would go about it depends on one thing, whether or not you want NVSE as one of your requirements.

    If you don't mind NVSE being one of the requirements you can just use an OnDeath Event Handler that reacts to the player death.

    Otherwise you will have to keep a script running that detects the player death, so that would require to use GetDead every frame or every few seconds and play the video a few seconds after the character dies.

    The last way you could do it is by having an Effect Script that is applied to the player with an obsenelely long duration and an ScriptEffectFinish block. That way you are kind of sure that the only way the effect is ending is when the player dies. Then you have it start a dummy quest with a small countdown before playing the video.

  6. To the original question: NPC are affected by movement speed penalties of armor already. These penalties are controlled by some Game Settings. Movement speed for agility would require of you to change their speed modifiers as the get loaded when entering a new cell. While scary in the case of having to iterate to through too many of them, it is possible.
  7. So NVSE has a lot of functions that came from FOSE. A lot of these let you change weapons stats on the fly. However this leaves me with a lot of doubts.

     

    Do changes made with these functions persist through saves?

     

    If no, do they clear when game is loaded, or do they clear when the game is restarted?

×
×
  • Create New...