Does anyone have an all dino spawn ini for 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
  • Only managed to find 2 dinos:


    Code
    1. ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Valguero_SnowForest_C",NPCSpawnEntries=((AnEntryName="snowSpawner", EntryWeight=0.10, NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.01)))ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesTundra_C",NPCSpawnEntries=((AnEntryName="GriffSpawner", EntryWeight=0.10, NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.01)))

    I remember on ragnarok I had a huge ini that allowed extinction and aberation dino's to spawn (with a slight bug on one island that had a tad too many crabs lol) but cant seem to find one for the new map

  • look through the forums posts they're everywhere under ark. You should be able to find them pretty quickly. Also I would suggest always keeping a backup of your ini file in notepad

    I did lookon the forum but "valgeuro" only shows 6 results so I assumed no one had asked the question before. Configuring this on a tablet at work at mo so I have about 12 tabs open (and dealing with a wierd game.ini issue where I see some variables with out definitions at the end of the file O.o but will look through the forum page by page later.

  • So far I have this info:


    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SPAWNENTRY",NPCSpawnEntries=((AnEntryName="ENTRYNAME",EntryWeight=1.0,NPCsToSpawnStrings=("ENTITYID")),NPCSpawnLimits=((NPCClassString="ENTITYID",MaxPercentageOfDesiredNumToAllow=1.0)))

    SPAWNENTRY is the name of the spawn node you want to edit. They can be found here: https://ark.gamepedia.com/spawn_entries

    ENTRYNAME is just an identifier for server admins to distinguish between multiple spawn configs. It can be anything you like.

    ENTITYID is the identification code to define which creature you want to add. Those can be found on this page: https://ark.gamepedia.com/creature_ids

    The EntryWeight field is how likely the creature is to be picked to spawn, versus all the other creatures which can spawn in an area. By default all weights are 1.0, but increasing it to 2.0 would make that creature twice as likely to be picked over other creatures. While reducing it to 0.5 would make that creature half as likely to be picked, meaning they will be more rare.

    And finally the MaxPercentage line is a limit on how many of that dino can spawn in an area, compared to the maximum number of creatures in the area. It is used to prevent overspawning, where one creature with a high spawn weight is picked over and over again and squeezes all other creatures out. 1.0 is 100%, effectivley no limit. 0.5 is 50%, which means the game will pick any creature to spawn in the area until the number of that creature equals 50% of the maximum number of creatures which can spawn. At that point it will stop spawning that creature and fill up the remaining slots with other creatures on it's spawn list instead.

    The SPAWNENTRY and ENTITYID fields need you to add an _C to the end of them, in order for the game to read them properly. So for example, the SPAWNENTRY 'DinoSpawnEntriesBeach' needs to be input as 'DinoSpawnEntriesBeach_C'.

    As an overall example, here's a code which adds Aberration Ravagers to the canyon area in Ragnarok, as quite a rare spawn:

    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_Center_C",NPCSpawnEntries=((AnEntryName="Ravager",EntryWeight=0.02,NPCsToSpawnStrings=("CaveWolf_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="CaveWolf_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))

    When adding multiple creatures to the same spawn point, it's important to remember that you can only have one config for each SPAWNENTRY in your file. It you have multiple, the game will operate the first one and ignore the rest. So you have to add multiple creatures into the same config to make it recognise them all.

    This is done in this way:

    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SPAWNENTRY",NPCSpawnEntries=((AnEntryName="ENTRYNAME1",EntryWeight=1.0,NPCsToSpawnStrings=("ENTITYID1")),(AnEntryName="ENTRYNAME2",EntryWeight=1.0,NPCsToSpawnStrings=("ENTITYID2")),NPCSpawnLimits=((NPCClassString="ENTITYID1",MaxPercentageOfDesiredNumToAllow=1.0),(NPCClassString="ENTITYID2",MaxPercentageOfDesiredNumToAllow=1.0)))

    So for example, to add the creatures you mentioned above to the beach spawn node:

    ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesBeach_C",NPCSpawnEntries=((AnEntryName="BulbdogBeach",EntryWeight=1.0,NPCsToSpawnStrings=("LanternPug_Character_BP_C")),(AnEntryName="ShinehornBeach",EntryWeight=1.0,NPCsToSpawnStrings=("LanternGoat_Character_BP_C")),(AnEntryName="JerboaBeach",EntryWeight=1.0,NPCsToSpawnStrings=("Jerboa_Character_BP_C")),(AnEntryName="MorellaBeach",EntryWeight=1.0,NPCsToSpawnStrings=("camelsaurus_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=1.0),(NPCClassString="LanternGoat_Character_BP_C",MaxPercentageOfDesiredNumToAllow=1.0),(NPCClassString="Jerboa_Character_BP_C",MaxPercentageOfDesiredNumToAllow=1.0),(NPCClassString="camelsaurus_Character_BP_C",MaxPercentageOfDesiredNumToAllow=1.0)))

    Cant believe no one has already one an ini file for this lol.
    Just waiting for work to finishso I can actually create the code (tried a few times but with this tablets annoying habit of missing spaces and low ram it was too much lol )

  • So far this is my code*, not tested fully and more needs to be added. Its a really long and slow process.

    Best advice to anyone that wants to edit (or even better help) use notepad++ to edit your game.ini, and set the language to json, the syntax highlighting makes it easier to read and if you add an incorrect ) it will add a + as it thinks its a new section ...that is not a guarantee but better than nought.

    My current ini is attached, word of warning, My config may not be to your tastes lol but should allow anyone who wants to get a headstart and not have to re-invent the wheel...that said, feel free to use it, share it what ever. Never understood why some server admins choose not to share stuff that would save others hours ¯\_(ツ)_/¯.

    *some of it is from another server admin.

  • This may helped you a wee bit faster...

    Most use ASM (Ark Server Manager), then export the code. And yes, you can use ASM on a PC. They copy that code to the console ini.

    NOTE: On consoles they have a limit on how many lines they may add. What that limit is, I do not know.

    Used that before on pc, it kept resetting values.....but that was a long time ago. looks like its been upgraded since. Should make creating the spawn list easier :).
    Thank you