NPC Replacements and ConfigOverrideItemMaxQuality

Dear forum members,
for some time now we have been creating and maintaining new ways to help game server admins with questions and problems as quickly as possible, e.g. our Guides section and the Nitrado Community Discord.

Therefore, we inform you that the Nitrado Forum will be closed on March 31, 2023. We are consolidating our community support to our Discord channel, which is faster and more efficient. We have also seen incredible growth in our community due to the hard work of our moderators and our bots. We are confident that this move will ensure that we provide the best support possible for our users.

Thank you to all members for your continued use of the forum!

Assistance with all questions concerning your Nitrado service can now be found in these spots:
Community Discord: https://discord.gg/nitrado
Guides section: https://server.nitrado.net/guides
Support Wizard: https://support.nitrado.net
  • 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