ARK: Survival Evolved

ARK: Survival Evolved

Legendary Indominus Rex
 This topic has been pinned, so it's probably important
TreeZenDE  [developer] 28 Aug, 2017 @ 1:34pm
Server Settings
Add all these setting lines into your server's Game.ini file.
Make sure you add this section below or just create it:
[/script/shootergame.shootergamemode]


Add Indominus Spawns:
This example will ADD an Indominus Spawn to the Scorched Earth Badlands Spawner

ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="SE_DinoSpawnEntriesBadlands_C",NPCSpawnEntries=((AnEntryName="IndomSpawner",EntryWeight=0.015,NPCsToSpawnStrings=("IndominusRex_Character_BP_C")))),NPCSpawnLimits=((NPCClassString="IndominusRex_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.015)))

For any other map without Indominus spawns, replace the NPCSpawnEntriesContainerClassString with a spawner of your choice! Ask the map modder if you're not sure.

All Vanilla Spawn-Entries: https://ark.gamepedia.com/Spawn_Entries

Without this config, this mod uses the DinoSpawnEntriesGigant and DinoSpawnEntriesMonsterIsland Spawner. These spawns are available on all official maps (except Scorched Earth).



Modifying Indominus Damage/Resistance:
For any creature, there is a way to modify the damage it takes same like all other dinosaurs in ark. You can increase or decrease by percentage.

For example to half its resistance for wild and tamed Indoms:
DinoClassResistanceMultipliers=(ClassName="IndominusRex_Character_BP_C",Multiplier=0.50)
TamedDinoClassResistanceMultipliers=(ClassName="IndominusRex_Character_BP_C",Multiplier=0.50)

Likewise, reduce its damage to half will be:
DinoClassDamageMultipliers=(ClassName="IndominusRex_Character_BP_C",Multiplier=0.50)
TamedDinoClassDamageMultipliers=(ClassName="IndominusRex_Character_BP_C",Multiplier=0.50)

With a value under 1, you can reduce the damage and the resistance.
A value greater than 1 increases the damage and the resistance.



Change Indominus Saddle Requirements:
Example Config with default values

OverrideNamedEngramEntries=(EngramClassName="EngramEntry_Saddle_Indom_C",EngramLevelRequirement=96,EngramPointsCost=0,EngramHidden=False,RemoveEngramPreReq=False)

EngramLevelRequirement=96 - Here you can change the required level.
EngramPointsCost=0 - Here you can change the required engram points.
EngramHidden=False - Change to "True" to hide the Indominus Saddle Engram.
RemoveEngramPreReq=False - Change to "True" so that the Giganotosaurus saddle does not have to be learned in order to build the Indominus Rex saddle.
Last edited by TreeZenDE; 30 Aug, 2017 @ 12:03pm