Jump to content

viennacalling

Supporter
  • Posts

    325
  • Joined

  • Last visited

Everything posted by viennacalling

  1. Found it, it's https://mods.bethesda.net/#en/workshop/fallout4/mod-detail/752969
  2. I think there was a mod like that over on the Bethesda site.
  3. Close, it is an alias for a collection of in-game reference objects.
  4. Why are you using GetSafeLocation if the function name is GetSafePosition?
  5. Thoughts are the holotape has an OnHolotapePlay event that calls Reset followed by Activate on the cheat container. You can try that and see if it works.
  6. According to this screenshot the target must be a protectron, wearing power armor, be liberty prime, be mr. handy, be an eyebot, an assaultron, and also a sentry bot. That's a tall order for one target. Are you sure you didn't mean to use OR instead of AND on each condition?
  7. Why are you starting your variables with a number? That's been a known bad practice since Fallout 3.
  8. Why are you using Const? http://www.creationkit.com/fallout4/index.php?title=Differences_from_Skyrim_to_Fallout_4#Const_Auto_Properties Auto Properties By adding the word "Const" at the end of a property definition, you are telling the game that the value will not change once it has been set by the editor. The compiler will make sure you cannot change the property's value, and the game will ignore any value in the save game recorded for the property. This allows you to change the value of a property in the editor, and have the change be reflected in the game, even if you load a save game. Properties made via the editor will be const by default.
  9. OnItemAdded - ObjectReference http://www.creationkit.com/fallout4/index.php?title=OnItemAdded_-_ObjectReference AddInventoryEventFilter - ScriptObject http://www.creationkit.com/fallout4/index.php?title=AddInventoryEventFilter_-_ScriptObject
  10. Just add a line to the script that handles the battery insertion to clear the faction ownership.
  11. 1. Don't use Entry Point, that is for very specific actions. Look at the perk FerociousLoyalty, the quest FerociousLoyaltyQuest, and the script FerociousLoyaltyScript. That is an example of how you attach a script to a perk. 2. To modify a game setting using a script you will need the Fallout New Vegas Script Extender. Someone else will have to explain how to use it.
  12. According to the image you do not have a quest called AmmoActivateQuest. Create the quest first, then try saving the script.
  13. The rules at least for the Nexus are pretty clear: if you do not have clear permission to upload modified versions of other peoples' mods then don't, even if the authors are long gone.
  14. I am not a graphics expert, but I have seen ports from Fallout 3 to New Vegas where the world model did indeed have issues. I am probably describing it wrong, but the issue is that the collision for the world model needs to be modified to work in New Vegas. I believe it can be done in nifskope, but you would need a graphics person to tell you exactly what to modify though.
  15. I'm guessing it's this: It'll probably work if you use the Editor ID instead of the Form ID.
  16. The placed objects in green are dirty edits. At some point they should be cleaned up from your mod, but for now they shouldn't cause any problems.
  17. That is simply FNVEdit saying it does not know what the data in that field means. Based off the snippet you provided there is no clear indication of a problematic error. The snippet does not indicate any doors, so I am unable to help with that. If FNVEdit thinks that you have doors in your mod that you feel you have not modified, then perhaps they are dirty edits?
  18. What are you seeing in FNVEdit that makes you believe you have a conflict?
  19. You have him set to use weapons in weapon list NVFireGeckoWeapons. The only two weapons in there are ranged weapons, so that's what he's going to use. Reference: http://geck.bethsoft.com/index.php/Traits_Tab_-_Creatures That's because you have not added any script commands for him to go somewhere. Look at the vanilla followers quest VNPCFollowers and the result script blocks for topic FollowersFiredYes.
  20. Dr. Kemp's greeting responses all have choices associated with them, which is why your topic is not initally available.
  21. It's not that crazy when you consider that all the other games besides NV were made by Bethesda. Obsidian used Bethesda's Fallout 3 engine and assets but who knows what changes they made to it.
  22. The Ownership NPC setting in the Interior Data tab of the cell OrionMorenoHouse is what is controlling that. I do not know what the best course of action is, but you might try setting that to None and then setting Owner Faction to a faction Orion belong's to that will still penalize the player for taking Orion's things. I do not know why it functions that way, but if you put the item in a leveled item list and then add that to the container it will use the reduced health.
  23. I'm glad to hear your mod is working, however for future reference please do not start editor IDs with a number. Under certain circumstances the GECK/game engine will treat them as form IDs.
×
×
  • Create New...