NPC Replacements and ConfigOverrideItemMaxQuality

Nitrado now has an official Discord server to bring communities, friends and other gamers together!
Join the Nitrado Community Discord now and share your experiences and knowledge with others!

Click here to go to the Discord Server!
  • Morning, Really having some trouble getting these two arguments working, and scratching my head as to why. I've checked out other forum posts, reddit etc, but can't seem to figure these two out.

    Firstly, I'm using this code to remove Ichthyornis, but it doesn't seem to work.

    Code
    1. NPCReplacements=(FromClassName="Ichthyornis_Character_BP_C",ToClassName="")


    Secondly, there are a few items I'm wanting to increase the stack size of. I'm using the below code, but again it doesn't seem to work.

    Code
    1. ConfigOverrideItemMaxQuantity=(ItemClassString="PrimalItemConsumable_RawPrimeMeat_C",Quantity=(MaxItemQuantity=100))


    I've tried alternating the code, adding "bIgnoreMultiplier=true" (see below for alternate codes), but still no luck.

    Code
    1. ConfigOverrideItemMaxQuantity=(ItemClassString="PrimalItemConsumable_RawPrimeMeat_C",Quantity=(MaxItemQuantity=100, bIgnoreMultiplier=true))
    2. ConfigOverrideItemMaxQuantity=(ItemClassString="PrimalItemConsumable_RawPrimeMeat_C",Quantity=(MaxItemQuantity=100,bIgnoreMultiplier=true))
    3. ConfigOverrideItemMaxQuantity=(ItemClassString="PrimalItemConsumable_RawPrimeMeat_C",Quantity=(MaxItemQuantity=100, ?IgnoreMultiplier=true))
    4. ConfigOverrideItemMaxQuantity=(ItemClassString="PrimalItemConsumable_RawPrimeMeat_C",Quantity=(MaxItemQuantity=100,?IgnoreMultiplier=true))


    Any help would be greatly appreciated!

    Thanks,
    B00M