Thanks for visiting our wiki! Click here to order your own game server at SurvivalServers.com

Difference between revisions of "ARK Dino Spawn Configurations"

From Survival Servers
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
To do this, you will need to copy the code listed below and paste it in the bottom of your '''Game.ini''' file. If you are using a PC server, you will need [[FTP_Access|FTP Access]] in order to access the file. For PS4 users, you can click on the '''Game.ini''' button on the control panel and paste the below code at the bottom of the text box before saving and restarting the game server.
+
This page contains information on how to control spawn configurations for your ARK server. For PC users, [[FTP Access]] is used to directly modify the '''GameUserSettings.ini''' and '''Game.ini''' files. For PS4 users, click on the appropriately named buttons on the control panel to access and modify the files.  Any changes made via this method will be overwritten when the '''Modify Server Config''' tool is used.  We strongly suggest to save all of your manual changes on your computer.
  
=== Modifying Spawn Settings ===
+
For all changes to the dinosaur spawn configurations, you want to run a '''cheat [[ARK_Dino_Spawn_Configurations#Destroy_Wild_Dinos|DestroyWildDinos]]''' command once the server starts up.
  
<p>For the data below, there are two values to consider when adding dino spawns to your ARK. '''EntryWeight''' and '''MaxPercentageOfDesiredNumToAllow'''.</p>
+
==== Changing Spawn Rates ====
 +
 
 +
For information on how to do this via the Modify Server Config tool, expand the below section.
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="width:1000px; overflow:auto;">
 +
<p>Below is a screenshot of the '''Dinosaur Spawn Configuration''' for ARK PC / PS4. Explanations will be listed further below. Please note, that each entry will not apply to alpha, aberrant, corrupted, or elemental variants of the same dino. Each variant will have its own separate row for editing.</p>
 +
<p>[[File:Wiki_-_Dino_Spawn_Config_1.png]]</p>
 +
#'''Spawnable'''
 +
#:This determines if a dino will spawn. If this is unchecked, all other values MUST be left as their default values or the dinos will still appear.
 +
#'''Tameable'''
 +
#:If this is unchecked, the dinosaur can not be tamed.
 +
#'''Replace With'''
 +
#:This will replace the dino with the one chosen from this list. Note that not all dinos can be replaced with another. Marine based dinos will not spawn on the land or vice versa.
 +
#'''Spawn Weight'''
 +
#:The higher the weight, the more likely the dino will appear.
 +
#'''Override Limit'''
 +
#:Checking this will tell the server to use the value for '''Spawn Limit''' when calculating how many of this dino should spawn.
 +
#'''Spawn Limit'''
 +
#:This is a value between 0.0 and 1.0, in terms of 0% and 100%. This value should not be higher than 1.0, else this will cause spawning problems.
 +
#'''Tamed Damage'''
 +
#:This modifies the damage of ALL attacks for this dino. Individual attacks, such as the Gryphon's swoop, cannot be changed.
 +
#'''Tamed Resistance'''
 +
#:This modifies the physical and torpor resistances of the tamed dino.
 +
#'''Wild Damage'''
 +
#:This modifies the damage values of the wild dino.  Increasing this modify all of the dino's attacks, such as primary, secondary, or any torpor effects.
 +
#'''Wild Resistance'''
 +
#:This modifies the physical and torpor resistance of the wild dino.
 +
</div>
 +
<br />
 +
 
 +
<p>When changing spawn rates for certain dinos, there are four values to include in this code: '''DinoNameTag''', '''SpawnWeightMultiplier''', '''OverrideSpawnLimitPercentage''', and '''SpawnLimitPercentage'''.</p>
 +
 
 +
:'''DinoNameTag''' - Use the data in the cell for the [https://ark.gamepedia.com/Creature_IDs|Creature IDs] column.
 +
::This specifies which dino is being modified.
 +
:'''SpawnWeightMultiplier''' - This can be any non-negative value.
 +
::This increases the frequency at which a dino will be considered for spawning. With a value of 2, this dino will spawn twice as often.
 +
:'''OverrideSpawnLimitPercentage''' - set to "true" or "false".
 +
::Changing this will determine if you want to modify the total number of this dino spawning throughout the ARK.
 +
:'''SpawnLimitPercentage''' - A number between 0.0 and 1.0, as this is based off percentages. (0% to 100%)
 +
::This determines how often this dino is chosen to spawn in any area that it already exists.
 +
<p>Using Raptors as an example, here's how an example of increasing the raptor spawns by 175% and allowing them to occupy 50% of the total spawns in all areas that they spawn in.</p>
 +
:DinoSpawnWeightMultipliers=(DinoNameTag="Raptor_Character_BP_C",SpawnWeightMultiplier=1.75,OverrideSpawnLimitPercentage=true,SpawnLimitPercentage=0.5)
 +
<p>'''NOTE''': All of the data per each DinoSpawnWeightMultipliers line must be on the same line. No carriage returns or line breaks!</p>
 +
 
 +
==== Replacing / Removing Dino Spawns ====
 +
 
 +
This can be done with one of two ways, either through the '''Modify Server Config''' tool or adding in custom replacements in the Game.ini file.
 +
 
 +
'''NOTE''': If you wish to replace dinosaurs with their Aberration variants, you will need to add the variants to the spawn tables for the map first, found in the [[ARK:_Survival_Evolved_Advanced_Configuration#Adding_Aberration_Dinos_to_Maps|Adding Aberration Dinos to Maps]] section. You will also need to add the actual replacement code into the Game.ini directly, as this is not available through the Modify Server Config tool.
 +
 
 +
An example of adding Aberrent Trikes to the dune section of Ragnarok can be found below:
 +
<br /><br />
 +
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="AberrantTrikeSpawner",EntryWeight=0.01,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.01)))
 +
<br />
 +
With that added into the Game.ini code, we can now add in the following line to replace all normal Trikes with the Aberrant Trike variant.
 +
<br /><br />
 +
:NPCReplacements=(FromClassName="Trike_Character_BP_C",ToClassName="Trike_Character_BP_Aberrant_C")
 +
 
 +
==== Removing Tek Dinosaurs ====
 +
 
 +
To disable Tek dinosaurs, you will need to modify the '''Game.ini''' file directly.
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px; overflow:auto;">
 +
#Open up the Game.ini file on your server at the location /ShooterGame/Saved/Config/WindowsServer/Game.ini
 +
#At the bottom of this file, add in the following 5 lines of code:
 +
#:NPCReplacements=(FromClassName="BionicPara_Character_BP_C",ToClassName="")
 +
#:NPCReplacements=(FromClassName="BionicRaptor_Character_BP_C",ToClassName="")
 +
#:NPCReplacements=(FromClassName="BionicQuetz_Character_BP_C",ToClassName="")
 +
#:NPCReplacements=(FromClassName="BionicQuetz_Character_BP_C",ToClassName="")
 +
#:NPCReplacements=(FromClassName="BionicStego_Character_BP_C",ToClassName="")​
 +
#Save the Game.ini file and close out the window.
 +
</div>
 +
<br />
 +
 
 +
Since this is a "manual" edit to the Game.ini file outside of the Modify Server Config tool, any changes via the Modify Server Config tool will overwrite these changes. If you use the Modify Server Config tool, simply follow the instructions once again and you will be all set.
 +
 
 +
== Adding Dinos to Maps ==
 +
 
 +
<p>To add non-native dinos to your map, you will need to use code to add them to the spawn lists.  For the data below, there are two values to consider when adding dino spawns to your ARK. '''EntryWeight''' and '''MaxPercentageOfDesiredNumToAllow'''.</p>
 
:'''EntryWeight''' - a value between 0.0 and 1.0 (0% to 100%)
 
:'''EntryWeight''' - a value between 0.0 and 1.0 (0% to 100%)
 
:*How often a dino is "considered" for spawning. The higher the value, the more often this particular dino is chosen when a dino is spawned in an area.
 
:*How often a dino is "considered" for spawning. The higher the value, the more often this particular dino is chosen when a dino is spawned in an area.
 
:'''MaxPercentageOfDesiredNumToAllow''' - a value between 0.0 and 1.0 (0% to 100%)
 
:'''MaxPercentageOfDesiredNumToAllow''' - a value between 0.0 and 1.0 (0% to 100%)
 
:*The total number of this particular dino to be allowed in the particular area. With a value of 0.25, there will be a maximum of 25% of the area's total population to be this dinosaur.
 
:*The total number of this particular dino to be allowed in the particular area. With a value of 0.25, there will be a maximum of 25% of the area's total population to be this dinosaur.
<br>
 
  
 
<p>Using one of the examples below, for adding Griffins to the Island, the code and a breakdown of what's what will look like this:</p>
 
<p>Using one of the examples below, for adding Griffins to the Island, the code and a breakdown of what's what will look like this:</p>
Line 14: Line 91:
 
<p>ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="GriffinSnow",EntryWeight=0.05,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05))) </p>
 
<p>ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="GriffinSnow",EntryWeight=0.05,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05))) </p>
  
<p><div class="toccolours mw-collapsible mw-collapsed" style="width:1000px; overflow:auto;">
 
 
:'''ConfigAddNPCSpawnEntriesContainer'''
 
:'''ConfigAddNPCSpawnEntriesContainer'''
 
::For each area that you are modifying, you will need a new instance of this.  This tells ARK that you are adding in spawns to an existing container.
 
::For each area that you are modifying, you will need a new instance of this.  This tells ARK that you are adding in spawns to an existing container.
Line 31: Line 107:
 
:'''MaxPercentageOfDesiredNumToAllow'''
 
:'''MaxPercentageOfDesiredNumToAllow'''
 
::This dictates the number of dinos in relevance to the entire "containers" population. A value between 0.01 (1%) to 1.0 (100%).  A value of 0.5 means that this dino can ONLY occupy 50% of all spawns for this area.
 
::This dictates the number of dinos in relevance to the entire "containers" population. A value between 0.01 (1%) to 1.0 (100%).  A value of 0.5 means that this dino can ONLY occupy 50% of all spawns for this area.
</div></p>
 
  
=== The Island ===
+
=== Adding Griffins to the Island ===
 
 
==== Adding Griffins ====
 
  
 
<p>In this example, I am adding griffins to two different sections of The Island: Mountains and snowy regions. Since griffins are more likely to be in the mountainous area, I've increased the spawn rates and maximum number of allowed griffins for that region by adjusting '''EngryWeight''' and '''MaxPercentageOfDesiredNumToAllow'''.</p>
 
<p>In this example, I am adding griffins to two different sections of The Island: Mountains and snowy regions. Since griffins are more likely to be in the mountainous area, I've increased the spawn rates and maximum number of allowed griffins for that region by adjusting '''EngryWeight''' and '''MaxPercentageOfDesiredNumToAllow'''.</p>
<div class="toccolours mw-collapsible mw-collapsed" style="width:1000px; overflow:auto;">
+
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px; overflow:auto;">
 
--
 
--
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="GriffinSnow",EntryWeight=0.05,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="GriffinSnow",EntryWeight=0.05,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))
Line 45: Line 118:
 
--
 
--
 
</div>
 
</div>
 +
<br />
  
=== Ragnarok ===
+
=== Hermit's Example - Aberration Dinos on Ragnarok ===
 
 
==== Hermit's Example - Aberration Dinos ====
 
 
[https://steamcommunity.com/app/346110/discussions/0/1620599015870921875/#c1620599015891491485 Hermit's Example]<br>
 
[https://steamcommunity.com/app/346110/discussions/0/1620599015870921875/#c1620599015891491485 Hermit's Example]<br>
<div class="toccolours mw-collapsible mw-collapsed" style="width:1000px; overflow:auto;">
 
 
 
<blockquote>''"I have basilisks spawning in the desert and the cave under the ruined castle, ravagers in the canyons and also in the castle cave, karkinos in the swamp, rockdrakes in the redwoods and featherlights/glowtails on Monkey Island in the south." - Hermit''</blockquote>
 
<blockquote>''"I have basilisks spawning in the desert and the cave under the ruined castle, ravagers in the canyons and also in the castle cave, karkinos in the swamp, rockdrakes in the redwoods and featherlights/glowtails on Monkey Island in the south." - Hermit''</blockquote>
  
--
+
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px; overflow:auto;">
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="BasilDesert",EntryWeight=0.01,NPCsToSpawnStrings=("Basilisk_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.01)))
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="BasilDesert",EntryWeight=0.01,NPCsToSpawnStrings=("Basilisk_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.01)))
 
:<br />
 
:<br />
Line 66: Line 136:
 
:<br />
 
:<br />
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCaveMegalo_C",NPCSpawnEntries=((AnEntryName="BasilCave",EntryWeight=0.01,NPCsToSpawnStrings=("Basilisk_Character_BP_C")),(AnEntryName="RavageCave",EntryWeight=0.1,NPCsToSpawnStrings=("CaveWolf_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.01),(NPCClassString="CaveWolf_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCaveMegalo_C",NPCSpawnEntries=((AnEntryName="BasilCave",EntryWeight=0.01,NPCsToSpawnStrings=("Basilisk_Character_BP_C")),(AnEntryName="RavageCave",EntryWeight=0.1,NPCsToSpawnStrings=("CaveWolf_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.01),(NPCClassString="CaveWolf_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
 +
</div>
 +
<br />
 +
 +
<p>'''NOTE''': You may need to remove the spawn code for the Karakinos (i.e Crab_Character_BP_C), as these things have a habit of spawning out of control despite such low spawn values.</p>
 +
 +
 +
--------
 +
 +
=== Adding Dinos to Valguero ===
 +
 +
<p>This code adds the Snow Owls, Managarmr, and Griffins to snowy locations, Reaper Queen to the Aberration cave, and poison/lightning wyverns to the Wyvern Trench.  There are issues with spawns in the Aberration cave, as the data for those spawns are being pulled from the Emerald Forest</p>
 +
''-this is for PS4 as of August 28th, 2019.''
 +
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px; overflow:auto;">
 +
--
 +
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesTundra_C",NPCSpawnEntries=((AnEntryName="VelonaTundra",EntryWeight=0.125,NPCsToSpawnStrings=("Spindles_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Spindles_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.075)))
 +
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Valguero_SnowForest_C",NPCSpawnEntries=((AnEntryName="Owl_SnowForest",EntryWeight=1.0,NPCsToSpawnStrings=("Owl_Character_BP_C")),(AnEntryName="Managarmr_SnowForest",EntryWeight=0.01,NPCsToSpawnStrings=("IceJumper_Character_BP_C")),(AnEntryName="Griffin_SnowForest",EntryWeight=0.5,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="IceJumper_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.002),(NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.075)))
 +
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Valguero_IceDesert_C",NPCSpawnEntries=((AnEntryName="Owl_IceDesert",EntryWeight=1.0,NPCsToSpawnStrings=("Owl_Character_BP_C")),(AnEntryName="Managarmr_IceDesert",EntryWeight=0.01,NPCsToSpawnStrings=("IceJumper_Character_BP_C")),(AnEntryName="Griffin_IceDesert",EntryWeight=0.5,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="IceJumper_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.002),(NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.075)))
 +
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Val_DinoSpawnEntries_DrakeTrench_C",NPCSpawnEntries=((AnEntryName="ReaperQueen_AberrationCave",EntryWeight=0.05,NPCsToSpawnStrings=("Xenomorph_Character_BP_Female_C"))),NPCSpawnLimits=((NPCClassString="Xenomorph_Character_BP_Female_C",MaxPercentageOfDesiredNumToAllow=0.01)))
 +
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Val_DinoSpawnEntriesWyvernTrench_C",NPCSpawnEntries=((AnEntryName="LightningWyvern_WyvernTrench",EntryWeight=0.05,NPCsToSpawnStrings=("Wyvern_Character_BP_Lightning_C")),(AnEntryName="PoisonWyvern_WyvernTrench",EntryWeight=0.05,NPCsToSpawnStrings=("Wyvern_Character_BP_Poison_C"))),NPCSpawnLimits=((NPCClassString="Wyvern_Character_BP_Lightning_C",MaxPercentageOfDesiredNumToAllow=0.01),(NPCClassString="Wyvern_Character_BP_Poison_C",MaxPercentageOfDesiredNumToAllow=0.01)))<br>
 
--
 
--
 
</div>
 
</div>
<p>'''NOTE''': You may need to remove the spawn code for the Karakinos (i.e Crab_Character_BP_C), as these things have a habit of spawning out of control despite such low spawn values.</p>
 
  
==== Adding Aberrant variants to all spawns in Ragnarok ====
+
=== Adding Dinos to The Center ===
 +
 
 +
Requested from ''Gypboys1'', this simple set of spawning configuration adds the following dinos to the following locations.
 +
 
 +
:'''Bulbdogs'''
 +
::Regular and ice caves
 +
:'''Snow Owls'''
 +
::Snowy grasslands, mountains, and generic snowy regions.
 +
:'''Velonsaur'''
 +
::Volcano Island
 +
:'''Gacha'''
 +
::Beaches, grasslands, and jungle
  
<p>With this code, I am adding Aberrant versions of dinos to Ragnarok. This code finds every instance of a dino occurring at a given spawn point and adds the Aberrant version. Ravagers, Karakinos, Basilisks, Reapers, etc. are not included in this code. You may need to make adjustments to the spawn code to achieve the results you want.</p>
+
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px; overflow:auto;">
<div class="toccolours mw-collapsible mw-collapsed" style="width:1000px; overflow:auto;">
 
 
--
 
--
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_Castle",NPCSpawnEntries=((AnEntryName="AberRag214",EntryWeight=0.15,NPCsToSpawnStrings=("SpiderS_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="SpiderS_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="IceCave_Spawner",NPCSpawnEntries=((AnEntryName="Center_Bulb_IceCave",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_Center_C",NPCSpawnEntries=((AnEntryName="AberRag3130",EntryWeight=0.15,NPCsToSpawnStrings=("Para_Character_BP_Aberrant_C")),(AnEntryName="AberRag3240",EntryWeight=0.15,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C")),(AnEntryName="AberRag3338",EntryWeight=0.15,NPCsToSpawnStrings=("Stego_Character_BP_Aberrant_C")),(AnEntryName="AberRag3534",EntryWeight=0.15,NPCsToSpawnStrings=("Raptor_Character_BP_Aberrant_C")),(AnEntryName="AberRag379",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag31025",EntryWeight=0.15,NPCsToSpawnStrings=("Dragonfly_Character_BP_Aberrant_C")),(AnEntryName="AberRag31116",EntryWeight=0.15,NPCsToSpawnStrings=("Doed_Character_BP_Aberrant_C")),(AnEntryName="AberRag31314",EntryWeight=0.15,NPCsToSpawnStrings=("Diplodocus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Para_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Stego_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Raptor_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dragonfly_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Doed_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Diplodocus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave1",NPCSpawnEntries=((AnEntryName="Center_Bulb_Cave1",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_CenterWater_C",NPCSpawnEntries=((AnEntryName="AberRag410",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C")),(AnEntryName="AberRag4331",EntryWeight=0.15,NPCsToSpawnStrings=("Piranha_Character_BP_Aberrant_C")),(AnEntryName="AberRag4437",EntryWeight=0.15,NPCsToSpawnStrings=("Spino_Character_BP_Aberrant_C")),(AnEntryName="AberRag456",EntryWeight=0.15,NPCsToSpawnStrings=("Baryonyx_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Piranha_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Spino_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Baryonyx_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave5",NPCSpawnEntries=((AnEntryName="Center_Bulb_Cave5",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_DeepWater_C",NPCSpawnEntries=((AnEntryName="AberRag5322",EntryWeight=0.15,NPCsToSpawnStrings=("Manta_Character_BP_Aberrant_C")),(AnEntryName="AberRag5441",EntryWeight=0.15,NPCsToSpawnStrings=("Trilobite_Character_Aberrant_C")),(AnEntryName="AberRag5510",EntryWeight=0.15,NPCsToSpawnStrings=("Cnidaria_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Manta_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trilobite_Character_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Cnidaria_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave5_Tough",NPCSpawnEntries=((AnEntryName="Center_Bulb_Cave5Tough",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_Jungle_C",NPCSpawnEntries=((AnEntryName="AberRag10115",EntryWeight=0.15,NPCsToSpawnStrings=("Dodo_Character_BP_Aberrant_C")),(AnEntryName="AberRag10230",EntryWeight=0.15,NPCsToSpawnStrings=("Para_Character_BP_Aberrant_C")),(AnEntryName="AberRag10340",EntryWeight=0.15,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C")),(AnEntryName="AberRag10438",EntryWeight=0.15,NPCsToSpawnStrings=("Stego_Character_BP_Aberrant_C")),(AnEntryName="AberRag10634",EntryWeight=0.15,NPCsToSpawnStrings=("Raptor_Character_BP_Aberrant_C")),(AnEntryName="AberRag1088",EntryWeight=0.15,NPCsToSpawnStrings=("Turtle_Character_BP_Aberrant_C")),(AnEntryName="AberRag1099",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag101325",EntryWeight=0.15,NPCsToSpawnStrings=("Dragonfly_Character_BP_Aberrant_C")),(AnEntryName="AberRag101412",EntryWeight=0.15,NPCsToSpawnStrings=("Dimorph_Character_BP_Aberrant_C")),(AnEntryName="AberRag101514",EntryWeight=0.15,NPCsToSpawnStrings=("Diplodocus_Character_BP_Aberrant_C")),(AnEntryName="AberRag101921",EntryWeight=0.15,NPCsToSpawnStrings=("Lystro_Character_BP_Aberrant_C")),(AnEntryName="AberRag102226",EntryWeight=0.15,NPCsToSpawnStrings=("Moschops_Character_BP_Aberrant_C")),(AnEntryName="AberRag102520",EntryWeight=0.15,NPCsToSpawnStrings=("Iguanodon_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Dodo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Para_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Stego_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Raptor_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Turtle_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dragonfly_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dimorph_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Diplodocus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Lystro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Moschops_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Iguanodon_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SnowGrasslandsUnderArea_Spawn",NPCSpawnEntries=((AnEntryName="Center_Owl_SnowGrass_Under",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_MonkeyIsland_C",NPCSpawnEntries=((AnEntryName="AberRag11212",EntryWeight=0.15,NPCsToSpawnStrings=("Dimorph_Character_BP_Aberrant_C")),(AnEntryName="AberRag11311",EntryWeight=0.15,NPCsToSpawnStrings=("Dimetro_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Dimorph_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dimetro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SnowGrasslands_Spawn",NPCSpawnEntries=((AnEntryName="Center_Owl_SnowGrass",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_Ocean_C",NPCSpawnEntries=((AnEntryName="AberRag1320",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C")),(AnEntryName="AberRag13422",EntryWeight=0.15,NPCsToSpawnStrings=("Manta_Character_BP_Aberrant_C")),(AnEntryName="AberRag13541",EntryWeight=0.15,NPCsToSpawnStrings=("Trilobite_Character_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Manta_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trilobite_Character_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SnowyMountain_Spawn",NPCSpawnEntries=((AnEntryName="Center_Owl_SnowMountain",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))  
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_Scotland_C",NPCSpawnEntries=((AnEntryName="AberRag15140",EntryWeight=0.15,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C")),(AnEntryName="AberRag15414",EntryWeight=0.15,NPCsToSpawnStrings=("Diplodocus_Character_BP_Aberrant_C")),(AnEntryName="AberRag15728",EntryWeight=0.15,NPCsToSpawnStrings=("Sheep_Character_BP_Aberrant_C")),(AnEntryName="AberRag15819",EntryWeight=0.15,NPCsToSpawnStrings=("Equus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Diplodocus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Sheep_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Equus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="Center_Owl_Snow",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))  
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_SnowForest_C",NPCSpawnEntries=((AnEntryName="AberRag16533",EntryWeight=0.15,NPCsToSpawnStrings=("Purlovia_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Purlovia_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Lava_Spawn",NPCSpawnEntries=((AnEntryName="Center_Velon_Lava",EntryWeight=0.08,NPCsToSpawnStrings=("Spindles_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Spindles_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))  
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesBeach_C",NPCSpawnEntries=((AnEntryName="AberRag19115",EntryWeight=0.15,NPCsToSpawnStrings=("Dodo_Character_BP_Aberrant_C")),(AnEntryName="AberRag19230",EntryWeight=0.15,NPCsToSpawnStrings=("Para_Character_BP_Aberrant_C")),(AnEntryName="AberRag19340",EntryWeight=0.15,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C")),(AnEntryName="AberRag1988",EntryWeight=0.15,NPCsToSpawnStrings=("Turtle_Character_BP_Aberrant_C")),(AnEntryName="AberRag191021",EntryWeight=0.15,NPCsToSpawnStrings=("Lystro_Character_BP_Aberrant_C")),(AnEntryName="AberRag191126",EntryWeight=0.15,NPCsToSpawnStrings=("Moschops_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Dodo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Para_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Turtle_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Lystro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Moschops_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Lava_Upper_Spawn",NPCSpawnEntries=((AnEntryName="Center_Velon_Lava_Upper",EntryWeight=0.08,NPCsToSpawnStrings=("Spindles_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Spindles_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave1_C",NPCSpawnEntries=((AnEntryName="AberRag21139",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag2125",EntryWeight=0.15,NPCsToSpawnStrings=("Arthro_Character_BP_Aberrant_C")),(AnEntryName="AberRag2134",EntryWeight=0.15,NPCsToSpawnStrings=("SpiderS_Character_BP_Aberrant_C")),(AnEntryName="AberRag21432",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag21517",EntryWeight=0.15,NPCsToSpawnStrings=("DungBeetle_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Arthro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="SpiderS_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="DungBeetle_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesBeach",NPCSpawnEntries=((AnEntryName="Center_Gacha_Beach",EntryWeight=0.08,NPCsToSpawnStrings=("Gacha_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Gacha_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))  
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave2_C",NPCSpawnEntries=((AnEntryName="AberRag22139",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag2225",EntryWeight=0.15,NPCsToSpawnStrings=("Arthro_Character_BP_Aberrant_C")),(AnEntryName="AberRag2234",EntryWeight=0.15,NPCsToSpawnStrings=("SpiderS_Character_BP_Aberrant_C")),(AnEntryName="AberRag22432",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Arthro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="SpiderS_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesGrassland",NPCSpawnEntries=((AnEntryName="Center_Gacha_Grassland",EntryWeight=0.08,NPCsToSpawnStrings=("Gacha_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Gacha_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave5_Tough_C",NPCSpawnEntries=((AnEntryName="AberRag23139",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag2325",EntryWeight=0.15,NPCsToSpawnStrings=("Arthro_Character_BP_Aberrant_C")),(AnEntryName="AberRag2334",EntryWeight=0.15,NPCsToSpawnStrings=("SpiderS_Character_BP_Aberrant_C")),(AnEntryName="AberRag23432",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag23617",EntryWeight=0.15,NPCsToSpawnStrings=("DungBeetle_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Arthro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="SpiderS_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="DungBeetle_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
+
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesJungle",NPCSpawnEntries=((AnEntryName="Center_Gacha_Jungle",EntryWeight=0.08,NPCsToSpawnStrings=("Gacha_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Gacha_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCaveMegalo_C",NPCSpawnEntries=((AnEntryName="AberRag24124",EntryWeight=0.15,NPCsToSpawnStrings=("Megalosaurus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Megalosaurus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesDamiensAtoll_C",NPCSpawnEntries=((AnEntryName="AberRag25130",EntryWeight=0.15,NPCsToSpawnStrings=("Para_Character_BP_Aberrant_C")),(AnEntryName="AberRag25240",EntryWeight=0.15,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C")),(AnEntryName="AberRag2533",EntryWeight=0.15,NPCsToSpawnStrings=("Ankylo_Character_BP_Aberrant_C")),(AnEntryName="AberRag25438",EntryWeight=0.15,NPCsToSpawnStrings=("Stego_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Para_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Ankylo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Stego_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesGrassland_C",NPCSpawnEntries=((AnEntryName="AberRag27130",EntryWeight=0.15,NPCsToSpawnStrings=("Para_Character_BP_Aberrant_C")),(AnEntryName="AberRag27240",EntryWeight=0.15,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C")),(AnEntryName="AberRag27338",EntryWeight=0.15,NPCsToSpawnStrings=("Stego_Character_BP_Aberrant_C")),(AnEntryName="AberRag27634",EntryWeight=0.15,NPCsToSpawnStrings=("Raptor_Character_BP_Aberrant_C")),(AnEntryName="AberRag2799",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag271225",EntryWeight=0.15,NPCsToSpawnStrings=("Dragonfly_Character_BP_Aberrant_C")),(AnEntryName="AberRag271316",EntryWeight=0.15,NPCsToSpawnStrings=("Doed_Character_BP_Aberrant_C")),(AnEntryName="AberRag271514",EntryWeight=0.15,NPCsToSpawnStrings=("Diplodocus_Character_BP_Aberrant_C")),(AnEntryName="AberRag272028",EntryWeight=0.15,NPCsToSpawnStrings=("Sheep_Character_BP_Aberrant_C")),(AnEntryName="AberRag272219",EntryWeight=0.15,NPCsToSpawnStrings=("Equus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Para_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Stego_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Raptor_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dragonfly_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Doed_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Diplodocus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Sheep_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Equus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesMegalania_C",NPCSpawnEntries=((AnEntryName="AberRag28123",EntryWeight=0.15,NPCsToSpawnStrings=("Megalania_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Megalania_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesMonsterIsland_C",NPCSpawnEntries=((AnEntryName="AberRag29134",EntryWeight=0.15,NPCsToSpawnStrings=("Raptor_Character_BP_Aberrant_C")),(AnEntryName="AberRag29432",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag2969",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Raptor_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesMountain_C",NPCSpawnEntries=((AnEntryName="AberRag30132",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag3049",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag3073",EntryWeight=0.15,NPCsToSpawnStrings=("Ankylo_Character_BP_Aberrant_C")),(AnEntryName="AberRag301119",EntryWeight=0.15,NPCsToSpawnStrings=("Equus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Ankylo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Equus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesRedwoods_C",NPCSpawnEntries=((AnEntryName="AberRag3429",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag34516",EntryWeight=0.15,NPCsToSpawnStrings=("Doed_Character_BP_Aberrant_C")),(AnEntryName="AberRag34629",EntryWeight=0.15,NPCsToSpawnStrings=("Paracer_Character_BP_Aberrant_C")),(AnEntryName="AberRag34714",EntryWeight=0.15,NPCsToSpawnStrings=("Diplodocus_Character_BP_Aberrant_C")),(AnEntryName="AberRag341212",EntryWeight=0.15,NPCsToSpawnStrings=("Dimorph_Character_BP_Aberrant_C")),(AnEntryName="AberRag34151",EntryWeight=0.15,NPCsToSpawnStrings=("Achatina_Character_BP_Aberrant_C")),(AnEntryName="AberRag341833",EntryWeight=0.15,NPCsToSpawnStrings=("Purlovia_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Doed_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Paracer_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Diplodocus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dimorph_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Achatina_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Purlovia_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow_C",NPCSpawnEntries=((AnEntryName="AberRag3533",EntryWeight=0.15,NPCsToSpawnStrings=("Ankylo_Character_BP_Aberrant_C")),(AnEntryName="AberRag351133",EntryWeight=0.15,NPCsToSpawnStrings=("Purlovia_Character_BP_Aberrant_C")),(AnEntryName="AberRag351228",EntryWeight=0.15,NPCsToSpawnStrings=("Sheep_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Ankylo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Purlovia_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Sheep_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSwamp_C",NPCSpawnEntries=((AnEntryName="AberRag36325",EntryWeight=0.15,NPCsToSpawnStrings=("Dragonfly_Character_BP_Aberrant_C")),(AnEntryName="AberRag36412",EntryWeight=0.15,NPCsToSpawnStrings=("Dimorph_Character_BP_Aberrant_C")),(AnEntryName="AberRag36529",EntryWeight=0.15,NPCsToSpawnStrings=("Paracer_Character_BP_Aberrant_C")),(AnEntryName="AberRag36639",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag3671",EntryWeight=0.15,NPCsToSpawnStrings=("Achatina_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Dragonfly_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dimorph_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Paracer_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Achatina_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesTinyCave_C",NPCSpawnEntries=((AnEntryName="AberRag3824",EntryWeight=0.15,NPCsToSpawnStrings=("SpiderS_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="SpiderS_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesWater_C",NPCSpawnEntries=((AnEntryName="AberRag4110",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_DarkWaterAngler_C",NPCSpawnEntries=((AnEntryName="AberRag4412",EntryWeight=0.15,NPCsToSpawnStrings=("Angler_Character_BP_Aberrant_C")),(AnEntryName="AberRag44218",EntryWeight=0.15,NPCsToSpawnStrings=("Eel_Character_BP_Aberrant_C")),(AnEntryName="AberRag44610",EntryWeight=0.15,NPCsToSpawnStrings=("Cnidaria_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Angler_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Eel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Cnidaria_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_DeepWater_C",NPCSpawnEntries=((AnEntryName="AberRag4810",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C")),(AnEntryName="AberRag48422",EntryWeight=0.15,NPCsToSpawnStrings=("Manta_Character_BP_Aberrant_C")),(AnEntryName="AberRag48541",EntryWeight=0.15,NPCsToSpawnStrings=("Trilobite_Character_Aberrant_C")),(AnEntryName="AberRag48610",EntryWeight=0.15,NPCsToSpawnStrings=("Cnidaria_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Manta_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Trilobite_Character_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Cnidaria_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_InlandWater_C",NPCSpawnEntries=((AnEntryName="AberRag4910",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C")),(AnEntryName="AberRag49331",EntryWeight=0.15,NPCsToSpawnStrings=("Piranha_Character_BP_Aberrant_C")),(AnEntryName="AberRag49437",EntryWeight=0.15,NPCsToSpawnStrings=("Spino_Character_BP_Aberrant_C")),(AnEntryName="AberRag4956",EntryWeight=0.15,NPCsToSpawnStrings=("Baryonyx_Character_BP_Aberrant_C")),(AnEntryName="AberRag49727",EntryWeight=0.15,NPCsToSpawnStrings=("Otter_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Piranha_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Spino_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Baryonyx_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Otter_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_RedwoodWater_C",NPCSpawnEntries=((AnEntryName="AberRag5010",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C")),(AnEntryName="AberRag50327",EntryWeight=0.15,NPCsToSpawnStrings=("Otter_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Otter_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_SwampWater_C",NPCSpawnEntries=((AnEntryName="AberRag5130",EntryWeight=0.15,NPCsToSpawnStrings=("Coel_Character_BP_Aberrant_C")),(AnEntryName="AberRag51431",EntryWeight=0.15,NPCsToSpawnStrings=("Piranha_Character_BP_Aberrant_C")),(AnEntryName="AberRag5157",EntryWeight=0.15,NPCsToSpawnStrings=("Toad_Character_BP_Aberrant_C")),(AnEntryName="AberRag51636",EntryWeight=0.15,NPCsToSpawnStrings=("Sarco_Character_BP_Aberrant_C")),(AnEntryName="AberRag51811",EntryWeight=0.15,NPCsToSpawnStrings=("Dimetro_Character_BP_Aberrant_C")),(AnEntryName="AberRag51913",EntryWeight=0.15,NPCsToSpawnStrings=("Diplocaulus_Character_BP_Aberrant_C")),(AnEntryName="AberRag51106",EntryWeight=0.15,NPCsToSpawnStrings=("Baryonyx_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Coel_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Piranha_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Toad_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Sarco_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Dimetro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Diplocaulus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Baryonyx_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesBadlands_C",NPCSpawnEntries=((AnEntryName="AberRag52332",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag521016",EntryWeight=0.15,NPCsToSpawnStrings=("Doed_Character_BP_Aberrant_C")),(AnEntryName="AberRag52129",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag52135",EntryWeight=0.15,NPCsToSpawnStrings=("Arthro_Character_BP_Aberrant_C")),(AnEntryName="AberRag52143",EntryWeight=0.15,NPCsToSpawnStrings=("Ankylo_Character_BP_Aberrant_C")),(AnEntryName="AberRag521539",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Doed_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Arthro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Ankylo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesCanyons_C",NPCSpawnEntries=((AnEntryName="AberRag53332",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag53716",EntryWeight=0.15,NPCsToSpawnStrings=("Doed_Character_BP_Aberrant_C")),(AnEntryName="AberRag53939",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag531333",EntryWeight=0.15,NPCsToSpawnStrings=("Purlovia_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Doed_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Purlovia_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="AberRag54332",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag5455",EntryWeight=0.15,NPCsToSpawnStrings=("Arthro_Character_BP_Aberrant_C")),(AnEntryName="AberRag54639",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag54817",EntryWeight=0.15,NPCsToSpawnStrings=("DungBeetle_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Arthro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="DungBeetle_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesGreenDesert_C",NPCSpawnEntries=((AnEntryName="AberRag55516",EntryWeight=0.15,NPCsToSpawnStrings=("Doed_Character_BP_Aberrant_C")),(AnEntryName="AberRag55629",EntryWeight=0.15,NPCsToSpawnStrings=("Paracer_Character_BP_Aberrant_C")),(AnEntryName="AberRag551221",EntryWeight=0.15,NPCsToSpawnStrings=("Lystro_Character_BP_Aberrant_C")),(AnEntryName="AberRag55133",EntryWeight=0.15,NPCsToSpawnStrings=("Ankylo_Character_BP_Aberrant_C")),(AnEntryName="AberRag552219",EntryWeight=0.15,NPCsToSpawnStrings=("Equus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Doed_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Paracer_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Lystro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Ankylo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Equus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesMountain_C",NPCSpawnEntries=((AnEntryName="AberRag56132",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag5649",EntryWeight=0.15,NPCsToSpawnStrings=("Carno_Character_BP_Aberrant_C")),(AnEntryName="AberRag5673",EntryWeight=0.15,NPCsToSpawnStrings=("Ankylo_Character_BP_Aberrant_C")),(AnEntryName="AberRag561119",EntryWeight=0.15,NPCsToSpawnStrings=("Equus_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Carno_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Ankylo_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Equus_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesOasis_C",NPCSpawnEntries=((AnEntryName="AberRag57134",EntryWeight=0.15,NPCsToSpawnStrings=("Raptor_Character_BP_Aberrant_C")),(AnEntryName="AberRag57421",EntryWeight=0.15,NPCsToSpawnStrings=("Lystro_Character_BP_Aberrant_C")),(AnEntryName="AberRag57629",EntryWeight=0.15,NPCsToSpawnStrings=("Paracer_Character_BP_Aberrant_C")),(AnEntryName="AberRag571126",EntryWeight=0.15,NPCsToSpawnStrings=("Moschops_Character_BP_Aberrant_C")),(AnEntryName="AberRag571328",EntryWeight=0.15,NPCsToSpawnStrings=("Sheep_Character_BP_Aberrant_C")),(AnEntryName="AberRag571420",EntryWeight=0.15,NPCsToSpawnStrings=("Iguanodon_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Raptor_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Lystro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Paracer_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Moschops_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Sheep_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Iguanodon_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
:ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesWyvernTrench_C",NPCSpawnEntries=((AnEntryName="AberRag60139",EntryWeight=0.15,NPCsToSpawnStrings=("BoaFrill_Character_BP_Aberrant_C")),(AnEntryName="AberRag6034",EntryWeight=0.15,NPCsToSpawnStrings=("SpiderS_Character_BP_Aberrant_C")),(AnEntryName="AberRag60432",EntryWeight=0.15,NPCsToSpawnStrings=("Scorpion_Character_BP_Aberrant_C")),(AnEntryName="AberRag60517",EntryWeight=0.15,NPCsToSpawnStrings=("DungBeetle_Character_BP_Aberrant_C")),(AnEntryName="AberRag6065",EntryWeight=0.15,NPCsToSpawnStrings=("Arthro_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="BoaFrill_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="SpiderS_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Scorpion_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="DungBeetle_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="Arthro_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.1)))<br>
 
 
--
 
--
 
</div>
 
</div>
  
=== More Information ===
+
=== Spawn Maps and Other Info ===
  
 
<p>The links below contain resources that can help you build your custom spawn configuration by showing you where dinosaurs already spawn on the map, as well as which dinos spawn in which sections.</p>
 
<p>The links below contain resources that can help you build your custom spawn configuration by showing you where dinosaurs already spawn on the map, as well as which dinos spawn in which sections.</p>
 
:https://ark.gamepedia.com/Spawn_Map_(Ragnarok) - Spawn map for Ragnarok.
 
:https://ark.gamepedia.com/Spawn_Map_(Ragnarok) - Spawn map for Ragnarok.
 
:https://ark.gamepedia.com/Spawn_Map_(The_Island) - Spawn map for The Island.
 
:https://ark.gamepedia.com/Spawn_Map_(The_Island) - Spawn map for The Island.
 +
:https://ark.gamepedia.com/Spawn_Map_(Extinction) - Spawn map for Extinction.
 
:https://ark.gamepedia.com/Spawn_Entries#Ragnarok - The list of spawn "containers" for Ragnarok.
 
:https://ark.gamepedia.com/Spawn_Entries#Ragnarok - The list of spawn "containers" for Ragnarok.
 
:https://ark.gamepedia.com/Spawn_Entries#TheIsland - The list of spawn "containers" for The Island.
 
:https://ark.gamepedia.com/Spawn_Entries#TheIsland - The list of spawn "containers" for The Island.
 +
:https://ark.gamepedia.com/Spawn_Entries#Extinction - The list of spawn "containers" for Extinction.
 +
:https://ark.gamepedia.com/Spawn_Entries#Valguero - The list of spawn "containers" for Valguero.
 +
 +
== Destroy Wild Dinos ==
 +
 +
For information on how to clear out the current dinosaur spawns for your server, expand the following section:
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="width:800px; overflow:auto;">
 +
#After editing/uploading/deleting your files in the proper directories, start your server from the panel.
 +
#Log in to your server as an admin (press TAB while in game and then type '''enablecheats ADMINPASSWORD''')
 +
#:'''ADMINPASSWORD''' is the value found in your Admin Password field on your control panel.
 +
#Enable the admin overlay with the command: '''setcheatplayer true'''
 +
#When this command is enabled you will see a NPC count. Keep an eye on this number.
 +
#Run the command '''cheat saveworld'''
 +
#:This command saves the world in case the repopulation of dinos causes the server to crash.
 +
#Wait 15 seconds Enter the command: '''cheat DestroyWildDinos'''
 +
#Wait 5-10 minutes or until you see wild dinos and run this command: '''cheat saveworld'''
 +
</div>
 +
<br />

Latest revision as of 09:16, 20 September 2019

This page contains information on how to control spawn configurations for your ARK server. For PC users, FTP Access is used to directly modify the GameUserSettings.ini and Game.ini files. For PS4 users, click on the appropriately named buttons on the control panel to access and modify the files. Any changes made via this method will be overwritten when the Modify Server Config tool is used. We strongly suggest to save all of your manual changes on your computer.

For all changes to the dinosaur spawn configurations, you want to run a cheat DestroyWildDinos command once the server starts up.

Changing Spawn Rates

For information on how to do this via the Modify Server Config tool, expand the below section.

Below is a screenshot of the Dinosaur Spawn Configuration for ARK PC / PS4. Explanations will be listed further below. Please note, that each entry will not apply to alpha, aberrant, corrupted, or elemental variants of the same dino. Each variant will have its own separate row for editing.

Wiki - Dino Spawn Config 1.png

  1. Spawnable
    This determines if a dino will spawn. If this is unchecked, all other values MUST be left as their default values or the dinos will still appear.
  2. Tameable
    If this is unchecked, the dinosaur can not be tamed.
  3. Replace With
    This will replace the dino with the one chosen from this list. Note that not all dinos can be replaced with another. Marine based dinos will not spawn on the land or vice versa.
  4. Spawn Weight
    The higher the weight, the more likely the dino will appear.
  5. Override Limit
    Checking this will tell the server to use the value for Spawn Limit when calculating how many of this dino should spawn.
  6. Spawn Limit
    This is a value between 0.0 and 1.0, in terms of 0% and 100%. This value should not be higher than 1.0, else this will cause spawning problems.
  7. Tamed Damage
    This modifies the damage of ALL attacks for this dino. Individual attacks, such as the Gryphon's swoop, cannot be changed.
  8. Tamed Resistance
    This modifies the physical and torpor resistances of the tamed dino.
  9. Wild Damage
    This modifies the damage values of the wild dino. Increasing this modify all of the dino's attacks, such as primary, secondary, or any torpor effects.
  10. Wild Resistance
    This modifies the physical and torpor resistance of the wild dino.


When changing spawn rates for certain dinos, there are four values to include in this code: DinoNameTag, SpawnWeightMultiplier, OverrideSpawnLimitPercentage, and SpawnLimitPercentage.

DinoNameTag - Use the data in the cell for the IDs column.
This specifies which dino is being modified.
SpawnWeightMultiplier - This can be any non-negative value.
This increases the frequency at which a dino will be considered for spawning. With a value of 2, this dino will spawn twice as often.
OverrideSpawnLimitPercentage - set to "true" or "false".
Changing this will determine if you want to modify the total number of this dino spawning throughout the ARK.
SpawnLimitPercentage - A number between 0.0 and 1.0, as this is based off percentages. (0% to 100%)
This determines how often this dino is chosen to spawn in any area that it already exists.

Using Raptors as an example, here's how an example of increasing the raptor spawns by 175% and allowing them to occupy 50% of the total spawns in all areas that they spawn in.

DinoSpawnWeightMultipliers=(DinoNameTag="Raptor_Character_BP_C",SpawnWeightMultiplier=1.75,OverrideSpawnLimitPercentage=true,SpawnLimitPercentage=0.5)

NOTE: All of the data per each DinoSpawnWeightMultipliers line must be on the same line. No carriage returns or line breaks!

Replacing / Removing Dino Spawns

This can be done with one of two ways, either through the Modify Server Config tool or adding in custom replacements in the Game.ini file.

NOTE: If you wish to replace dinosaurs with their Aberration variants, you will need to add the variants to the spawn tables for the map first, found in the Adding Aberration Dinos to Maps section. You will also need to add the actual replacement code into the Game.ini directly, as this is not available through the Modify Server Config tool.

An example of adding Aberrent Trikes to the dune section of Ragnarok can be found below:

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="AberrantTrikeSpawner",EntryWeight=0.01,NPCsToSpawnStrings=("Trike_Character_BP_Aberrant_C"))),NPCSpawnLimits=((NPCClassString="Trike_Character_BP_Aberrant_C",MaxPercentageOfDesiredNumToAllow=0.01)))


With that added into the Game.ini code, we can now add in the following line to replace all normal Trikes with the Aberrant Trike variant.

NPCReplacements=(FromClassName="Trike_Character_BP_C",ToClassName="Trike_Character_BP_Aberrant_C")

Removing Tek Dinosaurs

To disable Tek dinosaurs, you will need to modify the Game.ini file directly.

  1. Open up the Game.ini file on your server at the location /ShooterGame/Saved/Config/WindowsServer/Game.ini
  2. At the bottom of this file, add in the following 5 lines of code:
    NPCReplacements=(FromClassName="BionicPara_Character_BP_C",ToClassName="")
    NPCReplacements=(FromClassName="BionicRaptor_Character_BP_C",ToClassName="")
    NPCReplacements=(FromClassName="BionicQuetz_Character_BP_C",ToClassName="")
    NPCReplacements=(FromClassName="BionicQuetz_Character_BP_C",ToClassName="")
    NPCReplacements=(FromClassName="BionicStego_Character_BP_C",ToClassName="")​
  3. Save the Game.ini file and close out the window.


Since this is a "manual" edit to the Game.ini file outside of the Modify Server Config tool, any changes via the Modify Server Config tool will overwrite these changes. If you use the Modify Server Config tool, simply follow the instructions once again and you will be all set.

Adding Dinos to Maps

To add non-native dinos to your map, you will need to use code to add them to the spawn lists. For the data below, there are two values to consider when adding dino spawns to your ARK. EntryWeight and MaxPercentageOfDesiredNumToAllow.

EntryWeight - a value between 0.0 and 1.0 (0% to 100%)
  • How often a dino is "considered" for spawning. The higher the value, the more often this particular dino is chosen when a dino is spawned in an area.
MaxPercentageOfDesiredNumToAllow - a value between 0.0 and 1.0 (0% to 100%)
  • The total number of this particular dino to be allowed in the particular area. With a value of 0.25, there will be a maximum of 25% of the area's total population to be this dinosaur.

Using one of the examples below, for adding Griffins to the Island, the code and a breakdown of what's what will look like this:

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="GriffinSnow",EntryWeight=0.05,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))

ConfigAddNPCSpawnEntriesContainer
For each area that you are modifying, you will need a new instance of this. This tells ARK that you are adding in spawns to an existing container.
NPCSpawnEntriesContainerClassString
This value references the "container", or spawn section that we are directly modifying. This is a value taken from ((list source here)).
NPCSpawnEntries
This section lists all of the dino spawns that will be affected. All dinos will each have their own AnEntryName, EntryWeight, and NPCsToSpawnStrings section.
AnEntryName
This is a unique name given to this particular dino's entry. This value must not be used in any other spawn entry. In this case, I used the name "GriffinSnow", to remind myself that I am adding Griffins to the snow areas.
EntryWeight
This determines how often this particular dino will be chosen from the main spawn list. This is a value between 0.01 (1%) to 1.0 (100%)
NPCsToSpawnStrings
This is a reference to the specific dino that will be spawned. This is a value taken from ((list source here)).
NPCSpawnLimits
This is a section that determines the maximum percentage of the total population of this particular dino.
MaxPercentageOfDesiredNumToAllow
This dictates the number of dinos in relevance to the entire "containers" population. A value between 0.01 (1%) to 1.0 (100%). A value of 0.5 means that this dino can ONLY occupy 50% of all spawns for this area.

Adding Griffins to the Island

In this example, I am adding griffins to two different sections of The Island: Mountains and snowy regions. Since griffins are more likely to be in the mountainous area, I've increased the spawn rates and maximum number of allowed griffins for that region by adjusting EngryWeight and MaxPercentageOfDesiredNumToAllow.

--

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="GriffinSnow",EntryWeight=0.05,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.05)))

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesMountain",NPCSpawnEntries=((AnEntryName="GriffinMountain",EntryWeight=0.1,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.08)))

--


Hermit's Example - Aberration Dinos on Ragnarok

Hermit's Example

"I have basilisks spawning in the desert and the cave under the ruined castle, ravagers in the canyons and also in the castle cave, karkinos in the swamp, rockdrakes in the redwoods and featherlights/glowtails on Monkey Island in the south." - Hermit

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesDunes_C",NPCSpawnEntries=((AnEntryName="BasilDesert",EntryWeight=0.01,NPCsToSpawnStrings=("Basilisk_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.01)))

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSwamp",NPCSpawnEntries=((AnEntryName="Crabby",EntryWeight=0.00001,NPCsToSpawnStrings=("Crab_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Crab_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.00001)))

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)))

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesRedwoods_C",NPCSpawnEntries=((AnEntryName="Drake",EntryWeight=0.0001,NPCsToSpawnStrings=("RockDrake_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="RockDrake_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.001)))

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Ragnarok_MonkeyIsland_C",NPCSpawnEntries=((AnEntryName="GlowtailIsland",EntryWeight=0.1,NPCsToSpawnStrings=("LanternLizard_Character_BP_C")),(AnEntryName="FeatherlightIsland",EntryWeight=0.1,NPCsToSpawnStrings=("LanternBird_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternLizard_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.25),(NPCClassString="LanternBird_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.25)))

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCaveMegalo_C",NPCSpawnEntries=((AnEntryName="BasilCave",EntryWeight=0.01,NPCsToSpawnStrings=("Basilisk_Character_BP_C")),(AnEntryName="RavageCave",EntryWeight=0.1,NPCsToSpawnStrings=("CaveWolf_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Basilisk_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.01),(NPCClassString="CaveWolf_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))


NOTE: You may need to remove the spawn code for the Karakinos (i.e Crab_Character_BP_C), as these things have a habit of spawning out of control despite such low spawn values.



Adding Dinos to Valguero

This code adds the Snow Owls, Managarmr, and Griffins to snowy locations, Reaper Queen to the Aberration cave, and poison/lightning wyverns to the Wyvern Trench. There are issues with spawns in the Aberration cave, as the data for those spawns are being pulled from the Emerald Forest

-this is for PS4 as of August 28th, 2019.

--

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesTundra_C",NPCSpawnEntries=((AnEntryName="VelonaTundra",EntryWeight=0.125,NPCsToSpawnStrings=("Spindles_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Spindles_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.075)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Valguero_SnowForest_C",NPCSpawnEntries=((AnEntryName="Owl_SnowForest",EntryWeight=1.0,NPCsToSpawnStrings=("Owl_Character_BP_C")),(AnEntryName="Managarmr_SnowForest",EntryWeight=0.01,NPCsToSpawnStrings=("IceJumper_Character_BP_C")),(AnEntryName="Griffin_SnowForest",EntryWeight=0.5,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="IceJumper_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.002),(NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.075)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntries_Valguero_IceDesert_C",NPCSpawnEntries=((AnEntryName="Owl_IceDesert",EntryWeight=1.0,NPCsToSpawnStrings=("Owl_Character_BP_C")),(AnEntryName="Managarmr_IceDesert",EntryWeight=0.01,NPCsToSpawnStrings=("IceJumper_Character_BP_C")),(AnEntryName="Griffin_IceDesert",EntryWeight=0.5,NPCsToSpawnStrings=("Griffin_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.1),(NPCClassString="IceJumper_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.002),(NPCClassString="Griffin_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.075)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Val_DinoSpawnEntries_DrakeTrench_C",NPCSpawnEntries=((AnEntryName="ReaperQueen_AberrationCave",EntryWeight=0.05,NPCsToSpawnStrings=("Xenomorph_Character_BP_Female_C"))),NPCSpawnLimits=((NPCClassString="Xenomorph_Character_BP_Female_C",MaxPercentageOfDesiredNumToAllow=0.01)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Val_DinoSpawnEntriesWyvernTrench_C",NPCSpawnEntries=((AnEntryName="LightningWyvern_WyvernTrench",EntryWeight=0.05,NPCsToSpawnStrings=("Wyvern_Character_BP_Lightning_C")),(AnEntryName="PoisonWyvern_WyvernTrench",EntryWeight=0.05,NPCsToSpawnStrings=("Wyvern_Character_BP_Poison_C"))),NPCSpawnLimits=((NPCClassString="Wyvern_Character_BP_Lightning_C",MaxPercentageOfDesiredNumToAllow=0.01),(NPCClassString="Wyvern_Character_BP_Poison_C",MaxPercentageOfDesiredNumToAllow=0.01)))

--

Adding Dinos to The Center

Requested from Gypboys1, this simple set of spawning configuration adds the following dinos to the following locations.

Bulbdogs
Regular and ice caves
Snow Owls
Snowy grasslands, mountains, and generic snowy regions.
Velonsaur
Volcano Island
Gacha
Beaches, grasslands, and jungle

--

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="IceCave_Spawner",NPCSpawnEntries=((AnEntryName="Center_Bulb_IceCave",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave1",NPCSpawnEntries=((AnEntryName="Center_Bulb_Cave1",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave5",NPCSpawnEntries=((AnEntryName="Center_Bulb_Cave5",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesCave5_Tough",NPCSpawnEntries=((AnEntryName="Center_Bulb_Cave5Tough",EntryWeight=0.2,NPCsToSpawnStrings=("LanternPug_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="LanternPug_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SnowGrasslandsUnderArea_Spawn",NPCSpawnEntries=((AnEntryName="Center_Owl_SnowGrass_Under",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SnowGrasslands_Spawn",NPCSpawnEntries=((AnEntryName="Center_Owl_SnowGrass",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SnowyMountain_Spawn",NPCSpawnEntries=((AnEntryName="Center_Owl_SnowMountain",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesSnow",NPCSpawnEntries=((AnEntryName="Center_Owl_Snow",EntryWeight=0.2,NPCsToSpawnStrings=("Owl_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Owl_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.2)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Lava_Spawn",NPCSpawnEntries=((AnEntryName="Center_Velon_Lava",EntryWeight=0.08,NPCsToSpawnStrings=("Spindles_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Spindles_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="Lava_Upper_Spawn",NPCSpawnEntries=((AnEntryName="Center_Velon_Lava_Upper",EntryWeight=0.08,NPCsToSpawnStrings=("Spindles_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Spindles_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesBeach",NPCSpawnEntries=((AnEntryName="Center_Gacha_Beach",EntryWeight=0.08,NPCsToSpawnStrings=("Gacha_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Gacha_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesGrassland",NPCSpawnEntries=((AnEntryName="Center_Gacha_Grassland",EntryWeight=0.08,NPCsToSpawnStrings=("Gacha_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Gacha_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesJungle",NPCSpawnEntries=((AnEntryName="Center_Gacha_Jungle",EntryWeight=0.08,NPCsToSpawnStrings=("Gacha_Character_BP_C"))),NPCSpawnLimits=((NPCClassString="Gacha_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.1)))

--

Spawn Maps and Other Info

The links below contain resources that can help you build your custom spawn configuration by showing you where dinosaurs already spawn on the map, as well as which dinos spawn in which sections.

https://ark.gamepedia.com/Spawn_Map_(Ragnarok) - Spawn map for Ragnarok.
https://ark.gamepedia.com/Spawn_Map_(The_Island) - Spawn map for The Island.
https://ark.gamepedia.com/Spawn_Map_(Extinction) - Spawn map for Extinction.
https://ark.gamepedia.com/Spawn_Entries#Ragnarok - The list of spawn "containers" for Ragnarok.
https://ark.gamepedia.com/Spawn_Entries#TheIsland - The list of spawn "containers" for The Island.
https://ark.gamepedia.com/Spawn_Entries#Extinction - The list of spawn "containers" for Extinction.
https://ark.gamepedia.com/Spawn_Entries#Valguero - The list of spawn "containers" for Valguero.

Destroy Wild Dinos

For information on how to clear out the current dinosaur spawns for your server, expand the following section:

  1. After editing/uploading/deleting your files in the proper directories, start your server from the panel.
  2. Log in to your server as an admin (press TAB while in game and then type enablecheats ADMINPASSWORD)
    ADMINPASSWORD is the value found in your Admin Password field on your control panel.
  3. Enable the admin overlay with the command: setcheatplayer true
  4. When this command is enabled you will see a NPC count. Keep an eye on this number.
  5. Run the command cheat saveworld
    This command saves the world in case the repopulation of dinos causes the server to crash.
  6. Wait 15 seconds Enter the command: cheat DestroyWildDinos
  7. Wait 5-10 minutes or until you see wild dinos and run this command: cheat saveworld




Share your opinion