Shootergame.log errors - Custom Dino Spawn with ConfigAddNPCSpawnEntriesContainer

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
  • So I've been coding a server for the past few days and I've been checking the logs to make sure that no errors are coming through, and this error has been consistently popping up:

    Code
    1. [2020.04.15-22.05.19:025][ 0]Warning: Missing opening '"' in string property value: ”RockDrake_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))Unknown property in NPCSpawnLimit: MaxPercantageOfDesiredNumToAllow=0.1)))
    2. [2020.04.15-22.05.19:026][ 0]Warning: Missing opening '"' in string property value: ”Crab_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))Unknown property in NPCSpawnLimit: MaxPercantageOfDesiredNumToAllow=0.1)))
    3. [2020.04.15-22.05.19:032][ 0]Warning: Missing opening '"' in string property value: ”RockDrake_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))Unknown property in NPCSpawnLimit: MaxPercantageOfDesiredNumToAllow=0.1)))
    4. [2020.04.15-22.05.19:032][ 0]Warning: Missing opening '"' in string property value: ”Crab_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))Unknown property in NPCSpawnLimit: MaxPercantageOfDesiredNumToAllow=0.1)))
    5. [2020.04.15-22.05.19:122][ 0]ARK Version: 798.17
    6. [2020.04.15-22.05.33:579][ 0]Warning: Missing opening '"' in string property value: ”RockDrake_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))Unknown property in NPCSpawnLimit: MaxPercantageOfDesiredNumToAllow=0.1)))
    7. [2020.04.15-22.05.33:579][ 0]Warning: Missing opening '"' in string property value: ”Crab_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))Unknown property in NPCSpawnLimit: MaxPercantageOfDesiredNumToAllow=0.1)))

    I have tried rewriting the lines these are related to, and nothing seems to work. Here are the spawn entries I am trying to fix and below them are the lines I have already working in comparison:

    Code
    1. ;Broken lines
    2. ;Mountain
    3. ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesMountain",NPCSpawnEntries=((AnEntryName="RockDrake",EntryWeight=0.05,NPCsToSpawnStrings=("RockDrake_Character_BP_C"))),NPCSpawnLimits=((NPCClassString=”RockDrake_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))
    4. ;WyvernTrench
    5. ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesWyvernTrench",NPCSpawnEntries=((AnEntryName="Crab",EntryWeight=0.05,NPCsToSpawnStrings=("Crab_Character_BP_C"))),NPCSpawnLimits=((NPCClassString=”Crab_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))
    6. ;Working Lines
    7. ;Snow Plains
    8. ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_SnowPlains",NPCSpawnEntries=((AnEntryName="Owl",EntryWeight=0.01,NPCsToSpawnStrings=("Owl_Character_BP_C")),(AnEntryName="Managarmr",EntryWeight=0.01,NPCsToSpawnStrings=("IceJumper_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.04),(NPCClassString="IceJumper_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.04)))

    I don't know where I went wrong with the coding of the spawn entries. Any help is much appreciated! Thank you for your time!:)