Need help with ini files on ragnarok

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
  • Ok so I been working on trying to add non native dinos to ragnarok so me and my friends can play with all these unique dinos to tame, and last night i managed to surprise myself with the help i found on another thread and managed to get the very first ini string to work. HOWEVER, I tried to replicate the result another 2 times to no avail, and no matter how much i try to get it to work, the first code is the only one that works, no matter what i set the creature to, here's my code that i tried in these 2 different ways, each only had the top code work only, can someone tell me what im doing wrong?


    this was my latest attempt


    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="Basilisk",EntryWeight=0.5,NPCsToSpawnStrings=("basilisk_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="Shadowmane",EntryWeight=0.25,NPCsToSpawnStrings=("lionfishlion_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="lionfishlion_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.50)))ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesHighlands_C",NPCSpawnEntries=((AnEntryName="Magmasaur",EntryWeight=0.5,NPCsToSpawnStrings=("cherufe_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="cherufe_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))


    this was my first attempt


    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="Basilisk",EntryWeight=0.5,NPCsToSpawnStrings=("basilisk_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))

    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="Shadowmane",EntryWeight=0.25,NPCsToSpawnStrings=("lionfishlion_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="lionfishlion_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.50)))

    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesHighlands_C",NPCSpawnEntries=((AnEntryName="Magmasaur",EntryWeight=0.5,NPCsToSpawnStrings=("cherufe_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="cherufe_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))



    Once i do all of this, I save, Restart Server, destroy wild dinos, and only the first code works unfortunately...

    any help is GREATLY Appreciated because i'm not used to this stuff but would like to get the hang of it, I hardly ever go on forums for help but i'm desperate for help

  • I'm no pro but I believe the lines you have are not clustered correctly, you need all the dino spawns in a line and then the MaxPercentage...NumtoAllow... Try this and let me know.


    Yours


    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="Basilisk",EntryWeight=0.5,NPCsToSpawnStrings=("basilisk_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="Shadowmane",EntryWeight=0.25,NPCsToSpawnStrings=("lionfishlion_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="lionfishlion_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.50)))ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesHighlands_C",NPCSpawnEntries=((AnEntryName="Magmasaur",EntryWeight=0.5,NPCsToSpawnStrings=("cherufe_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="cherufe_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))


    Mine


    ConfigAddNPCSpawnEntriesContainer=

    (NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDunes_C", NPCSpawnEntries=((AnEntryName="Basilisk", EntryWeight=0.5, NPCsToSpawnStrings=("Basilisk_Character_BP_C"))(AnEntryName="Shadowmane",EntryWeight=0.25,NPCsToSpawnStrings=("lionfishlion_Character_BP_C"))

    (AnEntryName="Magmasaur",EntryWeight=0.5,NPCsToSpawnStrings=("Cherufe_Character_BP_C"))), NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.5)(NPCClassString="lionfishlion_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.50)(NPCClassString="cherufe_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))