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
- [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)))
- [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)))
- [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)))
- [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)))
- [2020.04.15-22.05.19:122][ 0]ARK Version: 798.17
- [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)))
- [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
- ;Broken lines
- ;Mountain
- ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesMountain",NPCSpawnEntries=((AnEntryName="RockDrake",EntryWeight=0.05,NPCsToSpawnStrings=("RockDrake_Character_BP_C"))),NPCSpawnLimits=((NPCClassString=”RockDrake_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))
- ;WyvernTrench
- ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesWyvernTrench",NPCSpawnEntries=((AnEntryName="Crab",EntryWeight=0.05,NPCsToSpawnStrings=("Crab_Character_BP_C"))),NPCSpawnLimits=((NPCClassString=”Crab_Character_BP_C”,MaxPercantageOfDesiredNumToAllow=0.1)))
- ;Working Lines
- ;Snow Plains
- 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!