Jump to content

Ashnal

Premium Member
  • Posts

    23
  • Joined

  • Last visited

Nexus Mods Profile

About Ashnal

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Ashnal's Achievements

Apprentice

Apprentice (3/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. I'm pretty miffed about this. While my mod hasn't seen much wild popularity due to my crap marketing skills, I've gotten almost unanimous enjoyment from it. The fact that a mod that changes the laser sound effects wins over one that provides a whole new way to play the game in the gameplay category is what infuriates me.
  2. I think there's a keyword for this. They adding "UnscrappableObject" the keyword to the object you want the player to be unable to scrap.
  3. That's just a symptom of how spell effect conditions work. It checks for iron sights every second. If the player leaves iron sights just after the check returns true .... they will get speed until the next check a second later.. There is a more responsive way to do this with Papyrus. Check out AliasTargettingScopeScript.psc for an example.
  4. There are movement types for the Player and NPCs in the character section of the creation kit. You can google console commands that increase run speed, use scripts or a game setting record to set the run speed or look at how the sprinter's legendary effect modifies run speed. You can look at how Arbitration modified walking speed. You can look at how the nimble legendary effect modifies ADS speed. There are mods that modify sneaking speed. I don't know much about sprinting speed, but if you increase run speed when sprint is activated, that might increase sprinting speed. Looked into those. I found some of the base stat values in the Character player movement entries, but nothing for ADS speed. As for the effects, they where being modified via a percentage multiplier, which is not what i wanted. I want to be able to set the actual values for all the speeds. Am i missing something? ADS speed is implemented as a legendary effect. It's basically a movespeed buff that affects all movement .... but it has a condition to be active only while aiming, effectively limiting it to ADS.
  5. So .... I actually found these after a few hours of tinkering in Nifskope. For future reference .... I'll list my findings here. They're all specifically for particle emitters attached to effect shaders, such as DetectLifeFX. First, particle spawn rate: Starting at the NiParticleSystem Node, there are child nodes of NiPSysActiveCtlr. For all the particles I looked at, there are 3 of those, one for each of the X Y and X axes. Under that is NiPSysEmitterCtlr, and under that is NiPSysUpdateCtlr. Underneath NiPSysUpdateCtlr there is a child node NiFloatInterpolator, this is what we are interested in. The value contained here controls how fast particles are spawn, with the higher, the faster particles spawn. Second, particle size: Find the child node of NiParticleSystem, NiPSysMeshEmitter. Within NiPSysMeshEmitter "Initial Radius" will control the initial size particles spawn at. This can be further modified by the "Radius Variation" field. It can be scaled for the duration of the particle's lifetime by another child node of NiParticleSystem, NiPSysScaleModifier. The array of floats in NiPSysScaleModifier represent a timeline of scale changes over the particle's lifetime. Third, alpha and color: Alpha, as well as color, at least for the particles I was working with, was set in another chld node of NiParticleSystem, BSEffectShaderProperty. Within there is a value called "Emmisive Color" which controls the color of the particle and alpha. The particular nifs I was working with were already set to use a greyscale texture that would be recolored to the color specified here, and I didn't really look at any other circumstances.
  6. So I've got no idea when it comes to Nifs, but recently I've been wanting to change some particle effects. The DetectLifeFX. I've been looking through the attached Nif file at the particles, and I'm wondering where the overall alpha of the particles are set, the size of the particles, and their spawn rate. I would have thought these things would be obvious .... but I can't find them. Using the latest Nifskope for FO4.
  7. How would you normally get the fragment to target the activated object? If the fragment has a reference to the object, you can simply pass it to the quest script via a function parameter. I looked itup on the CK wiki Scriptname ActivationQuest extends Quest function PerformAction(ObectReference akTarget) GotoState("Busy") ;Stuff you want to do goes here ;akTarget shouldbe the reference to the activated object GotoState("") EndFunction State Busy function PerformAction() ;Do nothing EndFunction EndState that's the script attached to the quest then you have as the perk fragment: ActivationQuest.PerformAction(akTarget) BUT you have to link the property. To do that hit "Properties" underneath the fragment window. Then at the bottom of that window, "Add Property." Type in the type as "Quest" and name it "ActivationQuest." Then once the property is created, select it in the property list and click "Edit Value." For the "Pick Object" dropdown, find and select "ActivationQuest." Note that you have to have created the quest and named it ActivationQuest before doing the perk fragment. I referenced these two articles just now to come up with this :) http://www.creationkit.com/fallout4/index.php?title=States_(Papyrus) http://www.creationkit.com/fallout4/index.php?title=Perk_Fragments
  8. Perhaps you misunderstood. For a Magic Effect in the CK, theres a tick box with "Dispel effects with these keywords." This is how chem effects are implemented in the base game. You have the magic effect you want, with a unique keyword on it, and that box ticked. Now whenever the effect is applied, it will dispel its already existing instance and apply a new instance with full duration. Kind of like how if you eat some mentats, then wait a minute, then eat another how you'll still only have one instance of the effect, just with refreshed duration.
  9. Check out the Loads of Ammo mod. In addition to switchable ammo types, it also adds switchable scopes ... variable zoom basically.
  10. Why not just replace the effect? Check the CK ... not FO4Edit.
  11. well ... first, your assault rifle would be actually doing close to 35 damage due to armor. That being said, those limbs should only have 1.5 HP lol. It should be working. So dig a little deeper then, check all the links. Maybe there's a limit. Try say 5% health percent. The test target you're firing at IS using your modified BodyPartData right? You did save your plugin after editing? You activated the plugin in your load order? Your plugin is the last in your load order?
  12. So I guess I'm wondering, how is MySpeed set up? You can't just create a MySpeed ActorValue and expect it to be updated by the game automatically. You'd have to update it via script.
  13. Are you hitting the actual limb when testing? You can't just hit their torso and expect their leg to get crippled ... unless your gun has the kneecapper effect. DOuble check all the values. HP of the target, health percent of the body part, damage of the weapon you're using, any armor the target is wearing. Your target isn't wearing Power Armor right? That works a bit different.
  14. Does your Actor actually have those ActorValues in the CK? Did you link them to the properties in the CK?
  15. You can do what I do. I have Fallout installed on my SSD. In NMM there's a setting for NMM mods folder, where NMM keeps mod installation files. Set that to your larger drive. When NMM installs mods it can get them from that folder and extract them to your SSD Fallout directory. This should cut the space needed for mods on your SSD by almost half, since you're not storing mod installation files on it.
×
×
  • Create New...