Jump to content
ℹ️ Intermittent Download History issues ×

Kalamir352

Supporter
  • Posts

    10
  • Joined

  • Last visited

Posts posted by Kalamir352

  1. What is the best way to modify a game setting (GMST) when a player obtains a specific perk?

     

    The locksmith series of perks seem somewhat bland so I wanted to add a little extra flavor to them.

     

    My goal is to increase the sweet spot of novice locks when you obtain the ability to access advanced locks.

     

    Game settings include fSweetSpot (Easy, Average, Hard, and VeryHard) which I have tested and the game uses these floats.

     

    My current skill level in modding is to find an example and then emulate and alter. There are no references on game settings so I'm having a hard time.

     

    When adding an effect to a perk there are three options (Quest, Ability, and Entry Point) but I cannot find an example of these editting game settings.

     

    There is an entry point for sweet spots (Locksmith Bobblehead uses it) but this would apply across all lock difficulties.

     

     

  2. I would take a look at this mod called LevelUpMenuEx

     

    https://www.nexusmods.com/fallout4/mods/28822

     

    You can poke around in there and it will probably answer some of your questions.

     

    Typically editted the User Interface requires extracting the Fallout 4 - Interface BA2 file with Bethesda Archive Extractor (BAE)

     

    https://www.nexusmods.com/fallout4/mods/78/

     

    and then making changes with any SWF editting program, there are many options but I have used JPEXS with some success

     

    https://github.com/jindrapetrik/jpexs-decompiler

  3. *Build recipes have the CMPO under components so that any MISC that has those under the components section of the record can be used for crafting it.

     

    Just tested this by switching a recipe from CMPO to MISC and it no longer automatically scraps items to create it. Thats actually pretty cool as it answers a question I had in another thread.

     

     

     

     

    If it is a MISC record (Miscellaneous item) with something in the CVPA - Components subrecord, it gets sorted under junk.

     

    That explains why MISC items like Bobby Pins and Subway Tokens without CVPA get pushed to the MISC tab of the Pipboy inventory and not the JUNK tab.

     

    Where is the code located for defining what items go where? I cannot seem to find it.

     

    Thanks for your reply it was incredibly helpful!

  4. I'm attempting to shift components to their own section of the pipboy ideally between Junk and Mods.

     

    I found in Pipboy_InvPage.swf where I can alter the header labels and even create new ones but they are not tied to the actual contents.

     

    Where should I be looking to alter what is displayed in each tab of the pipboy inventory?

     

    For example, how does the game know to place Bobby Pins under "MISC" in the pipboy?

  5. Hey Everyone,

     

    I'm attempting to remove shipments of items from the game as a learning exercise. I went through and editted all the LL_Vendor_Component files and removed all the shipments and that seemed to work. However ...

     

    The quest [0024A06A] Patch_WorkshopShipments adds the following to the leveled list [00070513] LLI_Misc_AllComponents

     

    pLLI_Misc_AllComponents.AddForm(pShipment_Ceramic_large, 1, 1)
    pLLI_Misc_AllComponents.AddForm(pShipment_Copper_large, 1, 1)
    pLLI_Misc_AllComponents.AddForm(pShipment_Rubber_large, 1, 1)
    pLLI_Misc_AllComponents.AddForm(pShipment_Steel_250, 1, 1)
    pLLI_Misc_AllComponents.AddForm(pShipment_Wood_250, 1, 1)

     

    The quest [02000822] DLC02WorkshopAttackStarter adds the following to the leveled list [00070513] LLI_Misc_AllComponents

     

    pLLI_Misc_AllComponents.AddForm(pDLC02shipment_Concrete_100, 1, 1)
    pLLI_Misc_AllComponents.AddForm(pDLC02shipment_Concrete_200, 1, 1)

     

    I attempted to edit these quests and remove the associated properties from the quest. However when I load up the game the shipments are still on the vendors. I'm guessing this is because the quest has already executed to completion and the shipments have been added to LLI_Misc_AllComponents which the vendors are pulling from. Attempting to reset the quest and execute it again without the shipment properties has had no effect. My next idea is to create a quest of my own and have it remove the forms from LLI_Misc_AllComponents via RemoveAddedForm but my knowledge of papyrus is limited and it doesn't seem to be working either. Any help, guidance, or ideas would be greatly appreciated. Am I even attacking this from the correct angle? What is the best way to remove items from a vendor list?

×
×
  • Create New...