Jump to content

MisterRADical

Premium Member
  • Posts

    50
  • Joined

  • Last visited

Everything posted by MisterRADical

  1. I could of sworn I was in the Fallout 4 one.. oops. Well, it applies to the other games too I believe, at least for some of the stuff (or at least for Fallout 3, I'd think). I've posted before in the past, but it has been a while.
  2. Hi all, I am currently working on a new weapon for my mod and have some questions about Projectiles and Explosions. It currently shoots a few projectiles that travel and Alt. Trigger after 0.8 seconds into an explosion that spawns a few more projectiles with Spawn < Projectile that then travel until they explode on contact. Firstly, when the weapon is shot "up close" (depends) the projectiles fly out, hit the ground, and some explode there on contact and some for some reason spawn on the player at their feet (???) and sometimes randomly ahead of the player a little in-between both the player and where the projectiles landed. This has to do with the projectiles splitting into more projectiles, so is there anyway to fix it or is this just how Spawn Projectile always works? Also, when I shoot the weapon at enemies the first projectiles fly through the enemies instead of hitting and splitting into the other projectiles. I understand this has to do with the Alt. Trigger. Is there a way to have Alt. Trigger but also have them explode on contact with an Actor? Then a few side questions, in Projectile, what does Impact Force, Fade Duration, Relaunch Interval (tested and noticed no difference), Collision Layer, Penetrate Geometry, and Continuous Update do? And also for Explosions, what does Vertical Offset Mult (tested and noticed no difference), Placed Object AutoFade Delay (how long a placed object lasts?), Push Exposion Source Ref Only, and Skip Underwater Test do? If anybody is able to answer any of these questions then thank you!!!!! This projectiles spawning at the players feet and passing through enemies is driving me mad!
  3. Hi, is there something I'm missing? I have an enemy with a cloak that applies a perk to certain enemies to do a few different things. I always test these things by giving them high damage (10x+ Multiply) and/or 0% Incoming Weapon, Bash, Explosive, Spell, Stagger, and/or Limb damage. The damage and incoming damage were working so I know the perk is applying from the cloak, until I critically hit the enemy which then damages them somehow. I have looked through the Entry Point's and I see nothing for "Incoming Critical Damage" and always thought it worked with Mod Weapon Damage and the like. Is it under some weird name, or is there an alternative way to reduce it? I obviously don't want it to be 0% that was just for testing, but the critical damage should be less by whatever % I make it, which I was thinking like 5% or so. I have done this a lot with my mod, lowering or increasing damage with things like Mod Weapon Damage, so I know wonder if they all don't work with criticals.. greaaat.
  4. Hi, I have a vault built and I have a big room with bright lights, one that is blue. They go through the walls into other rooms, so I was wondering if there is a way to block the light? Also, I have an interior cell which has worm enemies like idk ~15-30ft below some floors and if you use an explosive weapon it causes them to burrow above to you. Is there a way to fix that? Thanks in advance if anybody has any ideas!
  5. Thank you! It was spacebar, that was more simple than I thought oops lol but with all the keybinds in CK I didn't want to start hitting random keys and then have another problem because I didn't know what key I hit.
  6. Hi, I must have hit a key or something because when I view an object, like lets say a weapon, I can't rotate them! This has never happened before and I don't know what's causing it. Right now I am trying to rotate objects in the Static section but they don't move so I can't see what they look like fully until they are placed and it's very frustrating.
  7. That's the whole page copied when trying to load into the creationkit.com site. What is causing this, do you know?
  8. I've managed to create a quest that on game start adds a perk to each companion and they all work. I then tried adding a Race property, let's say Race Property raceAlien Const Auto Then I have: The script fails to compile saying "AddPerk is not a function or does not exist"Trying to add a spell says the same thing just AddSpell is not blah blah. How do I go about adding perks to the races? Any help would be greatly appreciated!
  9. I want to add a perk to all races except for the player. I know you can make a quest for the player but how do I go about it when I want to do it for an entire race? Just saying my scripting knowledge is also pretty basic. If you're wanting to know what I'm doing, I want to increase everyone's damage once the player has reached certain levels.
  10. In my mod I have a Javelin and I was wondering if there is anyway to make the lock-on range of the weapon longer? Messing with the weapons max range does nothing so I'm at a loss. There's fMissileSeekStrength which I'm not sure if it affects it or not. I can test it but first would rather ask because I would prefer an alternate solution rather than changing a Gameplay effect anyways for compatibility reasons. If anyone has ideas, thanks!
  11. Is there a way to make a perk or something that increases the players attack speed with melee weapons? I know Skyrim did it with that one shout so I would think it would be possible in Fallout 4 as well.
  12. Just wanting to know how to make a weapon inflict like 50 physical damage to melee and unarmed attackers? I thought Apply Weapon Swing Spell was supposed to do it but it doesn't seem to work. Also, how can it make the attacker have a chance to stagger as well?
  13. Thanks SKK50! You're always so good with scripts. I'm still learning so this helps and will help with future scripts.
  14. I can't seem to get this to work, here's what I got: Scriptname placeholder extends ObjectReference Actor Property Actor1 Auto Auto State DoOnceState Event OnActivate(ObjectReference akActionRef) if (akActionRef == Game.GetPlayer()) if Game.GetPlayer().GetLevel() >= 30 Int Num = Utility.RandomInt(0, 1) If Num == 1 GoToState ("DoNothingState") Int Num2 = Utility.RandomInt(0, 1) If Num2 == 1 Game.GetPlayer().PlaceAtMe(Actor1) GoToState ("DoNothingState") endIf endIf endIf endIf endEvent EndState State DoNothingState EndState
  15. Are you talking about an FX? Smoke is animated so you would have to animate it to curve, or it may be possible to do it in the nif file. I am not sure, or maybe use some of the ones in game and place them at an angle going up the wall?
  16. The scripts don't depend on anything I believe. I just installed the other mod and they're still working so it's just the one mod. I don't understand.. I created a new script with a different file path to a different file completely (talking about the MyMod01 location) and it still doesn't work. Is the plugin trying to use a certain file path that is not working now for some reason? Here's the file if anyone wants to see what's wrong. The mod is not even half way done so don't mind any other problems with it it's still a WIP. Oh also sorry for replying so late, was at my dads for a week so I couldn't even be on my computer.
  17. I already have both of those in the Fallout4Custom.ini..
  18. Second post on this because I took a break and played Minecraft. I originally had a working script in a mod I was working on, then backed it up and deleted the mod to install a bigger mod I was working on to show my friend what I had done so far. I installed the other mod back and removed the bigger mod and made another script for something else. I went to test it in game and it wasn't working and tried somethings and still wasn't. I then tested the working script and it no longer works! I tried making brand new scripts on armor to test and they also didn't work. Why aren't my custom scripts working? I've tried uninstalling Creation Kit, Fallout 4, Fallout 4 ini's, Scripts, yet they still won't work.. So am I forgetting something? Why aren't any custom scripts working?? Please help it's very un-motivating and a big waste of time, and thanks in advance!
  19. It's funny, when I was working with my mod and set fAVDCarryWeightBase to what I wanted it also wasn't changing the base in-game. Sorry I do not have an answer to that, I don't remember what I did to get it working. Been a while since I did it so it's all a little muddy lol it is possible though as I got it working, somehow. As for Strength, try messing around more with the CarryWeightMult as I would think that is what changes it. Maybe set it to a low value and see if it works to your liking. That Power Armor glitch doesn't surprise me at all btw. When messing with armors that added SPECIAL points I ran into that same problem; it isn't just a Power Armor thing. It is a glitch with adding SPECIAL points, which is why I no longer do anything with those and instead just increase whatever values the SPECIAL would. For example, if I wanted to add +2 Agility then instead I would add it's bonuses as flat modifiers like, in this case, +20 AP and +2% Pickpocket Chance. It is a glitch which I tried discussing once before I believe and nobody knew a fix to it, it's quite bizarre. So I recommend never messing with those for it will most likely lead to a buggy frustrating mess.
  20. I had made a script which was working and now it is not..? I saved the mod and removed it and installed a bigger mod I was working on to show my friend then reinstalled the other mod. Now the script no longer works and I made a new script for something else and that isn't working as well.. what did I screw up? It's really frustrating so if someone has an answer please help as I can not figure it out and I don't want to reinstall things because I don't want to screw anything else up lol unless it is absolutely necessary, i.e. reinstall Creation Kit. I don't know if I messed a setting up somehow with the Creation Kit or if I need to reinstall the Scripts entirely (unpack again) or what.
  21. To start off with, I have made a carry weight mod and I can tell you messing with carry weight in an "overhaul" sense is incredibly annoying. A lot of things affect carry weight, making it hard to get what you are looking for. I am not sure what you are doing exactly in your mod, but what I did modifier-wise was in Gameplay filter CarryWeight and I set fAVDCarryWeightMult = 0 and fAVDCarryWeightBase = 14 (your base amount you want). I'm thinking CarryWeightMult may be multiplying the weight in a weird way making it negative? I am not entirely sure though and if need be I can test things tomorrow, unless someone else has an answer soon. You also have to remember Survival may impact your weight changes as well, like the spell HC_ReduceCarryWeightAbility among other things. Strength, Lone Wanderer, Strong Back, Food, "Armor" really Enchantments and Spells, and Object Mods will affect weights as well. Companions also have their own set weights in case you want to change that too. Many factors play into it. Another thing that may help would be setting fweight = 0 in all Power Armor Object Mods and even all the armors if you want, as that may possibly be causing problems, maybe. You can use FO4Edit to do that faster fyi instead of Creation Kit, I did the majority of edits in that. Easier that way for a mod like that.
  22. Now, when you did the armor, did you also COPY AS OVERRIDE into your new ESP that you made when you COPIED AS OVERRIDE the Weapon section for Fallout4.esm to? For armor it needs to be "DATA - DATA\Weight" Ok I got it working. Thank you once again HadToRegister. Didn't even know you could do this; it may help in future mods too.
  23. Oh well I tried to do it with armors also and I get an error box every time which says "is not editable" when clicking OK to replace the weights. In Messages it says: QuickChange v2.5: For fast element modification.----------------------------------------------------------Created lists. Applying functions... Procesing record: Armor_Power_X01_Torso_Danse[00:12] Exception in unit mteFunctions line 544: is not editable.[00:12] Error during Applying script "AT - QuickChange v2.5": is not editable.
  24. It seems to have worked! Thank you! The path was DNAM - DATA\Weight, I wasn't putting the DNAM - in. Thank you though HadToRegister!
  25. Copy what as override into my esp? Okay I've never heard of AUtomation Tools so I have been messing around with it. Firstly, it says couldn't find the path DATA\Weight. What is this path for? I am very confused for this part. Secondly, how do I get all the weapons into my mod? I can add the script to the ones in Fallout4.esm but how do I get all the weapons into my mod so I can save it to my esp without going through each one and getting the * on each one? I'm sure you know a fast way to do that. I've never done something like this so I am a little lost right now sorry. I've barely used Xedit, just a little bit in the past so I am still learning as I go.
×
×
  • Create New...