Wyvern spawn help on Valguero

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
  • Help needed with Spawn .ini code

    So we are running a server on Valguero and currently have the 4 main wyvern types spawning - Fire, Ice, Poison and Lightning. The problem was Lightning were spawning in the Ice Scar and would not lay eggs.

    I modified the code to send them into the fire scar but now they don't appear. Does my code look wrong, have I missed a comma or bracket somewhere?

    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Val_FireWyvernEntries_C",NPCSpawnEntries=((AnEntryName="PoisonWyvern",EntryWeight=0.5,NPCsToSpawnStrings=("Wyvern_Character_BP_Poison_C")),(AnEntryName="LightningWyvern",EntryWeight=0.5,NPCsToSpawnStrings=("Wyvern_Character_BP_Lightning_C”)),

    NPCSpawnLimits=((NPCClassString="Wyvern_Character_BP_Poison_C",MaxPercentageOfDesiredNumToAllow=0.5),(NPCClassString="Wyvern_Character_BP_Lightning_C",MaxPercentageOfDesiredNumToAllow=0.5)))

    Poison still spawn with this and lay but not seeing any Lightning unless I manually summon them.

  • Managed to fix it with another code - might be useful for others


    Code
    1. ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Val_FireWyvernEntries_C",NPCSpawnEntries=((AnEntryName="LigntningWyv",EntryWeight=0.33,NPCsToSpawnStrings=("Wyvern_Character_BP_Lightning_C")),(AnEntryName="PoisonWyv",EntryWeight=0.33,NPCsToSpawnStrings=("Wyvern_Character_BP_Poison_C")),(AnEntryName="AlphaWyvern",EntryWeight=0.33,NPCsToSpawnStrings=("MegaWyvern_Character_BP_Fire_C"))),NPCSpawnLimits=((NPCClassString="Wyvern_Character_BP_Lightning_C",MaxPercentageOfDesiredNumToAllow=0.33),(NPCClassString="Wyvern_Character_BP_Poison_C",MaxPercentageOfDesiredNumToAllow=0.33),(NPCClassString="MegaWyvern_Character_BP_Fire_C",MaxPercentageOfDesiredNumToAllow=0.02)))


    This also adds an Alpha wyvern (useful for milk)