Основные настройрпаки сервера

Материал из ARK-HOSTER.RU | Документация хостинга
Версия от 13:56, 10 декабря 2020; Admin (обсуждение | вклад) (Новая страница: « <body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Server_Configuration rootpage-Server_Configuration skin-hydra action-view ooui-them…»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Server_Configuration rootpage-Server_Configuration skin-hydra action-view ooui-theme-fandom wiki-arksurvivalevolved_gamepedia site-ark-gamepedia show-ads"> <script type="text/javascript"> (function(i, s, o, g, r, a, m) { i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function() { (i[r].q = i[r].q || []).push(arguments) }

, i[r].l = 1 * new Date(); a = s.createElement(o), m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga'); ga('create', 'UA-39967852-75', 'auto', 'tracker0', []);

if (window.cdnprovider) { ga( 'tracker0.send', 'pageview', { 'dimension1': window.cdnprovider } ); } else { ga('tracker0.send', 'pageview'); }

</script>

<a href="/index.php?title=Special:AllSites&filter=official"><img src="/skins-ucp/Hydra/images/netbar/official-wiki.svg" width="90"></a>
 
<a href="/Special:UserLogin?returnto=Server+Configuration" id="login-link" class="aqua-link">Sign In</a>
<a href="/Special:CreateAccount" id="register-link" class="aqua-link">Register</a>

<a id="top"></a>

Server Configuration

From ARK: Survival Evolved Wiki

Jump to: <a href="#mw-head">navigation</a>, <a href="#p-search">search</a>

<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N6XD44P" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

The <a href="/ARK:_Survival_Evolved" title="ARK: Survival Evolved">ARK: Survival Evolved</a> dedicated server has a wide variety of configuration options that control its behavior and adjust many aspects of the game. These are options that can only be set at server startup.

Most options can be specified on the command line when launching the server or in the server's configuration files. Options that must be specified on the command line are noted below.

<input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none">

Contents

<label class="toctogglelabel" for="toctogglecheckbox"></label>
  • <a href="#Command_Line_Syntax">1 Command Line Syntax</a>
  • <a href="#Command_line_arguments">2 Command line arguments</a>
  • <a href="#Configuration_Files">3 Configuration Files</a>
    • <a href="#GameUserSettings.ini">3.1 GameUserSettings.ini</a>
      • <a href="#Ragnarok">3.1.1 Ragnarok</a>
      • <a href="#ARK:_Homestead_specific">3.1.2 ARK: Homestead specific</a>
    • <a href="#Game.ini">3.2 Game.ini</a>
      • <a href="#Turret_Limit_related">3.2.1 Turret Limit related</a>
      • <a href="#Engram_Entries">3.2.2 Engram Entries</a>
      • <a href="#Creature_Spawn_related">3.2.3 Creature Spawn related</a>
      • <a href="#PlayerBaseStatMultipliers">3.2.4 PlayerBaseStatMultipliers</a>
      • <a href="#PerLevelStatsMultiplier">3.2.5 PerLevelStatsMultiplier</a>
      • <a href="#ConfigOverrideItemCraftingCosts">3.2.6 ConfigOverrideItemCraftingCosts</a>
      • <a href="#ConfigOverrideSupplyCrateItems">3.2.7 ConfigOverrideSupplyCrateItems</a>
      • <a href="#ItemStatClamps">3.2.8 ItemStatClamps</a>
  • <a href="#Administrator_Whitelisting">4 Administrator Whitelisting</a>
  • <a href="#Cross-ARK_Data_Transfer">5 Cross-ARK Data Transfer</a>
  • <a href="#References">6 References</a>

Command Line Syntax

The server is currently launched via the command line using the following syntax to specify runtime options:

<b><executable></b> <b><map_name></b>?listen[?<b><option></b>=<b><value></b>][?<b><option></b>=<b><value></b>]...[?<b><option></b>=<b><value></b>] -UseBattleye <b>[<Argument>]</b><i></i>

Following the <executable> name, options are specified as a single string with each option separated by a question mark (?). Most options require a value argument. Refer to the option reference below for more details.

When an option is not specified, its default value is used automatically.

For example, to launch a server that:

  1. shows each player a crosshair
  2. shows each player their position on the map
  3. allows players to view themselves in third person
  4. enforces a minimum distance between player structures built by different players and tribes
  5. enables BattlEye

On a Linux host:

./ShooterGameServer TheIsland?listen?ServerCrosshair=True?MapPlayerLocation=True?AllowThirdPersonPlayer=True?TheMaxStructuresInRange=100 -UseBattlEye

On a Windows host:

start ShooterGameServer.exe "TheIsland?listen?ServerCrosshair=True?AllowThirdPersonPlayer=True?MapPlayerLocation=True?TheMaxStructuresInRange=100" -UseBattlEye

On Windows, quotation marks (") are used to ensure the command shell does not attempt to interpret any options itself.

Command line arguments

These are the options of the server launch command. For the syntax see above. Options starting with a ? (question mark) are appended directly one after another, options starting with a - (dash) have to be noted separately.

For Single Player: Right click in your Steam client on the game's name in the Library, choose Properties, tab General, button "Set Launch Options...", enter the options. But some options won't work this way, especially these starting with a ? (question mark). Try to put them into the section [ServerSettings] of the GameUserSettings.ini (for the location of this file see <a href="#Configuration_Files">Configuration Files</a>).

<tbody></tbody>
Argument Platform Effect
-allcores ? ?
-UseDynamicConfig all enables the use of the dynamic config, if you dont provide a customdynamicconfigurl the server will use the default dynamic config for that platform (the one used on official server)
NOTE: It takes about 15 minutes for the config to take effect after the file has been changed. When you want to "undo" the config you should be changing it back to whatever your default is.
Introduced in patch <a href="/307.2" title="307.2">307.2</a>
?customdynamicconfigurl="<link>" all direct link to config file e.g.: <a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="http://arkdedicated.com/dynamicconfig.ini">http://arkdedicated.com/dynamicconfig.ini</a> ;
currently only the following options are supported to be adjusted dynamically: TamingSpeedMultiplier, HarvestAmountMultiplier, XPMultiplier, MatingIntervalMultiplier, BabyMatureSpeedMultiplier, EggHatchSpeedMultiplier, BabyFoodConsumptionSpeedMultiplier, CropGrowthSpeedMultiplier, MatingSpeedMultiplier, BabyCuddleIntervalMultiplier, BabyImprintAmountMultiplier, CustomRecipeEffectivenessMultiplier, TributeItemExpirationSeconds, TributeDinoExpirationSeconds, EnableFullDump, GUseServerNetSpeedCheck, bUseAlarmNotifications and HexagonRewardMultiplier.
Introduced in patch <a href="/307.2" title="307.2">307.2</a>
?CustomLiveTuningUrl="<link>" PC direct link to the LiveTuning file e.g.: <a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="http://arkdedicated.com/DefaultOverloads.json">http://arkdedicated.com/DefaultOverloads.json</a> ; currently only allows to change the values of DecayDestructionPeriod & DecayDestructionPeriodMultiplier for any items in the game, for more information on how to use this system check out the official announcement: <a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="https://survivetheark.com/index.php?/forums/topic/569366-server-configuration-live-tuning-system/">https://survivetheark.com/index.php?/forums/topic/569366-server-configuration-live-tuning-system/</a>
-allowansel ? Activates <a href="/NVIDIA_Ansel" title="NVIDIA Ansel">NVIDIA Ansel</a> support, in single player. When connecting to a server, this will cause most lights (lamps) to no longer function, even when powered and lit.
Introduced in patch <a href="/246.0" title="246.0">246.0</a>
?AllowAnyoneBabyImprintCuddle=true Use this if you want ANYONE to be able to "take care" of a Baby Dino (cuddle etc.), not just whomever Imprinted on it.
?AllowCrateSpawnsOnTopOfStructures=true Servers can now allow from-the-air Supply Crates to appear on top of Structures, rather than being prevented by Structures.
?AllowFlyerCarryPvE=true Flyers on PvE can carry wild dinos.
?AllowFlyingStaminaRecovery=false Set to true if flyers should recover stamina when player is standing on instead riding.
?AllowMultipleAttachedC4=false Set to true to allow to attach more than one <a href="/C4" class="mw-redirect" title="C4">C4</a> per dino.
?AutoDestroyDecayedDinos=true Auto-destroy claimable decayed dinos on load, rather than have them remain around as Claimable.
Introduced in patch <a href="/255.0" title="255.0">255.0</a>
-automanagedmods All Automatic MOD download/installation/updating.
Introduced in patch <a href="/244.3" title="244.3">244.3</a>
bAppendItemSets=false Set to true to add item sets to supply crates, rather than overriding all their items. See <a href="#ConfigOverrideSupplyCrateItems">ConfigOverrideSupplyCrateItems</a>
Introduced in patch <a href="/273.7" title="273.7">273.7</a>
bAppendPreventIncreasingMinMaxItemSets=false Set to true to dynamically increase the amount of items dropped. See <a href="#ConfigOverrideSupplyCrateItems">ConfigOverrideSupplyCrateItems</a>
Introduced in patch <a href="/273.7" title="273.7">273.7</a>
?ClampItemSpoilingTimes=true Will clamp all spoiling times to the items' maximum spoiling times. Could potentially cause issues with Mods that alter spoiling time.
Introduced in patch <a href="/254.944" title="254.944">254.944</a>
?ClampItemStats=true Enable/Disable stats clamping for items. See <a href="#ItemStatClamps">ItemStatClamps</a> for more info.
Introduced in patch <a href="/255.0" title="255.0">255.0</a>
-ClearOldItems All Official PvP servers one-time Clearance of all old unequipped items (with the exception of blueprints, eatables, notes, and quest items), to ensure fairness after Item Duplication bug exploit. Server admins can enforce this once if they run with this command argument (will only work ONCE' on pre-update save games)
Introduced in patch 178.0
-culture=?? All You can directly override the language by using this commandline. List of currently supported language codes: ca, cs, da, de, en, es, eu, fi, fr, hu, it, ja, ka, ko, nl, pl, pt_BR, ru, sv, th, tr, zh, zh-Hans-CN, zh-TW
-d3d10 Windows Only The game is forced to use DX10 instead of DX11 by sm4. This will reduce the graphics engine to a lesser version, reducing some graphics, but raising the framerate.
?DestroyUnconnectedWaterPipes=true All After two days real-time the pipes will auto-destroy if unconnected to any non-pipe (directly or indirectly) and no allied player is nearby.
?DisableImprintDinoBuff=true Use this to disable the Dino Imprinting-Player Stat Bonus, if you don't like it (where whomever specifically imprinted on the Dino, and Raised it to have an Imprinting Quality, gets extra Damage/Resistance buff)
-EnableIdlePlayerKick All Cause characters that have not moved or interacted within the KickIdlePlayersPeriod to be kicked.
?EnableExtraStructurePreventionVolumes=true All Use this to completely disable building in specific resource-rich areas, in particular setup on TheIsland around the major mountains.
?ExtinctionEventTimeInterval=2592000 All Use this to enable extinction for 30 days. The number is the time in seconds.
?FastDecayUnsnappedCoreStructures=true Will decay unsnapped foundations/pillars at 5x speed.
Introduced in patch <a href="/245.987" title="245.987">245.987</a>
-ForceAllowCaveFlyers All Force Flyer dinos to be allowed into caves (Flyers able to go into caves by default on custom maps)
?ForceFlyerExplosives=true All Flyer (except <a href="/Quetzal" title="Quetzal">Quetzal</a> and <a href="/Wyvern" title="Wyvern">Wyvern</a> can't fly with <a href="/C4" class="mw-redirect" title="C4">C4</a> attached to it. Set this parameter to true to let them still fly.
Introduced in patch <a href="/252.83" title="252.83">252.83</a>
-ForceRespawnDinos All Launch with this command to destroy all wild creatures on a startup. (this will only destroy wild creatures that are NOT currently being tamed)
Introduced in patch <a href="/216.0" title="216.0">216.0</a>
-gameplaylogging All Survival of the Fittest servers can launch with this commandline option to output a dated log file to \Saved folder, which will contain a timestamped kill & winners log listing steam id, steam name, character name, etc. Handy for automatic Tournament records…
-insecure Windows Only Disable Valve Anti-Cheat (VAC) system.
-lowmemory All Launch options that reduces graphics and audio effects to save about 800 MB RAM, likely enabling 4GB RAM players to get past infinite-loading screens
-MapModID=######### All Dedicated servers can now optionally load custom maps via ModID diectly, rather than having to specify the map name directly, using this syntax (where the MapModID is the Steam Workshop FileID of your custom map, and the GameModIds are the Id’s of the stacked mods you wish to use, in order)
Introduced in patch <a href="/193.0" title="193.0">193.0</a>
?MaxPersonalTamedDinos=Number Activates a per-tribe dino tame limit. (500 on official servers)
Introduced in patch <a href="/255.0" title="255.0">255.0</a>
?MinimumDinoReuploadInterval=xxxx All Number of seconds cooldown between allowed Dino re-uploads (defaults to 0, set to 43200 on Official Servers which is 12 hours).
-noantispeedhack All Anti speedhack detection is now enabled by default — to disable it, use this server commandline
Introduced in patch <a href="/218.5" title="218.5">218.5</a>
-NoBattlEye Run server without BattleEye
-NoBiomeWalls Eliminates the upcoming-Biome-change area wall effects as introduced in an unversioned addition of v<a href="/241.5" title="241.5">241.5</a>.
Introduced in patch <a href="/242.7" title="242.7">242.7</a>
-nocombineclientmoves All Server player-move-physics optimization is now enabled by default (improves perf) — to disable it, use this server commandline
Introduced in patch <a href="/218.5" title="218.5">218.5</a>
-nofishloot All disable non-meat Fish Loot when using <a href="/Fishing_Rod" title="Fishing Rod">Fishing Rod</a>
Introduced in patch <a href="/245.9" title="245.9">245.9</a>
-noninlinesaveload All Fixed a savegame corruption case with large savegames: this is experimental, so try with this command, if you have any saves that don’t load. We’ll formally roll this loader change out in a subsequent patch after we’re 100% certain it has no side effects.
-nomansky All Lots of detailed sky features are disabled, such as clouds and starry night sky. This decreases all of those but you can still have them. You still obtain the stars, the sun, and the moon. This just helps you remove the sparkling stars that make you sightless at night
-nomemorybias Reduced client game memory usage by about 600 MB system and 600 MB GPU RAM! (all meshes now stream LOD's dynamically). This could potentially have a small runtime performance impact, so to use the old method (more RAM usage but no potential performance loss), launch with -nomemorybias
?NonPermanentDiseases=true This will make Diseases not permanent (you will then lose them if you respawn).
-NotifyAdminCommandsInChat
-oldsaveformat Defaulted to using "new save format", which is approximately 4x faster and 50% smaller. If you want to use the old save format, launch with -oldsaveformat.
?OnlyAutoDestroyCoreStructures=true You can launch an autodestroy enabled server with this opion to prevent any non-core/non-foundation structures from autodestroying (however they'll still get autodestroyed if a floor that they're on gets autodestroyed, of course). Official PvE Servers use this option.
Introduced in patch <a href="/245.989" title="245.989">245.989</a>
?OnlyDecayUnsnappedCoreStructures=true If set, only unsnapped core structures will decay. Useful for eliminating lone pillar/foundation spam on PvP Servers.
Introduced in patch <a href="/245.986" title="245.986">245.986</a>
?OverrideOfficialDifficulty=5.0 Allows you to override the default server difficulty level of 4 with 5 to match the new official server difficulty level.
Introduced in patch <a href="/247.95" title="247.95">247.95</a>
?OverrideStructurePlatformPrevention=true Use this override if you want <a href="/Auto_Turret" title="Auto Turret">turret</a> or <a href="/Wooden_Spike_Wall" title="Wooden Spike Wall">spike</a> structures to be buildable and functional on <a href="/Category:Platform_Saddles" title="Category:Platform Saddles">platform saddles</a>.
Introduced in patch <a href="/242.0" title="242.0">242.0</a>, changed in patch <a href="/247.999" title="247.999">247.999</a>
?OxygenSwimSpeedStatMultiplier=1.0 Use this to set how swim speed is multiplied by level spent in oxygen. The value was reduced by 80% in <a href="/256.0" title="256.0">256.0</a>.
Introduced in patch <a href="/256.3" title="256.3">256.3</a>
?PreventDiseases=true This will completely disable Diseases on the server. (thus far just 'Swamp Fever').
?PreventDownloadSurvivors=False
?PreventDownloadItems=False
?PreventDownloadDinos=False
?PreventUploadSurvivors=False
?PreventUploadItems=False
?PreventUploadDinos=False
Prevent <a href="#Cross-ARK_Data_Transfer">Cross-ARK Data Transfer</a>
Introduced in patch <a href="/246.0" title="246.0">246.0</a>
-PreventHibernation In both Single Player and Non-Dedicated Servers creatures in inactive zones are in hibernation instead of in stasis. Use this option to prevent hibernation at the cost of performance and memory usage.
Introduced in patch <a href="/259.0" title="259.0">259.0</a>
?PreventOfflinePvP=true Use this to enable the offline raiding prevention option.
?PreventOfflinePvPInterval=900 That would be a 15 min wait before a tribe/players dinos/structures become invulnerable/inactive after they log off. (if Tribe, requires ALL Tribe members logged off!)
?PreventSpawnAnimations=false Setting to true lets player characters (re)spawn without the wake up animation.
Introduced in patch <a href="/261.0" title="261.0">261.0</a>
?PvEAllowStructuresAtSupplyDrops=false Set to true to allow building near supply drop points in PvE mode.
Introduced in patch <a href="/247.999" title="247.999">247.999</a>
?PvEDinoDecayPeriodMultiplier=1.0 Dino PvE Auto-Claim time multiplier
Introduced in patch <a href="/241.4" title="241.4">241.4</a>
?PvPDinoDecay=true Set to true to prevent dinosaurs from decaying while the Offline Raiding Prevention is active.
?PvPStructureDecay=true Set to true to prevent structure from decaying while the Offline Raiding Prevention is active.
Introduced in patch <a href="/206.0" title="206.0">206.0</a>
?RCONEnabled=True Enables RCON, needs ?RCONPort=32330 and ?ServerAdminPassword=123 to work
Introduced in patch <a href="/185.0" title="185.0">185.0</a>
?RCONPort=32330 specifies the connection port for the RCON is needed for RCOn to work, you need to manually enable the specified port, any not used port can be used
Introduced in patch <a href="/185.0" title="185.0">185.0</a>
?ShowFloatingDamageText=true Use this to enable RPG-style popup text stat mode.
-server ? ?
?ServerAdminPassword=passwort If specified, players must provide this password (via the in-game console) to gain access to administrator commands on the server. Also used to log in via RCON.
-servergamelog All Enable Server Admin Logs (including RCON support) use RCON command “getgamelog” to print 100 entries at a time also outputs to dated file in in “\Logs”, adjust max length of RCON buffer with commandline: “?RCONServerGameLogBuffer=600”
Introduced in patch <a href="/224.0" title="224.0">224.0</a>
-servergamelogincludetribelogs
-ServerRCONOutputTribeLogs Allows tribe chat to be displayed in rcon, in addition to global chat.
-sm4 Windows Only The game is forced to use Shader Model 4 instead of the Shader Model 5 as usual. Well, there is no much difference, the game still looks and feels the same, but you can obtain better performance (Windows only?) (reported to increase frames but changes the game lighting)
-StasisKeepControllers AI Controllers to once again be destroyed on Stasis, too much memory overhead to keeping them around on large maps. For servers with a lot of RAM, they can now optionally gain performance by running with this to keep the AI's in memory.
-StructureDestructionTag=DestroySwampSnowStructures All One-Time Auto-Structure Demolish on Swamp and Snow Zones: To do this, which you can only execute once after updating to v216, run your server or game with this commandline
?TheMaxStructuresInRange=10500 new value for maximum allowed structures on a server. replaced NewMaxStructuresInRange
Introduced in patch <a href="/252.1" title="252.1">252.1</a>
?TribeLogDestroyedEnemyStructures=true By default enemy structure destruction (for the victim tribe) is not displayed in the tribe Logs, set this to true to enable it.
Introduced in patch <a href="/247.93" title="247.93">247.93</a>
-USEALLAVAILABLECORES All All of your CPU cores will be used, if all of them are not being utilized after using this launch option, then try to disable it!
-usecache All ~70% faster loading speed option. Choose “Experiment Fast Load Cache” launch option (use add “-usecache” to your launch commandline manually). After the first & second times that you start the game & load will be still be slow, but the third time onwards will be fast. This may be deprecated, as of <a href="/188.2" title="188.2">188.2</a> as it was added, by default, for the PrimalData. It was also supposed to be added to all maps, but has never been clarified as to if this occurred.
?UseOptimizedHarvestingHealth=true "optimized" server with high HarvestAmountMultiplier (but less rare items).
?bRawSockets ? Direct UDP socket connections rather than Steam P2P, for significantly increased server network performance. Need to manually open ports 7777 & 7778 if you do so in order for your server to accept connections.
Introduced in patch <a href="/213.0" title="213.0">213.0</a>, disabled since v311.78
-nonetthreading option for bRawSockets servers to only utilize a single thread for networking (useful to improve performance for machines with more servers than cpu cores, on Linux in particular)
Introduced in patch <a href="/271.15" title="271.15">271.15</a> seems to be deprecated with patch <a href="/271.17" title="271.17">271.17</a>
-forcenetthreading Defaulted dedicated server ?bRawSockets mode to not use threaded networking, seemed to generally be a net performance loss in our analysis. Use this to forcefully enable it.
Disabled since v311.78
-vday All Activate Valentine’s Day Event (2x Mateboost Range, 3x Mating Speed/Mating Recovery, 3x Baby/Egg Maturation Speed, 1/3rd Baby Food Consumption).

Possibly deprecated; use -ActiveEvent=vday instead.

-webalarm All Activate Web alarms when important things happen to a tribe, such as Tripwire Alarms going off and Babies being born. See <a href="/Web_Notifications" title="Web Notifications">Web Notifications</a> for details.
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
-exclusivejoin All Activate a whitelist only mode on the server that only lets players join if added to the allow list. Not to be confused with "Admin Whitelisting" which uses "AllowedCheaterSteamIDs.txt" to allow players to cheat. This option uses "PlayersJoinNoCheckList.txt" to allow people to join but not give them cheats. If the file does not exist in your Linux/Win64 Binaries folder, create it and add the Steam64 IDs of the players you wish to be allowed to join your server. Path; "\ShooterGame\Binaries\Win64\" "/ShooterGame/Binaries/Linux/".

You will need to restart your server, if you add new lines to the file while it is running. You can however use "Cheat AllowPlayerToJoinNoCheck 12345678901234567" in game, to add a new player to the whitelist. This method will also save to the file, so you don't need to reboot the server.

-ActiveEvent=<eventname> PC enables a specified event
Only one can be specified and active at a time
<tbody> </tbody>
eventnameDescription
EasterAllows for the <a href="/ARK:_Eggcellent_Adventure_5" title="ARK: Eggcellent Adventure 5">Easter Event</a> to be activated
ArkaeologyAllows for the <a href="/ARK:_ARKaeology" title="ARK: ARKaeology">Arkaeology Event</a> to be activated.
ExtinctionChroniclesAllows for the <a href="/Extinction_Chronicles" title="Extinction Chronicles">Extinction Chronicles Event</a> to be activated.
WinterWonderlandAllows for <a href="/ARK:_Winter_Wonderland_4" title="ARK: Winter Wonderland 4">Winter Wonderland 2019 Event</a> to be activated.
vdayAllows for <a href="/ARK:_Love_Evolved" title="ARK: Love Evolved">Love Evolved</a> to be activated.
SummerAllows for <a href="/ARK:_Summer_Bash_2020" title="ARK: Summer Bash 2020">Summer Bash 2020 Event</a> to be activated.
FearEvolvedAllows for <a href="/ARK:_Fear_Evolved_4" title="ARK: Fear Evolved 4">ARK: Fear Evolved 4</a> to be activated.
TurkeyTrialAllows for <a href="/ARK:_Turkey_Trial_4" title="ARK: Turkey Trial 4">ARK: Turkey Trial 4</a> to be activated.
birthdayAllows for <a href="/ARK:_5th_Anniversary" title="ARK: 5th Anniversary">ARK: 5th Anniversary</a> to be activated.
?GameModIds=ModID1,ModID2 PC Specifies the order and which mods are loaded, ModIDs need to be comma seperated
Introduced in patch <a href="/190.0" title="190.0">190.0</a>
?MaxTamedDinos=4000 Sets the maximum number of tamed Dinos on a Server, this is a global cap.
Introduced in patch <a href="/191.0" title="191.0">191.0</a>
?SpectatorPassword=mypassword To use non-admin spectator, the server must specify a spectator password. Then any client can use these console commands: requestspectator <password> and stopspectating. See patch <a href="/191.0" title="191.0">191.0</a> for more information and hotkeys.
?AllowCaveBuildingPVE=true If set to True, allows building in caves when PvE mode is also enabled.
Introduced in patch <a href="/194.0" title="194.0">194.0</a>, seems to have been removed from the command-line options before patch <a href="/241.5" title="241.5">241.5</a>.
?AdminLogging=true logs all admin commands to ingame chat
Introduced in patch <a href="/206.0" title="206.0">206.0</a>
?ForceAllStructureLocking=true enabling this will default lock all structures
Introduced in patch <a href="/222.0" title="222.0">222.0</a>
?AutoDestroyOldStructuresMultiplier=1.0 Server Option to allow Auto-Destroying Structures after sufficient "no nearby Tribe" time has passed (defined as a multiplier of the Allow Claim period). Useful for servers to clear off abandoned structures automatically over time if they wish
Introduced in patch <a href="/222.0" title="222.0">222.0</a>
?RCONServerGameLogBuffer=600 determines how many lines of gamelogs are send over RCON
Introduced in patch <a href="/224.0" title="224.0">224.0</a>
?PreventTribeAlliances=true Enabling this will prevent tribes from creating Alliances
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
?AllowRaidDinoFeeding To allow your Server's Titanosaurs to be permanently tamed (namely allow them to be Fed)
However, note that TheIsland currently only spawns 3 Titanosaurs whatsoever, so 3 Tamed ones would ultimately block any more Wild ones from spawning.
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
?AllowHitMarkers=false Use this to disable optional hitmarkers for ranged attacks
Introduced in patch <a href="/245.0" title="245.0">245.0</a>
?ServerCrosshair=false Use this to disable the Crosshair on your Server
Introduced in patch <a href="/245.0" title="245.0">245.0</a>
?PreventMateBoost=true Option to disable Dino Mate Boost
Introduced in patch <a href="/247.0" title="247.0">247.0</a>
?ServerAutoForceRespawnWildDinosInterval Force Respawn of Wild Dinos on Server Restart. Enabled by default on official servers, this will force weekly respawns of dinos on all servers to prevent certain dino types (like the Basilo and Spino) from becoming depopulated on long running servers.
NOTE in some cases this may not work more than once
Introduced in patch <a href="/265.0" title="265.0">265.0</a>
?PersonalTamedDinosSaddleStructureCost=19 determines the amount of dinoslots a platform saddle will use towards the tribe dino limit
Introduced in patch <a href="/265.0" title="265.0">265.0</a>
-structurememopts PC enables structure memory optimizations
NOTE avoid using it when running structure-related mods (until they get updated) as it can break the snappoints of these mod structures
Introduced in patch <a href="/295.108" title="295.108">295.108</a>
-nodinos PC prevents wild dinos from being spawned
NOTE you need to wipe dinos (cheat destroywilddinos) after adding this on a not fresh server
-noundermeshchecking PC Will turn off the anti meshing system entirely
Introduced in patch <a href="/304.445" title="304.445">304.445</a>
-noundermeshkilling PC Will turn off the anti meshing player kills (but still allow teleporting)
Introduced in patch <a href="/304.445" title="304.445">304.445</a>
-AutoDestroyStructures PC Enables auto destruction of old structures.
Timer can be adjusted with AutoDestroyOldStructuresMultiplier
-crossplay PC enables Crossplay (between EPIC and Steam) on Dedicated Server
Introduced in patch <a href="/311.74" title="311.74">311.74</a>
-epiconly PC enables Epic Game Store only players to connect to the Dedicated Server
Introduced in patch <a href="/311.74" title="311.74">311.74</a>
-UseVivox PC enables Vivox on Steam only servers
default for EPIC servers can be enabled for Steam server
Introduced in patch <a href="/311.74" title="311.74">311.74</a>
-PublicIPForEpic=<IPAddress> PC this is the public IP that EGS clients will attempt to connect to, if this command line is missing and -Multihome is specified, then EGS clients will attempt to connect to the Multihome IP; Note that if you're using Multihome and specify a non-public IP address, then players will not be able to connect to your server using EGS. Make sure to set a public IP address (e.g WAN or external)
-high PC runs game (ARK:SE) as a high-priority process
-noaafonts PC removes fonts anitalising
?IgnoreLimitMaxStructuresInRangeTypeFlag=false PC Removes the limit of 150
-UseStructureStasisGrid PC enables the structure stasis grid to improve server performance on large bases with lots of players, more info can be found here: <a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="https://survivetheark.com/index.php?/articles.html/community-crunch-241-fear-evolved-4-live-tuning-system-network-improvements-and-more-r1652/">https://survivetheark.com/index.php?/articles.html/community-crunch-241-fear-evolved-4-live-tuning-system-network-improvements-and-more-r1652/</a>
Introduced in patch <a href="/314.5" title="314.5">314.5</a>

Configuration Files

Most options can also be specified in the games configuration files. The location of the configuration files varies by platform

<tbody></tbody>
Platform Configuration File Location
Linux GameUserSettings.ini ShooterGame/Saved/Config/LinuxServer/
Linux Game.ini ShooterGame/Saved/Config/LinuxServer/
Windows GameUserSettings.ini ShooterGame/Saved/Config/WindowsServer/
Windows Game.ini ShooterGame/Saved/Config/WindowsServer/

The GameUserSettings.ini file contains options for both the game client and the game server. Options for the game client are not used by the server. Server options are specified in the section labeled [ServerSettings], which is usually located at the bottom of the file.

The Game.ini file is used for more advanced modifications, such as changing engram points or XP rewarded per level, disabling specific content, or rebalancing depending on player tastes.

For all supported platforms, options are listed one per line using the same basic syntax:

<b><option></b>=<b><value></b>

All options in the configuration file require a value. If an option is not listed in the configuration file, its default value is used automatically.

To configure a game server with the same configuration as shown in <a href="#Command_Line_Syntax">Command Line Syntax</a> above:

ServerCrosshair=True
AllowThirdPersonPlayer=True
MapPlayerLocation=True
TheMaxStructuresInRange=100

With these options in the configuration file, the server can be launched with a much shorter command line. For Linux:

./ShooterGameServer TheIsland?listen

For Windows:

start ShooterGameServer.exe "TheIsland?listen"

GameUserSettings.ini

To easy create this file, you can use this <a target="_blank" rel="nofollow noreferrer noopener" class="external text" href="http://ini.arkforum.de/index.php?lang=en&mode=all">ini-Generator</a>.

<thead></thead><tbody> </tbody><tfoot></tfoot>
Option Value Type Default Effect
<map_name> string None (command line only) Specifies the map to use for gameplay
Note: This option is mandatory and must be the first option specified on the command line. Map options are TheIsland, TheCenter (requires DLC), ScorchedEarth_P (requires DLC), Ragnarok (requires DLC), Aberration_P (requires DLC), Extinction (requires DLC), Valguero_P (requires DLC) and Genesis (requires DLC), CrystalIsles (requires DLC)
NOTE: A Mod map may have a different map name then here specified, check the modpage or contact the author of the mod for the exact name.
listen N/A None (command line only) Listen for (and accept) player connections from other systems
Note: This option is mandatory for multiplayer servers.
MaxTributeDinos integer 20 Slots for uploaded creatures
Note: Some player claimed maximum 273 to be safe cap and more will corrupt profile/cluster and lead to loose of all storaged creatures but it need to be checked
MaxTributeItems integer 50 Slots for uploaded items and resources
Note: Some player claimed maximum 154 to be safe cap and more will corrupt profile/cluster and lead to loose of all storaged items and resources but it need to be checked
alwaysNotifyPlayerJoined boolean False Players will always get notified if someone joins the server
alwaysNotifyPlayerLeft boolean False Players will always get notified if someone leaves the server
allowThirdPersonPlayer boolean False Enables 3rd Person view
globalVoiceChat boolean False Voice chat turns global
ShowMapPlayerLocation boolean False Show each player their own precise position when they view their map
noTributeDownloads boolean False Disables downloading characters from other servers
proximityChat boolean False Only players near each other can see their chat messages
serverPVE boolean False Disables <a href="/Player_vs._Player" class="mw-redirect" title="Player vs. Player">PvP</a>, enables <a href="/Player_vs._Environment" class="mw-redirect" title="Player vs. Environment">PvE</a>
serverHardcore boolean False Enables <a href="/Hardcore" class="mw-redirect" title="Hardcore">hardcore</a> mode (player characters revert to level 1 upon death)
serverForceNoHud boolean False HUD always disabled
DisableStructureDecayPvE boolean False Disable the gradual (7 days) decay of player structures
Introduced in patch <a href="/173.0" title="173.0">173.0</a>
DisableDinoDecayPvE boolean False Disable the gradual (7 days) decay of dinosaur ownership. Without this set to true, every dinosaur can be claimed by any player.
Introduced in patch <a href="/206.0" title="206.0">206.0</a>
AllowFlyerCarryPvE boolean False Permit flying dinosaurs to pick up other dinosaurs and players when mounted by a player in <a href="/Player_vs._Environment" class="mw-redirect" title="Player vs. Environment">PvE</a>
Introduced in patch <a href="/173.0" title="173.0">173.0</a> but changed from bAllowFlyerCarryPVE to AllowFlyerCarryPVE
TheMaxStructuresInRange integer 10500 Specifies the maximum number of structures that can be constructed within a certain (currently hard-coded) range.
Introduced in patch <a href="/252.1" title="252.1">252.1</a> replacing the old value NewMaxStructuresInRange
bAllowPlatformSaddleMultiFloors boolean False Set to true to allow multiple platform floors.
Introduced in patch <a href="/260.0" title="260.0">260.0</a>
MaxPlayers integer 70 Specifies the maximum number of players that can play on the server simultaneously. Must be placed under [/script/engine.gamesession] in GameUserSettings.ini to function when not used in the command line.
DifficultyOffset float 0.2 Specifies the <a href="/Difficulty" title="Difficulty">difficulty level</a>.
ServerPassword string None If specified, players must provide this password to join the server.
ServerAdminPassword string None If specified, players must provide this password (via the in-game console) to gain access to administrator commands on the server.
SpectatorPassword string None To use non-admin spectator, the server must specify a spectator password. Then any client can use these console commands: requestspectator <password> and stopspectating. See patch <a href="/191.0" title="191.0">191.0</a> for more information and hotkeys.
DayCycleSpeedScale float 1.0 Specifies the scaling factor for the passage of time in the ARK, controlling how often day changes to night and night changes to day. The default value 1 provides the same cycle speed as the singleplayer experience (and the official public servers). Values lower than 1 slow down the cycle; higher values accelerate it. Base time when value is 1 appears to be 1 minute real time equals approx. 28 minutes game time. Thus, for an approximate 24 hour day/night cycle in game, use .035 for the value.
NightTimeSpeedScale float 1.0 Specifies the scaling factor for the passage of time in the ARK during night time. This value determines the length of each night, relative to the length of each day (as specified by DayTimeSpeedScale. Lowering this value increases the length of each night.
DayTimeSpeedScale float 1.0 Specifies the scaling factor for the passage of time in the ARK during the day. This value determines the length of each day, relative to the length of each night (as specified by NightTimeSpeedScale. Lowering this value increases the length of each day.
DinoDamageMultiplier float 1.0 Specifies the scaling factor for the damage dinosaurs deal with their attacks. The default value 1 provides normal damage. Higher values increase damage. Lower values decrease it.
PlayerDamageMultiplier float 1.0 Specifies the scaling factor for the damage players deal with their attacks. The default value 1 provides normal damage. Higher values increase damage. Lower values decrease it.
StructureDamageMultiplier float 1.0 Specifies the scaling factor for the damage structures deal with their attacks (i.e. spiked walls). The default value 1 provides normal damage. Higher values increase damage. Lower values decrease it.
PlayerResistanceMultiplier float 1.0 Specifies the scaling factor for the resistance to damage players receive when attacked. The default value 1 provides normal damage. Higher values decrease resistance, increasing damage per attack. Lower values increase it, reducing damage per attack. A value of 0.5 results in a player taking half damage while a value of 2.0 would result in taking double normal damage.
DinoResistanceMultiplier float 1.0 Specifies the scaling factor for the resistance to damage dinosaurs receive when attacked. The default value 1 provides normal damage. Higher values decrease resistance, increasing damage per attack. Lower values increase it, reducing damage per attack. A value of 0.5 results in a dino taking half damage while a value of 2.0 would result in a dino taking double normal damage.
StructureResistanceMultiplier float 1.0 Specifies the scaling factor for the resistance to damage structures receive when attacked. The default value 1 provides normal damage. Higher values decrease resistance, increasing damage per attack. Lower values increase it, reducing damage per attack. A value of 0.5 results in a structure taking half damage while a value of 2.0 would result in a structure taking double normal damage.
XPMultiplier float 1.0 Specifies the scaling factor for the experience received by players, tribes and dinosaurs for various actions. The default value 1 provides the same amounts of experience as in the singleplayer experience (and official public servers). Higher values increase XP amounts awarded for various actions; lower values decrease it.
In <a href="/313.5" title="313.5">313.5</a> an additional hardcoded multiplier of 4 was activated.
PvEStructureDecayPeriodMultiplier float 1.0 Specifies the scaling factor for the decay rate of player structures in PvE mode. The specific effect(s) of this option and its range of valid values are unknown as of this writing.<a href="#cite_note-extended_game_options-1">[1]</a>
PvEStructureDecayDestructionPeriod 0 Specifies the time required for player structures to decay in PvE mode. The specific effect(s) of this option and its range of valid values are unknown as of this writing.<a href="#cite_note-extended_game_options-1">[1]</a>
PvEDinoDecayPeriodMultiplier float 1.0 ... Introduced in patch <a href="/206.0" title="206.0">206.0</a>
TamingSpeedMultiplier float 1.0 Specifies the scaling factor for dinosaur taming speed. Higher values make taming faster.
HarvestAmountMultiplier float 1.0 Specifies the scaling factor for yields from all harvesting activities (chopping down trees, picking berries, carving carcasses, mining rocks, etc.). Higher values increase the amount of materials harvested with each strike.
HarvestHealthMultiplier float 1.0 Specifies the scaling factor for the "health" of items that can be harvested (trees, rocks, carcasses, etc.). Higher values increase the amount of damage (i.e. "number of strikes") such objects can withstand before being destroyed, which results in higher overall harvest yields.
MaxPlatformSaddleStructureLimit integer Changes the maximum number of platformed-creatures/rafts allowed on the ARK (a potential performance cost)
Example: MaxPlatformSaddleStructureLimit=10 would only allow 10 platform saddles / rafts across the entire ark
Introduced in patch <a href="/212.1" title="212.1">212.1</a>
PerPlatformMaxStructuresMultiplier float 1.0 Higher number increases (on a percentage scale) max number of items place-able on saddles and rafts
Example: PerPlatformMaxStructuresMultiplier=1.5
Introduced in patch <a href="/211.0" title="211.0">211.0</a>
MaxGateFrameOnSaddles integer 0 Defines the maximum amount of gateways allowed on platform saddles.
Example: MaxGateFrameOnSaddles=2
Would prevent players from placing more than 2 gateways on their platform saddles. This setting is not retroactive, meaning existing builds won't be affected. Set to 0 to not impose any limits.
Official PVP servers have it set to 2.
Introduced in patch <a href="/312.65" title="312.65">312.65</a>
ResourcesRespawnPeriodMultiplier float 1.0 Specifies the scaling factor for the respawn rate for resource nodes (trees, rocks, bushes, etc.). Lower values cause nodes to respawn more frequently.
PlayerCharacterWaterDrainMultiplier float 1.0 Specifies the scaling factor for player characters' water consumption. Higher values increase water consumption (player characters get thirsty faster).
PlayerCharacterFoodDrainMultiplier float 1.0 Specifies the scaling factor for player characters' food consumption. Higher values increase food consumption (player characters get hungry faster).
PlayerCharacterStaminaDrainMultiplier float 1.0 Specifies the scaling factor for player characters' stamina consumption. Higher values increase stamina consumption (player characters get tired faster).
PlayerCharacterHealthRecoveryMultiplier float 1.0 Specifies the scaling factor for player characters' health recovery. Higher values increase the recovery rate (player characters heal faster).
DinoCharacterFoodDrainMultiplier float 1.0 Specifies the scaling factor for dinosaurs' food consumption. Higher values increase food consumption (dinosaurs get hungry faster). It also affects the taming-times.
DinoCharacterStaminaDrainMultiplier float 1.0 Specifies the scaling factor for dinosaurs' stamina consumption. Higher values increase stamina consumption (dinosaurs get tired faster).
DinoCharacterHealthRecoveryMultiplier float 1.0 Specifies the scaling factor for dinosaurs' health recovery. Higher values increase the recovery rate (dinosaurs heal faster).
DinoCountMultiplier float 1.0 Specifies the scaling factor for dinosaur spawns. Higher values increase the number of dinosaurs spawned throughout the ARK.
AllowCaveBuildingPvE boolean False If set to True, allows building in caves when PvE mode is also enabled.
Introduced in patch <a href="/194.0" title="194.0">194.0</a>
BanListURL URL "<a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="http://arkdedicated.com/banlist.txt">http://arkdedicated.com/banlist.txt</a>" Use the official global ban list, or point to any online ban list that you want. Must be enclosed in double quotes. Before <a href="/279.233" title="279.233">279.233</a> the URL was <a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="http://playark.com/banlist.txt">http://playark.com/banlist.txt</a>
Introduced in patch <a href="/201.0" title="201.0">201.0</a>
PvPStructureDecay boolean false Turns off structure decay on PvP servers.
TributeItemExpirationSeconds integer 86400 Set the expiration timer for uploaded items.
TributeDinoExpirationSeconds integer 86400 Set the expiration timer for uploaded dinos.
TributeCharacterExpirationSeconds integer 86400 Set the expiration timer for uploaded survivors.
AutoSavePeriodMinutes float 15.0 Set interval for automatic saves
NPCNetworkStasisRangeScalePlayerCountStart
NPCNetworkStasisRangeScalePlayerCountEnd
NPCNetworkStasisRangeScalePercentEnd float
CrossARKAllowForeignDinoDownloads boolean false if set to true, you will be able to tribute download non-native creatures on the <a href="/Aberration" title="Aberration">Aberration</a> map
Introduced in patch <a href="/275.0" title="275.0">275.0</a>
DisablePvEGamma boolean false Prevents use of console command "gamma" in PvE mode
Introduced in patch <a href="/207.0" title="207.0">207.0</a>
EnablePvPGamma boolean false Allow use of console command "gamma" in PvP mode
Introduced in patch <a href="/174.3" title="174.3">174.3</a>
TribeNameChangeCooldown integer 15 Cooldown, in minutes, in between tribe name changes
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
AllowHideDamageSourceFromLogs boolean false Allows the hiding of damage sources in tribe logs.
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
RandomSupplyCratePoints boolean false If true, supply drops are in random locations. NOTE: This setting is known to cause artifacts becoming inaccesable on [Ragnarok] if active
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
DisableWeatherFog boolean false If true, disables fog.
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
ActiveMods integer ModID Specifies the order and which mods are loaded, ModIDs need to be comma seperated and in one line
Introduced in patch <a href="/190.0" title="190.0">190.0</a>
AdminLogging boolean true logs all admin commands to ingame chat
Introduced in patch <a href="/206.0" title="206.0">206.0</a>
ClampResourceHarvestDamage boolean false Limit the damage caused by a dino to a resource for harvesting.
Introduced in patch <a href="/182.0" title="182.0">182.0</a>
ItemStackSizeMultiplier float 1.0 allow increasing or decreasing global item stack size, this means all default stacksizes will be multiplied by the value given
Introduced in patch <a href="/291.100" title="291.100">291.100</a>
PlatformSaddleBuildAreaBoundsMultiplier float 1.0 increasing the number allows structures being placed further away from the platform
bForceCanRideFliers boolean false allows flyers to be used on maps where they normally are disabled NOTE: if you set it to false it will disable flyers on any map
AllowTekSuitPowersInGenesis boolean false enable or disable TEK suit powers in <a href="/Genesis_Part_1" class="mw-redirect" title="Genesis Part 1">Genesis Part 1</a>
EnableCryoSicknessPVE boolean false Enable/Disable Crypod cooldown timer when deploying a creature. If false, deployed creatures do not experience cryosickness.
Introduced in patch <a href="/307.56" title="307.56">307.56</a>
EnableCryopodNerf boolean false Enable/Disable Cryosickness when deploying a creature. The following settings need to be set also: <a href="#CryopodNerfDamageMult">CryopodNerfDamageMult</a> & <a href="#CryopodNerfDuration">CryopodNerfDuration</a>.
If true, there is no Crypod cooldown timer, and creatures do not become unconscious.
Introduced in patch <a href="/309.53" title="309.53">309.53</a>
CryopodNerfDuration integer 10 Amount of time, in seconds, Cryosickness lasts after deploying a creature from a Cryopod. If <a href="#EnableCryoSicknessPVE">EnableCryoSicknessPVE</a> is enabled, it will override this line.
Introduced in patch <a href="/309.53" title="309.53">309.53</a>
CryopodNerfDamageMult float 0.01 Reduces the amount of damage delt by the creature after it is deployed from the cryopod, as a percentage of total damage output, and for the length of time set by <a href="#CryopodNerfDuration">CryopodNerfDuration</a>. <a href="#CryopodNerfDuration">CryopodNerfDuration</a> needs a valid value.
CryopodNerfDamageMult=0.01 means 99% of the damage is removed
Introduced in patch <a href="/309.53" title="309.53">309.53</a>
CryopodNerfIncomingDamageMultPercent float 0.25 Increases the amount of damage taken by the creature after it is deployed from the cryopod, as a percentage of total damage received, and for the length of time set by <a href="#CryopodNerfDuration">CryopodNerfDuration</a>.
CryopodNerfIncomingDamageMultPercent=0.25 means a realeased tame takes 25% more damage while the debuff lasts
Introduced in patch <a href="/310.11" title="310.11">310.11</a>
AllowSharedConnections boolean false
AllowSharedConnections=False means family sharing is disabled
Introduced in patch <a href="/312.73" class="mw-redirect" title="312.73">312.73</a>
MaxTamedDinos integer 4000 Sets the maximum number of tamed Dinos on a Server, this is a global cap.
Introduced in patch <a href="/191.0" title="191.0">191.0</a>
NewMaxStructuresInRange integer 6000 Specifies the maximum number of structures that can be constructed within a certain (currently hard-coded) range.
Introduced in patch <a href="/188.0" title="188.0">188.0</a> and deprecated with patch <a href="/252.1" title="252.1">252.1</a> by TheMaxStructuresInRange
MaxStructuresInRange integer 1300? Specifies the maximum number of structures that can be constructed within a certain (currently hard-coded) range.
Introduced in patch <a href="/173.0" title="173.0">173.0</a> and deprecated with patch <a href="/188.0" title="188.0">188.0</a> by NewMaxStructuresInRange

Ragnarok

The following options are only available when playing the DLC <a href="/Ragnarok" title="Ragnarok">Ragnarok</a>.

They need to be set in the [Ragnarok] section (if you dont have one you can create it at the bottom) of the GameUserSettings.ini file.

NOTE: You don't need to use these settings. The game will use the default values if these settings aren't specified.

<thead></thead><tbody> </tbody><tfoot></tfoot>
Option Value Type Default Effect
AllowMultipleTamedUnicorns boolean false false = one unicorn on the map at a time, true = one wild and unlimited tamed Unicorns on the map.
*This setting currently does not seem to work properly
UnicornSpawnInterval integer 24 How long the game should wait before spawning a new <a href="/Unicorn" title="Unicorn">Unicorn</a> if the wild one is killed (or tamed, if AllowMultipleTamedUnicorns is enabled). This value sets the minimum amount of time (in hours), and the maximum is equal to 2x this value.
VolcanoIntensity float 1 The lower the value, the more intense the volcano's eruption will be. Recommended to leave at 1. The minimum value is 0.25, and for multiplayer games, it should not go below 0.5. Very high numbers will basically disable the flaming rocks flung out of the volcano.
VolcanoInterval integer 0 0 = 5000 (min) - 15000 (max) seconds between instances of the volcano becoming active. Any number above 0 acts as a multiplier, with a minimum value of .1
EnableVolcano boolean true false = disabled (the volcano will not become active), true = enabled

ARK: Homestead specific

<tbody></tbody>
Option Value Type Default Effect
AlwaysAllowStructurePickup boolean false if true disables the timer on the quick-pickup system
StructurePickupTimeAfterPlacement float 30.0 amount of time in seconds after placement that quick pickup is available
AllowIntegratedSPlusStructures boolean true if false disables all of the new S+ structures (intended mainly for letting unofficials that want to keep using the S+ mod version to keep using that without a ton of extra duplicate structures)
StructurePickupHoldDuration float 0.5 used to specify the quick-pickup hold duration
use 0 to disable and have instant pickup

Game.ini

The following options can only be set in the [/script/shootergame.shootergamemode] section of Game.ini, located in the same folder as GameUserSettings.ini (see above for the location for each platform). Specifying them on the command line will have no effect.

<thead></thead><tbody> </tbody><tfoot></tfoot>
Option Arguments Effects and Example
ConfigOverrideItemMaxQuantity=(ItemClassString="<<a href="/Item_IDs" title="Item IDs">Class Name</a>>",Quantity=(MaxItemQuantity=<n>, bIgnoreMultiplier=<value>)) <tbody></tbody>
Class Name string <a href="/Item_IDs" title="Item IDs">Class Name</a> of the item that will be overriden to new stacksize
n integer new stacksize of the specified item
value boolean if false, that means that the real stack size is ItemStackSizeMultiplier * MaxItemQuantity for that item

if true, it uses MaxItemQuantity directly and ignores the multiplier

allow manually overriding item stack size on a per-item basis

Example:

ConfigOverrideItemMaxQuantity=(ItemClassString="PrimalItemAmmo_ArrowTranq_C",Quantity=(MaxItemQuantity=543, bIgnoreMultiplier=true))

this will make the Tranqarrows stack to 543 items per stack

bAllowUnlimitedRespecs=<value>

value = boolean (true/false)
Default = false

Set to true to allow more than one usage of <a href="/Mindwipe_Tonic" title="Mindwipe Tonic">Mindwipe Tonic</a> without 24 hours cooldown.

bOnlyAllowSpecifiedEngrams=<value>

value = boolean (true/false)
Default = false

If true, any Engram not explicitly specified in the <a href="#Engram_Entries">OverrideEngramEntries</a> or <a href="#Engram_Entries">OverrideNamedEngramEntries</a> list will be hidden. All Items and Blueprints based on hidden Engrams will be removed.
Introduced in patch <a href="/187.0" title="187.0">187.0</a>

LevelExperienceRampOverrides=(
ExperiencePointsForLevel[<n>]=<points>
[,ExperiencePointsForLevel[<n>]=<points>]
...
[,ExperiencePointsForLevel[<n>]=<points>])

<tbody></tbody>
n integer Level to configure
points integer Points needed to reach level
Configure the total number of levels available to players and dinosaurs and the experience points required to reach each level.

This directive can be specified twice in the configuration file. The first time it appears, the values provided will configure player levels. The second time it appears, the values provided will configure dinosaur levels.

Because of this, each time the directive is used, it must list all of the levels players (or dinosaurs) can reach on the server. One ExperiencePointsForLevel argument must appear for each desired level. Values for <n> must be sequential, starting from zero. Keep in mind that the last 15 levels are used for ascension, meaning that you have to put 15 extra levels in your configuration file.

The examples provided here are split into multiple lines for space considerations. In the configuration file, an entry must be placed on a single line.

LevelExperienceRampOverrides=(
ExperiencePointsForLevel[0]=1,
ExperiencePointsForLevel[1]=5,
...
ExperiencePointsForLevel[64]=1000)
LevelExperienceRampOverrides=(
ExperiencePointsForLevel[0]=1,
ExperiencePointsForLevel[1]=5,
...
ExperiencePointsForLevel[34]=1000)

The first example specifies 50 player levels and 15 ascension levels. The second example (when placed in the configuration file after the first example) specifies 35 dinosaur levels.

OverridePlayerLevelEngramPoints=<points> points = integer Configure the number of engram points granted to players for each level gained.

This option must be repeated for each player level configured on the server; if there are 65 player levels available, this option should appear in the configuration file 65 times. The first appearance of the option configures engram points for reaching level 1. The next one configures engram points for level 2, and so on all the way to the 65th appearance, which configures engram points for level 65.

OverridePlayerLevelEngramPoints=5
OverridePlayerLevelEngramPoints=10
...
OverridePlayerLevelEngramPoints=100
GlobalSpoilingTimeMultiplier=<value> value = float
Default = 1.0
Scales the spoiling time of perishables globally. Higher values prolong the time. (Note: As of patch 196.0 there is still a bug whereby items moved to the player's inventory have their spoilage times reset to normal (value 1.0) despite what this value is set at. It seems that as of <a href="/248.5" title="248.5">248.5</a> this has been fixed.)
Introduced in patch <a href="/189.0" title="189.0">189.0</a>
GlobalItemDecompositionTimeMultiplier=<value> value = float
Default = 1.0
Scales the decomposition time of dropped items, loot bags etc. globally. Higher values prolong the time.
Introduced in patch <a href="/189.0" title="189.0">189.0</a>
GlobalCorpseDecompositionTimeMultiplier=<value> value = float
Default = 1.0
Scales the decomposition time of corpses, (player and dinosaur), globally. Higher values prolong the time.
Introduced in patch <a href="/189.0" title="189.0">189.0</a>
HarvestResourceItemAmountClassMultipliers=(
ClassName="<classname>",
Multiplier=<value>
)
<tbody></tbody>
classname string Class Name of resource,
see <a href="/Item_IDs" title="Item IDs">Item IDs</a>
value float Default = 1.0
Scales on a per-resource type basis, the amount of resources harvested. Higher values increase the amount per swing/attack. E.g.:
HarvestResourceItemAmountClassMultipliers=(
 ClassName="PrimalItemResource_Thatch_C",
 Multiplier=2.0
)

will provide 2x the amount harvested when harvesting thatch from a tree. Resource classnames can be found at <a href="/Item_IDs" title="Item IDs">Item IDs</a>. Functions in the same way as the global setting HarvestAmountMultiplier but for only the type of resource named on this line. Additional lines can be added with other resource types, such as Wood, Stone etc.
Introduced in patch <a href="/189.0" title="189.0">189.0</a>

OverrideMaxExperiencePointsPlayer=<value>

OverrideMaxExperiencePointsDino=<value>

value = integer
Default = N/A
Overrides the Max XP cap of players & dinosaur characters, respectively, by exact specified amount.
Introduced in patch <a href="/189.0" title="189.0">189.0</a>
PreventDinoTameClassNames="<classname>" classname = string Prevents taming of specific dinosaurs via classname. E.g. PreventDinoTameClassNames="Argent_Character_BP_C"

Dino classnames can be found on the <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a> page.
Introduced in patch <a href="/194.0" title="194.0">194.0</a>

DinoClassDamageMultipliers=(
ClassName="<classname>",
Multiplier=<multiplier>
)

TamedDinoClassDamageMultipliers=(
ClassName="<classname>",
Multiplier=<multiplier>
)

classname = string

multiplier = float Default 1.0

Multiplies damage dealt of specific dinosaurs via classname. Higher values increase the damage dealt.

Dino classnames can be found on the <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a> page.

The examples provided here are split into multiple lines for space considerations. In the configuration file, an entry must be placed on a single line. Multiple DinoClassDamageMultipliers and TamedDinoClassDamageMultipliers entries can be specified in the file, but ClassName values should not be repeated across multiple entries.

Examples:

DinoClassDamageMultipliers=(
 ClassName="MegaRex_Character_BP_C",
 Multiplier=0.1
)
TamedDinoClassDamageMultipliers=(
 ClassName="Rex_Character_BP_C",
 Multiplier=10.0
)

Line breaks and spaces are here for better readability of the example. Keep it as one line in your configuration file.

Introduced in patch <a href="/194.0" title="194.0">194.0</a>

DinoClassResistanceMultipliers=(
ClassName="<classname>",
Multiplier=<multiplier>
)

TamedDinoClassResistanceMultipliers=(
ClassName="<classname>",
Multiplier=<multiplier>
)

classname = string

multiplier = float Default 1.0

Multiplies resistance of specific dinosaurs via classname. Higher values decrease the damage received.

Dino classnames can be found on the <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a> page.

The examples provided here are split into multiple lines for space considerations. In the configuration file, an entry must be placed on a single line. Multiple DinoClassResistanceMultipliers and TamedDinoClassResistanceMultipliers entries can be specified in the file, but ClassName values should not be repeated across multiple entries.

Examples:

DinoClassResistanceMultipliers=(
 ClassName="MegaRex_Character_BP_C",
 Multiplier=0.1
)
TamedDinoClassResistanceMultipliers=(
 ClassName="Rex_Character_BP_C",
 Multiplier=10.0
)

Line breaks and spaces are here for better readability of the example. Keep it as one line in your configuration file.

Introduced in patch <a href="/194.0" title="194.0">194.0</a>

ResourceNoReplenishRadiusPlayers=<value>

ResourceNoReplenishRadiusStructures=<value>

Value = float Default = 1.0 Allow resources to regrow closer or farther away from players & structures. Values higher than 1 increase the distance around players and structures where resources are not allowed to grow back. Values between 0 and 1 will reduce it.

Introduced in patch <a href="/196.0" title="196.0">196.0</a>

bIncreasePvPRespawnInterval=<Boolean>

IncreasePvPRespawnIntervalCheckPeriod=<value1>
IncreasePvPRespawnIntervalMultiplier=<value2>
IncreasePvPRespawnIntervalBaseAmount=<value3>

<tbody></tbody>
boolean boolean (true/false) Default = N/A
value1 float Default = 300
value2 float Default = 2
value3 float Default = 60
PvP servers have an optional +1 minute additional respawn (<value3>) that doubles (<value2>) each time if you are killed by a team within 5 minutes (<value1>) of your previous death to that team (timer indicated on Spawn UI). Is enabled in pvp by default, and on all the official pvp servers. Helps prevent PvO ammo-wasting of auto turrets by repeatedly throwing sacrificial players at them.

bIncreasePvPRespawnInterval must be set to True for these options to be activated.

Introduced in patch <a href="/196.0" title="196.0">196.0</a>

bAutoPvETimer=<Boolean1>

bAutoPvEUseSystemTime=<Boolean2>
AutoPvEStartTimeSeconds=<value1>
AutoPvEStopTimeSeconds=<value2>

<tbody></tbody>
boolean1 Boolean (true/false) Default = N/A
boolean2 boolean (true/false) Default = N/A
value 0 to 86400 Default = N/A
value 0 to 86400 Default = N/A
Allow switching from PvE to PvP mode at pre-specified in-game times OR a pre-specified real-world (server-side) times! For more detailed information regarding using system time vs. in-game time, please see patch notes <a href="/196.0" title="196.0">196.0</a>.

bAutoPvETimer must be set to True for these options to be activated.

Introduced in patch <a href="/196.0" title="196.0">196.0</a>

bPvEDisableFriendlyFire=<value> Value = boolean (true/false)
Default = false
Prevent-Friendly-Fire (among tribesmates/tribesdinos/tribesstructures) option for PvE servers
Introduced in patch <a href="/202.0" title="202.0">202.0</a>
bDisableFriendlyFire=<value> Value = boolean (true/false)
Default =false
Prevent-Friendly-Fire (among tribesmates/tribesdinos/tribesstructures) option for PvP servers
Introduced in patch <a href="/228.4" title="228.4">228.4</a>
bFlyerPlatformAllowUnalignedDinoBasing=<boolean> Value = boolean (true/false)
Default = false
Quetz platforms will not allow any non-allied dino to base on them when they are flying. If you want your server to allow non-allied dinos to be able to stand on the Quetz platforms set this to true.
Introduced in patch <a href="/218.3" title="218.3">218.3</a>
bUseCorpseLocator Value = boolean (true/false)
Default = false
If set to true, you will see a green light beam at the location of your death
MatingIntervalMultiplier=<value> Value = float
Default = 1.0
Higher number increases (on a percentage scale) interval between which dinosaurs can mate
Example: MatingIntervalMultiplier=0.5 would allow dinosaurs to mate 50% sooner

Introduced in patch <a href="/219.0" title="219.0">219.0</a>

MatingSpeedMultiplier=<value> Value = float

Default = 1.0

Higher number increases (by percentage) speed at which dinosaurs mate with each other

Example: MatingSpeedMultiplier=2.0 would cause dinosaurs to complete mating in half the normal time

Introduced in patch ??? (this var is undocumented in patch notes)

EggHatchSpeedMultiplier=<value> Value = float
Default = 1.0
Higher number decreases (by percentage) time needed for fertilized egg to hatch

Introduced in patch <a href="/219.0" title="219.0">219.0</a>

BabyMatureSpeedMultiplier=<value> Value = float
Default = 1.0
Higher number decreases (by percentage) time needed for baby dino to mature

Introduced in patch <a href="/219.0" title="219.0">219.0</a>

BabyFoodConsumptionSpeedMultiplier=<value> Value = float
Default = 1.0
Lower number decreases (by percentage) the speed that baby dinos eat their food

Introduced in patch <a href="/222.3" title="222.3">222.3</a>

CropGrowthSpeedMultiplier=<value> Value = float
Default = 1.0
Higher number increases (by percentage) speed of crop growth
Introduced in patch <a href="/218.0" title="218.0">218.0</a>
LayEggIntervalMultiplier=<value> Value = float
Default = 1.0
Higher number increases (by percentage) time between eggs spawning / being laid
Introduced in patch <a href="/218.0" title="218.0">218.0</a>
PoopIntervalMultiplier=<value> Value = float
Default = 1.0
Higher number decreases (by percentage) how frequently you can poop
Introduced in patch <a href="/218.0" title="218.0">218.0</a>
CropDecaySpeedMultiplier=<value> Value = float
Default = 1.0
Higher number decrease (by percentage) speed of crop decay in plots
Introduced in patch <a href="/218.0" title="218.0">218.0</a>
HairGrowthSpeedMultiplier=<value> Value = float
Default = 1.0
Higher number increase speed of hair growth.

Introduced in patch <a href="/254.0" title="254.0">254.0</a>

StructureDamageRepairCooldown=<value> Value= integer
Default = 180
Option for cooldown period on structure repair from the last time damaged. Set to 180 seconds by default, 0 to disable it

Introduced in patch <a href="/222.0" title="222.0">222.0</a>

bPvEAllowTribeWar=<value> Value = boolean
Default = True
False disables capability for Tribes to officially declare war on each other for mutually-agreed-upon period of time

Introduced in patch <a href="/223.0" title="223.0">223.0</a>

bPvEAllowTribeWarCancel=<value> Value = boolean
Default = False
True allows cancellation of an agreed-upon war before it has actually started

Introduced in patch <a href="/223.0" title="223.0">223.0</a>

bPassiveDefensesDamageRiderlessDinos=<value> Value = boolean
Default = False
True allow spike walls to damage wild/riderless Dinos

Introduced in patch <a href="/224.0" title="224.0">224.0</a>

CustomRecipeEffectivenessMultiplier=<value> Value = float
Default = 1.0
Higher number increases (by percentage) the effectiveness of a custom recipe

Introduced in patch <a href="/226.0" title="226.0">226.0</a>

CustomRecipeSkillMultiplier=<value> Value = float
Default = 1.0
Higher number increases (by percentage) the effect of the players crafting speed level that is used as a base for the formula in creating a custom recipe

Introduced in patch <a href="/226.0" title="226.0">226.0</a>

DinoHarvestingDamageMultiplier=<value> Value = float
Default = 3.2
Higher number increases (by percentage) the damage done to a harvestable item/entity by a Dino. The higher number, the faster you collect

Introduced in patch <a href="/231.1" title="231.1">231.1</a>

PlayerHarvestingDamageMultiplier=<value> Value = float
Default = 1.0
Higher number increases (by percentage) the damage done to a harvestable item/entity by a Player. The higher number, the faster you collect

Introduced in patch <a href="/231.1" title="231.1">231.1</a>

DinoTurretDamageMultiplier=<value> Value = float
Default = 1.0
Higher number increases (by percentage) the damage done by Turrets towards a Dino

Introduced in patch <a href="/231.4" title="231.4">231.4</a>

bDisableLootCrates=<value> Value = boolean
Default = False
True prevent spawning of Loot crates (artifact creates will still spawn)

Introduced in patch <a href="/231.7" title="231.7">231.7</a>

SupplyCrateLootQualityMultiplier=<value> Value = float
Default = 1.0
Range= 1 to 5
Increases the quality of items that have a quality in the supply crates. The quality also depends on the Difficulty Offset.

Introduced in patch <a href="/260.0" title="260.0">260.0</a>

FishingLootQualityMultiplier=<value> Value = float
Default = 1.0
Range= 1 to 5
Increases the quality of items that have a quality when fishing.

Introduced in patch <a href="/260.0" title="260.0">260.0</a>

KickIdlePlayersPeriod=<value> Value = integer
Default = 3600
Time after which characters that have not moved or interacted will be kicked (if -EnableIdlePlayerKick as command line parameter is set).

Introduced in patch <a href="/241.5" title="241.5">241.5</a>

TribeSlotReuseCooldown=<value> Value = float
Default = 0
Set this to a number > 0 to act as a timer. Locks a tribe slot for the value in seconds, so a value of 3600 would mean that if someone leaves the tribe, their place cannot be taken by another player (or rejoin) for 1 hour. Used on Official Small Tribes Servers.

Introduced in patch <a href="/280.114" title="280.114">280.114</a>

MaxNumberOfPlayersInTribe=<value> Value = float
Default = 0
Set this to a number > 0 to act as a limit. 1 Player Tribes effectively disables Tribes

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

BabyImprintingStatScaleMultiplier=<value> Value = float
Default = 1.0
How much of an effect on stats the Imprinting Quality has. Set it to 0 to effectively disable the system.

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

BabyImprintAmountMultiplier=<value> Value = float
Default = 1.0
Multiplier applied to the percentage each imprints provide. For example, if an imprint usually give 10%, setting this multiplier to 0.5 means they would now give 5% each. While setting it to 2.0 means they would now give 20% each, etc.
This multiplier is global, meaning it will affect the imprinting progression of every species.
Introduced in patch <a href="/312.35" title="312.35">312.35</a>
BabyCuddleIntervalMultiplier=<value> Value = float
Default = 1.0
How often Babies wanna cuddle. More often means you'll need to cuddle with them more frequently to gain Imprinting Quality.

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

BabyCuddleGracePeriodMultiplier=<value> Value = float
Default = 1.0
A multiplier on how long after delaying cuddling with the Baby before Imprinting Quality starts to decrease.

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

BabyCuddleLoseImprintQualitySpeedMultiplier=<value> Value = float
Default = 1.0
A multiplier on how fast Imprinting Qualitiy decreases after the grace period if you haven't yet cuddled with the Baby.

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

ConfigOverrideItemCraftingCosts See section <a href="#ConfigOverrideItemCraftingCosts">ConfigOverrideItemCraftingCosts</a> for an example.

Currently doesn't change repair cost and demolish refund of edited structures. Results in potential exploit for lowered crafting costs and may make structures unrepairable.

Note: if using stack mods, refer to the mod new resources instead of vanilla ones (i.e.: PrimalItemResource_Electronics_Child_C instead of PrimalItemResource_Electronics_C)

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

ConfigOverrideSupplyCrateItems See section <a href="#ConfigOverrideSupplyCrateItems">ConfigOverrideSupplyCrateItems</a> for an example

Introduced in patch <a href="/242.0" title="242.0">242.0</a>

ExcludeItemIndices=<value> Value = one <a href="/Item_IDs" title="Item IDs">Item ID</a> Exclude an item from supply crates. You can have multiple lines of this option.
MaxTribeLogs=<value> Value = integer
Default = 100
How many Tribe logs are displayed for each tribe.

Introduced in patch <a href="/224.0" title="224.0">224.0</a>

PvPZoneStructureDamageMultiplier=<value> Value = float
Default = 6.0
Specifies the scaling factor for damage structures take within caves.
The lower the value, the less damage the structure takes (i.e. setting to 1.0 will make structure built in or near a cave receive the same amount of damage as those built on the surface).
Introduced in patch <a href="/187.0" title="187.0">187.0</a>
bDisableDinoRiding=<value> Value = boolean (true/false)
Default = false
bDisableDinoTaming=<value> Value = boolean (true/false)
Default = false
bDisableStructurePlacementCollision=<value> Value = boolean (true/false)
Default = false
If 'true' allows for structures to clip into the terrain.
bAllowCustomRecipes=<value> Value = boolean (true/false)
Default = false
Introduced in patch <a href="/224.0" title="224.0">224.0</a>
bAutoUnlockAllEngrams=<value> Value = boolean(true/false)
Default = false
unlocks all Engrams available. -Ignores OverrideEngramEntries and OverrideNamedEngramEntries entries.

introduced in patch <a href="/273.62" title="273.62">273.62</a>

EngramEntryAutoUnlocks=(
EngramClassName="<<a href="/Engram_Classnames" title="Engram Classnames">index</a>>",
LevelToAutoUnlock=<value>
)
<tbody></tbody>
<a href="/Engram_Classnames" title="Engram Classnames">index</a> text <a href="/Engram_Classnames" title="Engram Classnames">Engram Classname</a>
value integer Level you need
to gain to unlock
the Engram automatically
automatically unlocks the specified Engram when reaching the level specified

this example unlocks the <a href="/Tek_Teleporter" title="Tek Teleporter">Tek Teleporter</a> with level 0:

EngramEntryAutoUnlocks=(
 EngramClassName="EngramEntry_TekTeleporter_C",
 LevelToAutoUnlock=0
)

introduced in patch <a href="/273.62" title="273.62">273.62</a>

bHardLimitTurretsInRange Value = boolean (true/false)
Default = false
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
bShowCreativeMode Value = boolean (true/false)
Default = false
Enables creative mode.

Introduced in patch <a href="/278.0" title="278.0">278.0</a>

PreventOfflinePvPConnectionInvincibleInterval Value = float
Default = 5.0
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
TamedDinoCharacterFoodDrainMultiplier Value = float
Default = 1.0
A multiplier on how fast tame dinos consume food.

Introduced in patch <a href="/278.0" title="278.0">278.0</a>

WildDinoCharacterFoodDrainMultiplier Value = float
Default = 1.0
A multiplier on how fast wild dinos consume food.

Introduced in patch <a href="/278.0" title="278.0">278.0</a>

WildDinoTorporDrainMultiplier Value = float
Default = 1.0
A multiplier on how fast wild dinos lose torpor.

Introduced in patch <a href="/278.0" title="278.0">278.0</a>

PassiveTameIntervalMultiplier Value = float
Default = 1.0
A multiplier on how often you get tame requests for passive tame dinos.

Introduced in patch <a href="/278.0" title="278.0">278.0</a>

TamedDinoTorporDrainMultiplier Value = float
Default = 1.0
A multiplier on how fast tamed dinos lose torpor.

Introduced in patch <a href="/278.0" title="278.0">278.0</a>

KillXPMultiplier Value = float
Default = 1.0
A multiplier to scale the amount of XP earned for a kill
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
HarvestXPMultiplier Value = float
Default = 1.0
A multiplier to scale the amount of XP earned for harvesting
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
CraftXPMultiplier Value = float
Default = 1.0
A multiplier to scale the amount of XP earned for crafting
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
GenericXPMultiplier Value = float
Default = 1.0
A multiplier to scale the amount of XP earned for generic XP (automatic over time)
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
SpecialXPMultiplier Value = float
Default = 1.0
A multiplier to scale the amount of XP earned for SpecialEvents
Introduced in patch <a href="/243.0" title="243.0">243.0</a>
[ModInstaller]
ModIDS=<value>
ModIDS=<value>
ModIDS=<value>
Value = ModID specify a manual list of extra Steam Workshop Mods/Maps/TC ID's to download/install/update in your Game.ini via (with the commandline(-automanagedmods) as normal to actually use them in-game)
Introduced in patch <a href="/244.3" title="244.3">244.3</a>
FastDecayInterval Value =integer
Default = 43200
Enable this option for a fixed constant decay period for "Fast Decay" structures (such as pillars or lone foundations). Value is in seconds.
MaxAlliancesPerTribe Value = integer
Default = N/A
Define the maximum alliances a tribe can form or be part of.
MaxTribesPerAlliance Value = integer
Default = N/A
Define the maximum of tribes in an alliance.
bUseTameLimitForStructuresOnly Value = boolean if true will make Tame Units only be applied and used for Platforms with Structures and Rafts effectively disabling Tame Units for Dinos without Platform Structures
UseCorpseLifeSpanMultiplier Value = float modifies corpse AND dropped box lifespan
Introduced in patch <a href="/275.0" title="275.0">275.0</a>
FuelConsumptionIntervalMultiplier Value = float
Default = 1.0
Define the interval of fuel consumption.

Introduced in patch <a href="/264.0" title="264.0">264.0</a>

GlobalPoweredBatteryDurabilityDecreasePerSecond Value = float
Default = 4
Introduced in patch <a href="/278.0" title="278.0">278.0</a>
DestroyTamesOverLevelClamp Value = integer
Default = 0
Tames that exceed that level will be deleted on server start. Official servers have it set to 449.

Introduced in patch <a href="/255.0" title="255.0">255.0</a>

LimitNonPlayerDroppedItemsRange Value = integer
Default = 0
Limit the number of droppeditems in an area (together with LimitNonPlayerDroppedItemsCount). Official servers have it set to 1600

Introduced in patch <a href="/302.4" title="302.4">302.4</a>

LimitNonPlayerDroppedItemsCount Value = integer
Default = 0
Limit the number of droppeditems in an area(together with LimitNonPlayerDroppedItemsRange). Official servers have it set to 600

Introduced in patch <a href="/302.4" title="302.4">302.4</a>

MaxFallSpeedMultiplier Value = float
Default = 1.0
Defines the falling speed multiplier at which players starts taking fall damage. The falling speed is based on the time players spent in the air while having a negated Z axis velocity meaning that the higher this setting is, the longer players can fall without taking fall damage. For example, having it set to 0.1 means players will no longer survive a regular jump while having it set very high such as to 100.0 means players will survive a fall from the sky limit, etc. This setting doesn't affect the gravity scale of the players so there won't be any physics difference to the character movements.

Introduced in patch <a href="/279.224" title="279.224">279.224</a>

bIgnoreStructuresPreventionVolumes Value = boolean
Default = true
enable building in Mission Volumes on <a href="/Genesis_Part_1" class="mw-redirect" title="Genesis Part 1">Genesis Part 1</a>
bGenesisUseStructuresPreventionVolumes Value = boolean
Default = true
disable building in mission areas on <a href="/Genesis_Part_1" class="mw-redirect" title="Genesis Part 1">Genesis Part 1</a> if set to true
bDisableGenesisMissions Value = boolean
Default = fault
enable or disable missions on Genesis


Turret Limit related

bLimitTurretsInRange=<b><overrride></b>
LimitTurretsRange=<b><range></b>
LimitTurretsNum=<b><turrets></b>

Arguments:

<tbody></tbody>
override boolean if true enable the Limit
range integer determines the area in which turrets are added towards the limit, the value is UE4 units
turrets integer determines the maximum number of turrets that are allowed in the area

Limits the maximum allowed automated turrets (including <a href="/Plant_Species_X" title="Plant Species X">Plant Species X</a>) in a certain range.
Introduced in patch <a href="/274.0" title="274.0">274.0</a>

Engram Entries

OverrideEngramEntries=(EngramIndex=<b><<a href="/Engram_classnames" class="mw-redirect" title="Engram classnames">index</a>></b>
[,EngramHidden=<b><hidden></b>]
[,EngramPointsCost=<b><cost></b>]
[,EngramLevelRequirement=<b><level></b>]
[,RemoveEngramPreReq=<b><remove_prereq></b>])
OverrideNamedEngramEntries=(EngramClassName="<b><<a href="/Engram_classnames" class="mw-redirect" title="Engram classnames">class_name</a>></b>"
[,EngramHidden=<b><hidden></b>]
[,EngramPointsCost=<b><cost></b>]
[,EngramLevelRequirement=<b><level></b>]
[,RemoveEngramPreReq=<b><remove_prereq></b>])

Arguments:

<tbody></tbody>
<a href="/Engram_classnames" class="mw-redirect" title="Engram classnames">index</a> integer Index of the engram
<a href="/Engram_classnames" class="mw-redirect" title="Engram classnames">class_name</a> integer Class name of the engram
hidden false If true, hide the engram in the players' Engrams panel
cost integer Engram points needed to learn engram
level integer Minimum level needed to learn engram
remove_prereq false Remove the need of prerequisite engrams to learn this engram.

Description:

Configure the status and requirements for learning an engram. For OverrideEngramEntries the EngramIndex argument is always required, for OverrideNamedEngramEntries the EngramClassName argument is always required; the rest are optional, but at least one must be provided in order for the option to have any effect. The option may be repeated in Game.ini once for each engram to be configured.

The examples provided here are split into multiple lines for space considerations. In the configuration file, an entry must be placed entirely on a single line. Multiple OverrideEngramEntries and OverrideNamedEngramEntries entries can be specified in the file, but EngramIndex and EngramClassName values should not be repeated across multiple entries.

For the Engram Index and Engram Class Name see <a href="/Engram_classnames" class="mw-redirect" title="Engram classnames">Engram classnames</a>.

Examples:

OverrideEngramEntries=(EngramIndex=0, EngramHidden=false)
OverrideEngramEntries=(EngramIndex=1, EngramHidden=false, EngramPointsCost=3, EngramLevelRequirement=3, RemoveEngramPreReq=true)
OverrideNamedEngramEntries=(EngramClassName="EngramEntry_Campfire_C",  EngramHidden=false)
OverrideNamedEngramEntries=(EngramClassName="EngramEntry_StoneHatchet_C", EngramHidden=false, EngramPointsCost=3, EngramLevelRequirement=3, RemoveEngramPreReq=true)

Creature Spawn related

ConfigAddNPCSpawnEntriesContainer

ConfigAddNPCSpawnEntriesContainer=(
[NPCSpawnEntriesContainerClassString=<b><<a href="/Spawn_Entries" title="Spawn Entries">spawn_class</a>></b>],
[NPCSpawnEntries=((AnEntryName=<b><spawn_name></b>],
[EntryWeight=<b><factor></b>],
[NPCsToSpawnStrings=(<b><<a href="/Creature_IDs" title="Creature IDs">entity_id</a>></b>)))],
[NPCSpawnLimits=((NPCClassString=<b><<a href="/Creature_IDs" title="Creature IDs">entity_id</a>></b>],
[MaxPercentageOfDesiredNumToAllow=<b><percentage></b>)))]

Arguments:

<tbody></tbody>
<a href="/Spawn_Entries" title="Spawn Entries">spawn_class</a> string Spawn Class String, see <a href="/Spawn_Entries" title="Spawn Entries">Spawn Entries</a>
spawn_name string Spawn Name
factor float Weight Factor for this spawn
<a href="/Creature_IDs" title="Creature IDs">entity_id</a> string Entity ID of the dinosaur or creature to be added, see <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a>
percentage float Sets the maximum allowed dinosaurs or creatures for this instance

Allows specified dinosaurs/creatures to spawn in specified locations directly through the spawners limited to what is specified. Use one dinosaur/creature per line/setting.

For example: Adding 1 Giganotosaurus to the beach spawn area.

ConfigAddNPCSpawnEntriesContainer=(
 NPCSpawnEntriesContainerClassString="DinoSpawnEntriesBeach_C",
 NPCSpawnEntries=((AnEntryName="GigaSpawner", EntryWeight=1000.0, NPCsToSpawnStrings=("Gigant_Character_BP_C"))),
 NPCSpawnLimits=((NPCClassString="Gigant_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.01))
)

Line breaks and spaces are here for better readability of the example. Keep it as one line in your configuration file.

Introduced in Patch <a href="/248.0" title="248.0">248.0</a>


ConfigSubtractNPCSpawnEntriesContainer

ConfigSubtractNPCSpawnEntriesContainer=(
[NPCSpawnEntriesContainerClassString=<b><<a href="/Spawn_Entries" title="Spawn Entries">spawn_class</a>></b>],
[NPCSpawnEntries=((NPCsToSpawnStrings=(<b><<a href="/Creature_IDs" title="Creature IDs">entity_id</a>></b>)))],
[NPCSpawnLimits=((NPCClassString=<b><<a href="/Creature_IDs" title="Creature IDs">entity_id</a>></b>)))]

Arguments:

<tbody></tbody>
<a href="/Spawn_Entries" title="Spawn Entries">spawn_class</a> string Spawn Class String, see <a href="/Spawn_Entries" title="Spawn Entries">Spawn Entries</a>
<a href="/Creature_IDs" title="Creature IDs">entity_id</a> string Entity ID of the dino or creature to be removed, see <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a>

Completely removes specified dinosaurs/creatures from specified locations. More than one dinosaur/creature can be specified.

You cannot reference the same Spawn Entry in multiple lines and have them all take effect, even if the Entity ID or Spawn Class referenced is different between each line. If removing multiple dinosaurs/creatures from the same Spawn Entry, use one line to do so.

Example: Removing Trike and Pteros from the Beach.

ConfigSubtractNPCSpawnEntriesContainer=(
 NPCSpawnEntriesContainerClassString="DinoSpawnEntriesBeach_C",
 NPCSpawnEntries=(
  (NPCsToSpawnStrings=("Trike_Character_BP_C")),
  (NPCsToSpawnStrings=("Ptero_Character_BP_C"))
 ),
 NPCSpawnLimits=(
  (NPCClassString="Trike_Character_BP_C"),
  (NPCClassString="Ptero_Character_BP_C")
 )
)

Line breaks and spaces are here for better readability of the example. Keep it as one line in your configuration file.

Introduced in Patch <a href="/248.0" title="248.0">248.0</a>


ConfigOverrideNPCSpawnEntriesContainer

ConfigOverrideNPCSpawnEntriesContainer=(
[NPCSpawnEntriesContainerClassString=<b><<a href="/Spawn_Entries" title="Spawn Entries">spawn_class</a>></b>],
[NPCSpawnEntries=((AnEntryName=<b><spawn_name></b>],
[EntryWeight=<b><factor></b>],
[NPCsToSpawnStrings=(<b><<a href="/Creature_IDs" title="Creature IDs">entity_id</a>></b>)))],
[NPCSpawnLimits=((NPCClassString=<b><<a href="/Creature_IDs" title="Creature IDs">entity_id</a>></b>],
[MaxPercentageOfDesiredNumToAllow=<b><percentage></b>)))]

Arguments:

<tbody></tbody>
<a href="/Spawn_Entries" title="Spawn Entries">spawn_class</a> string Spawn Class String, see <a href="/Spawn_Entries" title="Spawn Entries">Spawn Entries</a>
spawn_name string Spawn Name
factor float Weight Factor for this spawn
<a href="/Creature_IDs" title="Creature IDs">entity_id</a> string Entity ID of the dino or creature to override other spawns, see <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a>
percentage float Sets the maximum allowed dinos or creatures for this instance

Overrides all dinosaurs/creatures within a specified area with specified dinos, allows for areas to be dedicated for the spawning of specific dinosaurs/creatures. Does not prevent wanderers from entering said location.

For example: If you want only Rexes and Carnos to spawn in the Mountain Region

ConfigOverrideNPCSpawnEntriesContainer=(
 NPCSpawnEntriesContainerClassString="DinoSpawnEntriesMountain_C",
 NPCSpawnEntries=(
  (AnEntryName="CarnoSpawner", EntryWeight=1.0, NPCsToSpawnStrings=("Carno_Character_BP_C")),
  (AnEntryName="RexSpawner", EntryWeight=1.0, NPCsToSpawnStrings=("Rex_Character_BP_C"))
 ),
 NPCSpawnLimits=(
  (NPCClassString="Carno_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.5),
  (NPCClassString="Rex_Character_BP_C", MaxPercentageOfDesiredNumToAllow=0.5)
 )
)

Line breaks and spaces are here for better readability of the example. Keep it as one line in your configuration file.

Introduced in Patch <a href="/248.0" title="248.0">248.0</a>


DinoSpawnWeightMultipliers

DinoSpawnWeightMultipliers=(
DinoNameTag=<b><<a href="/Creature_IDs" title="Creature IDs">tag</a>></b>
[,SpawnWeightMultiplier=<b><factor></b>]
[,OverrideSpawnLimitPercentage=<b><override></b>]
[,SpawnLimitPercentage=<b><limit></b>])

Arguments:

<tbody></tbody>
<a href="/Creature_IDs" title="Creature IDs">tag</a> string Dinosaur type to adjust, see <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a> (column Name Tags)
factor float Weight factor for this type
override false If true, use the specified SpawnLimitPercentage
limit float Maximum percentage (among all spawns) for this type

Customizes the spawning rate for a given dinosaur type (at all dinosaur spawn points). Types with a larger SpawnWeightMultiplier are selected more often when spawning new dinosaurs than types with lower multipliers. When OverrideSpawnLimitPercentage is specified (and true), the type will never be spawned more than SpawnLimitPercentage * 100 percent of the time, regardless of multiplier. For example, a SpawnLimitPercentage of 0.25 specifies that the type will be selected for spawning no more than 25% of the time.

The examples provided here are split into multiple lines for space considerations. In the configuration file, an entry must be placed entirely on a single line. Multiple DinoSpawnWeightMultipliers entries can be specified in the file, but DinoNameTag values should not be repeated across multiple entries.

DinoSpawnWeightMultipliers=(
 DinoNameTag=Bronto,
 SpawnWeightMultiplier=10.0,
 OverrideSpawnLimitPercentage=true,
 SpawnLimitPercentage=0.5
)

Line breaks and spaces are here for better readability of the example. Keep it as one line in your configuration file.


NPCReplacements

NPCReplacements=(FromClassName="<b><classname></b>", ToClassName="<b><classname></b>")

Arguments:

<tbody></tbody>
<a href="/Creature_IDs" title="Creature IDs">classname</a> string Spawn Class String, see <a href="/Creature_IDs" title="Creature IDs">Creature IDs</a> (column Entity ID)

This can be used to disable specific Alpha Creatures, replace the spawns of a particular NPC (NPC=Non-player character, i.e. a dino) with that of a different NPC, or completely disable any specific NPC spawn.

NPCReplacements=(FromClassName="MegaRaptor_Character_BP_C", ToClassName="Dodo_Character_BP_C")

Introduced in patch <a href="/196.0" title="196.0">196.0</a>

PlayerBaseStatMultipliers

PlayerBaseStatMultipliers[<attribute>]=<b><multiplier></b>

Arguments:

<tbody></tbody>
attribute integer

0: Health
1: Stamina / Charge Capacity
2: Torpidity
3: Oxygen / Charge Regeneration
4: Food
5: Water
6: Temperature
7: Weight
8: MeleeDamageMultiplier / Charge Emission Range
9: SpeedMultiplier
10: TemperatureFortitude
11: CraftingSpeedMultiplier

multiplier float Default = 1.0, see table below for the default value

Changes the base stats of a player by multipling with the default value. Meaning the start stats of a new spawned character.

Introduced in patch <a href="/254.6" title="254.6">254.6</a>

Default values:

<tbody></tbody>
Attribute default output
0 Health 1.0 100.0
1 Stamina 1.0 100.0
2 Torpidity 1.0 200.0 (you still become unconscious at 50 regardless of total amount)
3 Oxygen 1.0 100.0
4 Food 1.0 100.0
5 Water 1.0 100.0
6 Temperature 0.0 0.0 (Unused stat)
7 Weight 1.0 100.0
8 MeleeDamageMultiplier 0.0 100% (Base cannot be increased)
9 SpeedMultiplier 0.0 100% (Base cannot be increased)
10 TemperatureFortitude 0.0 0 (Base cannot be increased)
11 CraftingSpeedMultiplier 0.0 100% (Base cannot be increased)

PerLevelStatsMultiplier

PerLevelStatsMultiplier_Player[<attribute>]=<b><multiplier></b>
PerLevelStatsMultiplier_DinoTamed<type>[<attribute>]=<b><multiplier></b>
PerLevelStatsMultiplier_DinoWild[<attribute>]=<b><multiplier></b>

Arguments:

<tbody></tbody>
type text

no type given: Multiplier applied for each tamed level-up point
_Add: Multiplier immediately added for tamed dino
_Affinity: Multiplier applied dependant on affinity

attribute integer

0: Health
1: Stamina / Charge Capacity
2: Torpidity
3: Oxygen / Charge Regeneration
4: Food
5: Water
6: Temperature
7: Weight
8: MeleeDamageMultiplier / Charge Emission Range
9: SpeedMultiplier
10: TemperatureFortitude
11: CraftingSpeedMultiplier

multiplier float Default = 1.0 or see table below

Allows changing the amount of stats gained for each level.
E.g.: PerLevelStatsMultiplier_Player[7]=2.0 would mean that weight-increase per level is 2x as much as default for players.
PerLevelStatsMultiplier_Player changes the amount for players.
PerLevelStatsMultiplier_DinoTamed changes the amount for tamed dinos.
PerLevelStatsMultiplier_DinoWild changes the amount for wild dinos.
To nearly disable gaining stats use 0.01 because setting the value to 0 makes it default to 1.0

Examples for different types effecting Health of a tamed dino:

PerLevelStatsMultiplier_DinoTamed[0]=1.0
PerLevelStatsMultiplier_DinoTamed_Add[0]=1.0
PerLevelStatsMultiplier_DinoTamed_Affinity[0]=1.0

Introduced in patch <a href="/202.0" title="202.0">202.0</a>

Default Values:

<tbody></tbody>
Attribute Wild Tamed Tamed_Add Tamed_Affinity
0 Health 1 0.2 0.14 0.44
1 Stamina 1 1 1 1
2 Torpidity 1 1 1 1
3 Oxygen 1 1 1 1
4 Food 1 1 1 1
7 Weight 1 1 1 1
8 Damage 1 0.17 0.14 0.44
9 Speed 1 1 1 1

If bUseSingleplayerSettings=true then the following multipliers are applied additionally to the configured (or default) values.

<tbody></tbody>
Attribute Tamed Tamed_Add Tamed_Affinity
0 Health × 2.125 × 3.571 × 2.273
8 Damage × 2.353 × 3.571 × 2.273

ConfigOverrideItemCraftingCosts

ConfigOverrideItemCraftingCosts=(ItemClassString="PrimalItem_WeaponStoneHatchet_C",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemResource_Thatch_C",BaseResourceRequirement=1.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemAmmo_ArrowStone_C",BaseResourceRequirement=2.0,bCraftingRequireExactResourceType=false)))<br>
ConfigOverrideItemCraftingCosts=(ItemClassString="PrimalItem_WeaponTorch_C",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemConsumable_RawMeat_C",BaseResourceRequirement=3.0,bCraftingRequireExactResourceType=false),(ResourceItemTypeString="PrimalItemConsumable_CookedMeat_C",BaseResourceRequirement=2.0,bCraftingRequireExactResourceType=false)))

That's an example of how to make the Hatchet require 1 thatch and 2 stone arrows to craft. And to make the torch require 3 raw meat and 2 cooked meat to craft (because ya know, Meat Torches are the best torches!)

Every Item Class String can be found in the Dev Kit.

ConfigOverrideSupplyCrateItems

ConfigOverrideSupplyCrateItems=(SupplyCrateClassString="SupplyCrate_Level03_C",MinItemSets=1,MaxItemSets=1,NumItemSetsPower=1.0,bSetsRandomWithoutReplacement=true,ItemSets=((MinNumItems=2,MaxNumItems=2,NumItemsPower=1.0,SetWeight=1.0,bItemsRandomWithoutReplacement=true,ItemEntries=((EntryWeight=1.0,ItemClassStrings=("PrimalItemResource_Stone_C"),ItemsWeights=(1.0),MinQuantity=10.0,MaxQuantity=10.0,MinQuality=1.0,MaxQuality=1.0,bForceBlueprint=false,ChanceToBeBlueprintOverride=0.0),(EntryWeight=1.0,ItemClassStrings=("PrimalItemResource_Thatch_C"),ItemsWeights=(1.0),MinQuantity=10.0,MaxQuantity=10.0,MinQuality=1.0,MaxQuality=1.0,bForceBlueprint=false,ChanceToBeBlueprintOverride=0.0)))))

That's an example of how to completely override the items contained in the regular Level 3 supply crate, to contain just some stone and thatch for example.

Since <a href="/273.7" title="273.7">v273.7</a> the SupplyCrateClassString also takes a part of the class name. E.g. "SupplyCrate" will override all supply crates. You can also set bAppendItemSets=true to add item sets to supply crates, rather than totally overriding all their items. And you can set bAppendPreventIncreasingMinMaxItemSets=true to dynamically increase the amount of items dropped by however many additional itemsets you add (only applies when bAppendItemSets=true).

All of the Item class strings and Supply Crate names can, of course, be found in the ARK Dev Kit and on page <a href="/Beacon_IDs" title="Beacon IDs">Beacon IDs</a>!

<a target="_blank" rel="nofollow noreferrer noopener" class="external text" href="https://survivetheark.com/index.php?/forums/topic/65930-tutorial-modify-loot-crate-contents-v242/">Tutorial: Modify loot crate contents (v242)</a>

ItemStatClamps

NOTE: The command line argument ClampItemStats need to be set to true for the clamping to be enabled on your server. See <a href="#Command_Line_Syntax">Command Line Syntax</a>.

ItemStatClamps[<attribute>]=<b><value></b>

Arguments:

<tbody></tbody>
attribute integer

0: Generic Quality
1: Armor
2: Max Durability
3: Weapon Damage Percent
4: Weapon Clip Ammo
5: Hypothermal Insulation
6: Weight
7: Hyperthermal Insulation

value integer The algorithm used appears to be the following:

<Initial Value Constant> + ((<ItemStatClamps[<attribute>]> * <State Modifier Scale>) * (<Randomizer Range Multiplier> * <Initial Value Constant>))

Each items have their own specific data which can be found in the Dev Kit.

For example, here are the values needed to have the same clamping as official servers for Armor and Weapon Damage Percent:

ItemStatClamps[1]=19800
ItemStatClamps[3]=19800

This would clamp <a href="/Saddles" title="Saddles">Saddles</a> to 124.0 armor (74.5 for the 'tank' creatures such as <a href="/Doedicurus" title="Doedicurus">Doedicurus</a>, <a href="/Rock_Elemental" title="Rock Elemental">Rock Elemental</a>, etc.), <a href="/Flak_Armor" title="Flak Armor">Flak Armor</a> pieces to 496.0 armor, <a href="/Longneck_Rifle" title="Longneck Rifle">Longneck Rifle</a> to 298.0% damage, etc.

WARNING: This will permanently change the stats of any existing items so make sure to backup your current save before modifying and playing with the clamping values.

Administrator Whitelisting

Players can be whitelisted as administrators on the server via their SteamID. These players can use cheat commands on the server automatically, as if they had authenticated themselves via the enablecheats command (described below).

To whitelist administrators, create the file ShooterGame/Saved/AllowedCheaterSteamIDs.txt. In the file, list each player's SteamID, one per line.

SteamIDs for all connected players can be listed in-game via the cheat ListPlayers command. Players can be kicked from the server (using their SteamIDs) via the cheat KickPlayer command. Refer to the following section for details.

Note: When this method is used, it is not necessary to specify a server administrator password. A password can still be specified, and can be used by players not on the whitelist to gain administrator privileges, but the server will function without it and will still automatically grant privileges to whitelisted administrators.

Cross-ARK Data Transfer

How Cross-ARK Data Transfer works <a href="#cite_note-2">[2]</a>

1. For Officials, you can 'upload' Survivors from TheIsland or TheCenter via the "ARK Tribute" option available at any Supply Crate or Tribute Terminal. You can then 'download' these Survivors onto an Official ScorchedEarth Server of that same game mode. Currently only Survivors are allowed to travel TO ScorchedEarth (they can not have any items on them), in order to keep it balanced for the time being. However, FROM ScorchedEarth you can transfer Survivors, Items, and Dinos, which you can then download (via the ARK Tribute) onto TheIsland or TheCenter. So indeed you can bring all ScorchedEarth Items, Dinos, and Survivors (and thus Scorched Earth Engrams) onto TheIsland or TheCenter to extend your capabilities there. When transferring a Survivor between ARKs using this method, Tribes should be retained. However Alliances will not be retained, and will need to be re-setup on the other side.

2. For Unofficial Servers, if they wish to allow dynamic Cross-ARK Travel, they will need to run two Servers on the same box from the same directory, and then you can launch with the following commandlines:

ShooterGameServer.exe ScorchedEarth_P?SessionName=MySession1?AltSaveDirectoryName=Save1 -NoTransferFromFiltering -clusterid=mycluster123
ShooterGameServer.exe TheIsland?SessionName=MySession2?AltSaveDirectoryName=Save2  -NoTransferFromFiltering  -clusterid=mycluster123

(the clusterid must be the same between the servers!)
(to avoid saves from clashing each server should use distinct values for: ?AltSaveDirectoryName=<SaveFolderName>)

you also have options like:

?PreventDownloadSurvivors=False
?PreventDownloadItems=False
?PreventDownloadDinos=False
?PreventUploadSurvivors=False
?PreventUploadItems=False
?PreventUploadDinos=False
?noTributeDownloads=False

<a href="/247.85" title="247.85">247.85</a> added the ability to specify a common cross-server storage location that functions between multiple servers running on the same machine by adding the following launch parameter to each server:

-ClusterDirOverride=C:/TestStorage/

3. Meanwhile, in singleplayer, you can just use the "ARK Tribute" option and then go back to the main menu and host on the other map, and download your data accordingly.

References

  1. <a href="#cite_ref-extended_game_options_1-0">Jump up to: 1.0</a> <a href="#cite_ref-extended_game_options_1-1">1.1</a> Drake (23 June 2015). <a target="_blank" rel="nofollow noreferrer noopener" class="external text" href="http://steamcommunity.com/app/346110/discussions/10/530646715633129364/">"Extended Game Options: How to Configure your Custom ARK server"</a>. Server Hosting & Advertisement. Steam Community :: ARK: Survival Evolved. Retrieved 19 July 2015.
  2. <a href="#cite_ref-2" aria-label="Jump up" title="Jump up">↑</a> <a target="_blank" rel="nofollow noreferrer noopener" class="external free" href="https://survivetheark.com/index.php?/forums/topic/85463-scorched-earth-technicaldetail-faq-ongoing/">https://survivetheark.com/index.php?/forums/topic/85463-scorched-earth-technicaldetail-faq-ongoing/</a>
<tbody></tbody>

Navigation menu

<script> window.RLQ = window.RLQ || []; window.RLQ.push(function () { function getCookieValue(cookieName) { var cookieSplit = ('; ' + document.cookie).split('; ' + cookieName + '='); return cookieSplit.length === 2 ? cookieSplit.pop().split(';').shift() : null; }

function trackPageView(consent) { var utma = getCookieValue('__utma'); var utmb = getCookieValue('__utmb');

trackUrl = "https://beacon.wikia-services.com/__track/view?c=2294513&lc=en&lid=75&x=arksurvivalevolved_gamepedia&s=hydra&mobile_theme=gamepedia-light&rollout_tracking=ucp" + (mw.config.get('beaconId') ? "&beacon=" + mw.config.get('beaconId') : "") + (mw.config.get('wgArticleId') ? "&a=" + mw.config.get('wgArticleId') : "") + (document.referrer ? "&r=" + encodeURIComponent(document.referrer) : "") + "&rand=" + (new Date).valueOf() + "&cb=" + (new Date).valueOf() + (utma && utma[1] ? "&utma=" + utma[1] : "") + (utmb && utmb[1] ? "&utmb=" + utmb[1] : "") + (mw.config.get('sessionId') ? "&session_id=" + mw.config.get('sessionId') : "") + (mw.config.get('pvUID') ? "&pv_unique_id=" + mw.config.get('pvUID') : "") + (mw.config.get('pvNumber') ? "&pv_number=" + mw.config.get('pvNumber') : "") + (mw.config.get('pvNumberGlobal') ? "&pv_number_global=" + mw.config.get('pvNumberGlobal') : "") + (mw.config.get('wgTitle') ? "&pg=" + mw.config.get('wgTitle') : "") + ((mw.config.get('wgNamespaceNumber') || mw.config.get('wgNamespaceNumber') == 0) ? "&n=" + mw.config.get('wgNamespaceNumber') : "") + '&u=' + (consent.gdprConsent ? 0 : "-1");

fetch(trackUrl, { mode: 'no-cors', keepalive: true }) .then(/* ignore this callback */ () => {}) .catch(/* ignore this callback */ () => {}); }

window.ads.consentQueue && window.ads.consentQueue.push((consent) => trackPageView(consent)); }); </script>


<script>(window.RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgPageParseReport":{"limitreport":{"cputime":"0.280","walltime":"0.304","ppvisitednodes":{"value":867,"limit":1000000},"ppgeneratednodes":{"value":0,"limit":1000000},"postexpandincludesize":{"value":12984,"limit":2097152},"templateargumentsize":{"value":3282,"limit":2097152},"expansiondepth":{"value":13,"limit":40},"expensivefunctioncount":{"value":0,"limit":100},"unstrip-depth":{"value":0,"limit":20},"unstrip-size":{"value":1451,"limit":5000000},"timingprofile":["100.00% 31.445 1 -total"," 89.05% 28.002 1 Template:Nav_technical"," 77.86% 24.482 1 Template:Navbox"," 26.21% 8.243 1 Template:Navbar"," 11.58% 3.641 3 Template:Transclude"," 10.21% 3.211 1 Template:MissingTranslations"," 8.17% 2.568 17 Template:*"]},"loops":{"limitreport-count-unlimited":[0]},"cachereport":{"timestamp":"20201204124317","ttl":1209600,"transientcontent":false}}});});</script> <script defer="" src="https://www.fastly-insights.com/static/scout.js?k=17272cd8-82ee-4eb5-b5a3-b3cd5403f7c5"></script> <link href="https://fonts.googleapis.com/css?family=Rubik:400,700&display=swap&subset=cyrillic,latin-ext" rel="stylesheet">

<script type="text/javascript"> window.genreCategory = ; window.wikiTags = null; </script><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="height: 0px; width: 0px; position: absolute; overflow: hidden;" aria-hidden="true"><defs><path id="flag-small" d="M3 11h10.586l-3.293-3.293a.999.999 0 0 1 0-1.414L13.586 3H3v8zm-1 7a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0h13a1.002 1.002 0 0 1 .707 1.707L12.414 7l4.293 4.293A1 1 0 0 1 16 13H3v4a1 1 0 0 1-1 1z"></path><path id="alert-small" d="M2.618 15.995L9 3.199l6.382 12.796H2.618zm15.276.554l-8-16.04C9.555-.17 8.445-.17 8.105.51l-8 16.04A1.003 1.003 0 0 0 1 18h16c.347 0 .668-.18.85-.476a.998.998 0 0 0 .044-.975zM8 7.975V9.98a1 1 0 1 0 2 0V7.975a1 1 0 1 0-2 0m1.71 4.3c-.05-.04-.1-.09-.16-.12a.567.567 0 0 0-.17-.09.61.61 0 0 0-.19-.06.999.999 0 0 0-.9.27c-.09.101-.16.201-.21.33a1.01 1.01 0 0 0-.08.383c0 .26.11.52.29.711.19.18.44.291.71.291.06 0 .13-.01.19-.02a.635.635 0 0 0 .19-.06.59.59 0 0 0 .17-.09c.06-.04.11-.08.16-.12.18-.192.29-.452.29-.712 0-.132-.03-.261-.08-.382a.94.94 0 0 0-.21-.33"></path><path id="close-tiny" d="M7.426 6.001l4.278-4.279A1.008 1.008 0 1 0 10.278.296L6 4.574 1.723.296A1.008 1.008 0 1 0 .295 1.722l4.278 4.28-4.279 4.277a1.008 1.008 0 1 0 1.427 1.426L6 7.427l4.278 4.278a1.006 1.006 0 0 0 1.426 0 1.008 1.008 0 0 0 0-1.426L7.425 6.001z"></path></defs><symbol id="wds-icons-flag-small" viewBox="0 0 18 18"><use fill-rule="evenodd" xlink:href="#flag-small"></use></symbol><symbol id="wds-icons-checkmark-small" viewBox="0 0 18 18"><path d="M6 16a.997.997 0 0 1-.707-.293l-5-5a.999.999 0 1 1 1.414-1.414L6 13.586 16.293 3.293a.999.999 0 1 1 1.414 1.414l-11 11A.997.997 0 0 1 6 16" fill-rule="evenodd"></path></symbol><symbol id="wds-icons-error-small" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M11.0487656,5.33462857 C11.494971,4.88845714 12.2191405,4.88845714 12.6653459,5.33462857 C13.1115514,5.7808 13.1115514,6.50491429 12.6653459,6.95108571 L10.6171899,9.00030476 L12.6653459,11.0483048 C13.1115514,11.4956952 13.1115514,12.2185905 12.6653459,12.665981 C12.4422432,12.8878476 12.1496495,13 11.8570558,13 C11.5644621,13 11.2718683,12.8878476 11.0487656,12.665981 L8.99939043,10.6167619 L6.95123438,12.665981 C6.72813167,12.8878476 6.43431881,13 6.14294422,13 C5.8503505,13 5.55775678,12.8878476 5.33465407,12.665981 C4.88844864,12.2185905 4.88844864,11.4956952 5.33465407,11.0483048 L7.38281012,9.00030476 L5.33465407,6.95108571 C4.88844864,6.50491429 4.88844864,5.7808 5.33465407,5.33462857 C5.78085949,4.88845714 6.50380981,4.88845714 6.95123438,5.33462857 L8.99939043,7.38384762 L11.0487656,5.33462857 Z M16,11.8986667 L16,6.10026667 L11.8997333,2 L6.10026667,2 L2,6.10026667 L2,11.8986667 L6.10026667,16 L11.8997333,16 L16,11.8986667 Z M17.7077333,4.9792 C17.8944,5.16586667 18,5.4208 18,5.6864 L18,12.3136 C18,12.5792 17.8944,12.8330667 17.7077333,13.0208 L13.0208,17.7066667 C12.8330667,17.8944 12.5781333,18 12.3136,18 L5.6864,18 C5.42186667,18 5.16693333,17.8944 4.9792,17.7066667 L0.292266667,13.0208 C0.1056,12.8330667 0,12.5792 0,12.3136 L0,5.6864 C0,5.4208 0.1056,5.16586667 0.292266667,4.9792 L4.9792,0.292266667 C5.16693333,0.104533333 5.42186667,0 5.6864,0 L12.3136,0 C12.5781333,0 12.8330667,0.104533333 13.0208,0.292266667 L17.7077333,4.9792 Z"></path></symbol><symbol id="wds-icons-alert-small" viewBox="0 0 18 18"><use fill-rule="evenodd" xlink:href="#alert-small"></use></symbol><symbol id="wds-icons-close-tiny" viewBox="0 0 12 12"><use fill-rule="evenodd" xlink:href="#close-tiny"></use></symbol><symbol id="wds-icons-info-small" viewBox="0 0 18 18"><path clip-rule="evenodd" d="M9 16C5.141 16 2 12.859 2 9C2 5.141 5.141 2 9 2C12.859 2 16 5.141 16 9C16 12.859 12.859 16 9 16M9 0C4.037 0 0 4.037 0 9C0 13.963 4.037 18 9 18C13.963 18 18 13.963 18 9C18 4.037 13.963 0 9 0"></path><path clip-rule="evenodd" d="M8 12.9975V8.00982C8 7.45545 8.447 7.00735 9 7.00735 9.553 7.00735 10 7.45545 10 8.00982V12.9975C10 13.5519 9.553 14 9 14 8.447 14 8 13.5519 8 12.9975zM9.71 5.71419C9.66 5.75429 9.609 5.80541 9.55 5.83449 9.5 5.87459 9.439 5.90466 9.38 5.92471 9.319 5.95478 9.26 5.97584 9.189 5.98586 8.87 6.05603 8.52 5.94376 8.29 5.71419 8.2 5.61394 8.13 5.51369 8.08 5.38437 8.03 5.26307 8 5.13375 8 5.00243 8 4.74178 8.109 4.48214 8.29 4.29067 8.48 4.11022 8.73 3.99995 9 3.99995 9.06 3.99995 9.13 4.00998 9.189 4.02 9.26 4.03003 9.319 4.05108 9.38 4.08015 9.439 4.1002 9.5 4.13128 9.55 4.17037 9.609 4.21047 9.66 4.25057 9.71 4.29067 9.89 4.48214 10 4.74178 10 5.00243 10 5.13375 9.97 5.26307 9.92 5.38437 9.87 5.51369 9.8 5.62397 9.71 5.71419"></path></symbol></svg> <script>(window.RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgBackendResponseTime":86});});</script>


<script async="" type="text/javascript" src="//static.wikia.nocookie.net/fandom-ae-assets/tracking-opt-in/v5.2.0/tracking-opt-in.min.js"></script><iframe name="__tcfapiLocator" style="display: none;"></iframe>

<script async="" type="text/javascript" src="//tag.durationmedia.net/sites/10652/dm.js" id="dm-script"></script><script async="" type="text/javascript" src="//www.googletagservices.com/tag/js/gpt.js"></script>

<script type="text/javascript" id="">(function(){function c(a){for(var d=window.dataLayer,b=0;b<d.length;b++){var e=d[b].fandom;e&&(d[b]={fandom:Object.assign(e,a)})}}window.dataLayer=window.dataLayer||[];window.dataLayer.push({fandom:{app:"ucp","country-code":"RU",mwCanonicalNamespace:window.wgCanonicalNamespace,isMainNamespace:"true",userId:google_tag_manager["GTM-N6XD44P"].macro(4),trackingQueueConsent:!1,wgCityId:window.wgCityId,lightDark:"",infobox:"",table:"",navbox:"",uniquePageviewID:"",hasFeaturedVideo:"",pageType:"",

skin:mw.config.get("skin")}});window.ads&&window.ads.pushToConsentQueue&&window.ads.pushToConsentQueue(function(a){a&&(a.geoRequiresConsent&&a.gdprConsent?c({trackingQueueConsent:!0}):a.geoRequiresConsent||c({trackingQueueConsent:!0}))});c({fullVerticalName:mw.config.get("fullVerticalName")})})();</script><script type="text/javascript" id="">function build_swm_cookie_name(name){return"swm-"+name+"-closed"}function closeAndSetCookie(name){console.log("Closing the SG-Bar down...");$.cookie(build_swm_cookie_name(name),location.href,{expires:30});$(".wds-banner-notification__container").slideUp()} (function(){function loadSWM(name){var insertion_location=$(".banner-notifications-placeholder");if(insertion_location){var swm_bar=$('\x3cdiv class\x3d"wds-banner-notification__container" id\x3d"swm-'+name+'-container" \x3e'+'\x3cdiv class\x3d"wds-banner-notification wds-warning warn"\x3e'+'\x3cdiv class\x3d"wds-banner-notification__icon"\x3e'+'\x3csvg class\x3d"wds-icon wds-icon-small" xmlns\x3d"http://www.w3.org/2000/svg" width\x3d"18" height\x3d"18" viewBox\x3d"0 0 18 18"\x3e'+'\x3cpath d\x3d"M2.618 15.995L9 3.199l6.382 12.796H2.618zm15.276.554l-8-16.04C9.555-.17 8.445-.17 8.105.51l-8 16.04A1.003 1.003 0 0 0 1 18h16c.347 0 .668-.18.85-.476a.998.998 0 0 0 .044-.975zM8 7.975V9.98a1 1 0 1 0 2 0V7.975a1 1 0 1 0-2 0m1.71 4.3c-.05-.04-.1-.09-.16-.12a.567.567 0 0 0-.17-.09.61.61 0 0 0-.19-.06.999.999 0 0 0-.9.27c-.09.101-.16.201-.21.33a1.01 1.01 0 0 0-.08.383c0 .26.11.52.29.711.19.18.44.291.71.291.06 0 .13-.01.19-.02a.635.635 0 0 0 .19-.06.59.59 0 0 0 .17-.09c.06-.04.11-.08.16-.12.18-.192.29-.452.29-.712 0-.132-.03-.261-.08-.382a.94.94 0 0 0-.21-.33" fill-rule\x3d"evenodd"\x3e\x3c/path\x3e'+ "\x3c/svg\x3e"+"\x3c/div\x3e"+'\x3cspan class\x3d"wds-banner-notification__text" id\x3d"swm_bar_'+name+'"\x3e\x3c/span\x3e'+'\x3csvg id\x3d"sg-'+name+'-close" class\x3d"wds-icon wds-icon-tiny wds-banner-notification__close" width\x3d"12" height\x3d"12" viewBox\x3d"0 0 12 12" xmlns\x3d"http://www.w3.org/2000/svg"\x3e'+'\x3cpath d\x3d"M7.426 6.001l4.278-4.279A1.008 1.008 0 1 0 10.278.296L6 4.574 1.723.296A1.008 1.008 0 1 0 .295 1.722l4.278 4.28-4.279 4.277a1.008 1.008 0 1 0 1.427 1.426L6 7.427l4.278 4.278a1.006 1.006 0 0 0 1.426 0 1.008 1.008 0 0 0 0-1.426L7.425 6.001z" fill-rule\x3d"evenodd"\x3e\x3c/path\x3e'+ "\x3c/svg\x3e"+"\x3c/div\x3e"+"\x3c/div\x3e");insertion_location.prepend(swm_bar);$(".wds-banner-notification__container").hide();console.info("SWM Installed: ",name);$(document).on("click","#sg-"+name+"-close",function(){closeAndSetCookie(name)})}}var cc="RU";if(window.ads&&window.ads.pushToConsentQueue)window.ads.pushToConsentQueue(function(optIn){if(optIn&&(!optIn.geoRequiresConsent||optIn.gdprConsent)){var banner=$(".wds-banner-notification__container");if(!banner||banner.length< 2||$(banner).is(":hidden")){var isUapResolved="true";console.log("isUapResolved",isUapResolved);if(isUapResolved){var swms=window.site_wide_messages||[];if(swms&&swms.length>0)for(var i=0;i<swms.length;i++){var name=swms[i]["name"];if(!$.cookie(build_swm_cookie_name(name))){loadSWM(name,$(banner).is(":hidden"));setTimeout(function(){$("#swm_bar_"+name).html(swms[i]["message"]);$("#swm-"+name+"-container").show();window.dataLayer.push({"event":"SiteWideMessage","action":"insert-gtm", "label":$("#swm_bar_"+name).text()})},1E3);break}}}else window.dataLayer.push({"event":"SiteWideMessage","action":"uap-blocked","label":"none"})}else window.dataLayer.push({"event":"SiteWideMessage","action":"exists","label":$(".wds-banner-notification__text").text()})}})})();</script> <script type="text/javascript" id="">sessionStorage.setItem("last_know_wiki_in_session","https:\/\/ark.gamepedia.com\/Server_Configuration");</script><script type="text/javascript" id="">(function(){window.watchshow_overrides=window.watchshow_overrides||{};var f=new Date("May 27, 2020 00:00:00"),g=new Date("Jun 10, 2020 00:00:00"),h=new Date("Jun 24, 2020 00:00:00"),c=new Date("Dec 31, 2020 11:59:59"),b=new Date,a={heading:"Where HBO Meets So Much More",subheading:"START YOUR FREE TRIAL",link:"https://www.hbomax.com/",image:"https://static.wikia.nocookie.net/2ef28d1f-a27b-4ba3-943e-33948fddd089",extra_disclaimer:"Free trial for new customers only. Retrictions Apply.",tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}, d={130814:{US:a},984:{US:a},74:{article:{179836:{US:a}}},125:{US:a},159:{US:a},1228:{US:a},2237:{US:a},621556:{US:a},881799:{US:a},24357:{US:a},1024023:{US:a}},e={509:{US:a},2459:{US:a},2154:{US:a},968:{US:a},528:{US:a},79848:{US:a},4828:{US:a},4930:{US:a}};a={924591:{US:a},8247:{US:a},35322:{US:a},3200:{US:a},543181:{US:a},440640:{US:a},1339:{US:a},6065:{US:a},1047871:{US:a},1418:{US:a},1791944:{US:a}};if(0<location.href.indexOf("showhbomax\x3dtrue")||b.getTime()>=f.getTime()&&b.getTime()<c.getTime())0=== Object.keys(watchshow_overrides).length?window.watchshow_overrides.by_wiki=d:$.extend(window.watchshow_overrides.by_wiki,d);if(0<location.href.indexOf("showhbomax\x3dtrue")||b.getTime()>=g.getTime()&&b.getTime()<c.getTime())0===Object.keys(window.watchshow_overrides).length?window.watchshow_overrides.by_wiki=e:$.extend(window.watchshow_overrides.by_wiki,e);if(0<location.href.indexOf("showhbomax\x3dtrue")||b.getTime()>=h.getTime()&&b.getTime()<c.getTime())0===Object.keys(window.watchshow_overrides).length? window.watchshow_overrides.by_wiki=hbomax_batch_32:$.extend(window.watchshow_overrides.by_wiki,a);console.debug("Watch Shows",window.watchshow_overrides)})();</script><style>

 h2.watch-show__cta-header {
   border-bottom: 1px solid #bfbfbf;
   padding-top: 5px;
 }
 
 .watch-show__disclaimer-message {
   background-color: rgba(58,58,58,0.1);
   /* color: #3a3a3a; */
   font-size: 8px;
   font-style: italic;
   letter-spacing: .02px;
   line-height: 1.5;
   margin-top: 15px;
   padding: 10px;
   position: relative;
 }
 .watch-show__image {
   width: 35px;
   margin-left: 12px;
   border-radius: 5px;
 }

</style> <script type="text/javascript" id="">(function(){function l(b){var g=$("#WikiaRail");if(g){d.push(Object.assign({event:e,action:"insert unit",label:location.href},b));var m=$('\x3csection class\x3d"rail-module watch-show" id\x3d"watch-show-rail-module-gtm" data-tracking-pixel\x3d""\x3e\x3ch2 class\x3d"watch-show__cta-header"\x3e'+b.heading+'\x3c/h2\x3e\x3cdiv class\x3d"watch-show__content"\x3e\x3ca id\x3d"watch-show-rail-module-gtm__link" href\x3d"'+b.link+'" class\x3d"wds-button wds-is-secondary" target\x3d"_blank" rel\x3d"noopener sponsored"\x3e'+ b.subheading+'\x3c/a\x3e\x3cimg src\x3d"'+b.image+'" alt\x3d"'+b.heading+'" class\x3d"watch-show__image"\x3e\x3c/div\x3e\x3cp class\x3d"watch-show__disclaimer-message"\x3eFandom may earn an affiliate commission on sales made from links on this page. '+b.extra_disclaimer+"\x3c/p\x3e\x3c/section\x3e");g.prepend(m);var h=b.tracking_pixel;g=$("#watch-show-rail-module-gtm__link");g.click(function(p){d.push(Object.assign({event:e,action:"click",label:location.href},b));if(h)return location.href=h,!0})}} var d=window.dataLayer||[],e="right column affiliate",c=window.watchshow_overrides||{};if(0<Object.keys(c).length){var a=window.wgCityId,n=window.wgArticleId,k="RU";if((c=c.by_wiki)&&a&&c[a]){var f=c[a].article;(f=f?c[a].article[n]:c[a])&&f[k]&&(d.push({aod:f}),aff_override_data=f[k],a="#watch-show-rail-module",(a=document.querySelector(a))?(d.push(Object.assign({event:e,action:"had existing unit",label:location.href},aff_override_data)),$(a).addClass("wds-is-hidden")):d.push(Object.assign({event:e, action:"no unit yet",label:location.href},aff_override_data)),l(aff_override_data))}else if(a="#watch-show-rail-module",a=document.querySelector(a))d.push({event:e,action:"hide unit",label:location.href}),$(a).addClass("wds-is-hidden")}})();</script><script type="text/javascript" id="">var affiliate_overrides={},now=new Date,hbomax_start_date_1=new Date("May 27, 2020 00:00:00"),hbomax_end_date=new Date("Dec 31, 2020 11:59:59");now=new Date; if(0<location.href.indexOf("showhbomax\x3dtrue")||now.getTime()>=hbomax_start_date_1.getTime()&&now.getTime()<hbomax_end_date.getTime())affiliate_overrides.by_wik={147:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},130814:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},984:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},74:{article:{179836:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}}}}, 125:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},159:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},1228:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},2237:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},621556:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}}, 881799:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},24357:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},1024023:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}}};console.log("Aff Overrides",affiliate_overrides);affiliate_overrides.ddb={ddb:{US:{heading:"Get everything you need to play D\x26D today",subheading:"BEGIN YOUR ADVENTURE",image:"https://static.wikia.nocookie.net/f5b6c309-5ab5-44d7-bcec-d585f3816946"}}}; affiliate_overrides.disneyplus={disney:{PT:{heading:"Apenas 6,99\u20ac/m\u00eas ou 69,99\u20ac/ano",subheading:"Subscreva j\u00e1",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_PT\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/5f9070fd-35af-488c-9f4b-7f168fd606af"},BE:{heading:"Du divertissement en continu pour seulement \u20ac6,99 par mois",subheading:"Inscrivez-vous",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_BE\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop", image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},SE:{heading:"69 kr per m\u00e5nad eller 689 kr f\u00f6r ett helt \u00e5r",subheading:"Registrera dig nu",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_SE\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},DK:{heading:"59kr. om m\u00e5neden eller 589 kr. om \u00e5ret",subheading:"Tilmeld dig nu", link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_DK\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},FI:{heading:"6,99 \u20ac kuukaudessa tai 69,99 \u20ac vuodessa",subheading:"Rekister\u00f6idy nyt",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_FI\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"}, NO:{heading:"69 kr per m\u00e5ned eller 689 kr per \u00e5r",subheading:"Registrer deg n\u00e5",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_NO\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},AR:{heading:"Todo en un mismo lugar. Solo $385/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_AR\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop", image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},BR:{heading:"Tudo em um s\u00f3 lugar. Apena R$ 27,90/m\u00e9s",subheading:"Sugest\u00f5es para voc\u00ea",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_BR\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},CL:{heading:"Todo en un mismo lugar. Solo CLP 6.500/mes",subheading:"sugerido para ti", link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_CL\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},MX:{heading:"Todo en un mismo lugar. Solo MXN 159/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_MX\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"}, CO:{heading:"Todo en un mismo lugar. Solo COP 23.900/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_CO\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},PE:{heading:"Todo en un mismo lugar. Solo Pen 25.90/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_PE\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop", image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"}}};console.log("Aff Overrides 2",affiliate_overrides);</script><script type="text/javascript" id="">function swap_out_affiliate(a,d,c,f,e){console.log("Attempting an override",a,d,c,f,e);if(a){var b=".aff-unit__header";b=document.querySelector(b);console.log("Looking for a heading node...",b,a);b&&(b.innerHTML=a)}d&&(a="button.aff-unit__cta",a=document.querySelector(a))&&(a.innerHTML=d);if(c){d="a.aff-unit__link";a=c;if(b=document.querySelector(d))link_existing_href=b.href,!e&&link_existing_href&&link_existing_href.startsWith("https://services.fandom.com/affiliate/redirect")&&(parsed_url=link_existing_href.split("?", 1))&&1==parsed_url.length&&(a=parsed_url[0]+"?r\x3d"+encodeURIComponent(c));if(b=document.querySelector(d))b.href=a,e&&b.addEventListener("click",function(g){location.href=e;g.preventDefault()},!1)}f&&(c="div.aff-unit__image-wrapper",(c=document.querySelector(c))&&c&&(c.style.backgroundImage="url('"+f+"')"))}var affiliate_overrides=affiliate_overrides||{},aff_unit_selector="div.aff-unit__wrapper",aff_unit_area=document.querySelector(aff_unit_selector); if(aff_unit_area&&0<Object.keys(affiliate_overrides).length){var aff_campaign=aff_unit_area.attributes.getNamedItem("data-campaign"),aff_category=aff_unit_area.attributes.getNamedItem("data-category"),country_code=google_tag_manager["GTM-5HQXBHF"].macro(34),by_wiki=affiliate_overrides.by_wiki,wikiId=wgCityId,articleId=wgArticleId;if(by_wiki&&wikiId&&by_wiki[wikiId]){var aod=by_wiki[wikiId].article;(aod=aod?by_wiki[wikiId].article[articleId]:by_wiki[wikiId])&&aod[country_code]&&(console.log("Aff Override - BY Wiki",aod[country_code]), aff_override_data=aod[country_code],aff_heading=aff_override_data.heading,aff_subheading=aff_override_data.subheading,aff_link=aff_override_data.link,aff_image=aff_override_data.image,aff_tracking_pixel=aff_override_data.tracking_pixel,swap_out_affiliate(aff_heading,aff_subheading,aff_link,aff_image,aff_tracking_pixel))}else if(aff_campaign&&aff_category&&country_code){var aff_campaign_overrides=affiliate_overrides[aff_campaign.nodeValue];if(aff_campaign_overrides){var aff_category_overrides=aff_campaign_overrides[aff_category.nodeValue]; if(aff_category_overrides){var aff_override_data=aff_category_overrides[country_code];aff_override_data?(console.log("aff_override_data",aff_override_data),aff_heading=aff_override_data.heading,aff_subheading=aff_override_data.subheading,aff_link=aff_override_data.link,aff_image=aff_override_data.image,aff_tracking_pixel=aff_override_data.tracking_pixel,swap_out_affiliate(aff_heading,aff_subheading,aff_link,aff_image,aff_tracking_pixel)):console.log("Aff: No overrides for country code: ",country_code)}else console.log("Aff: No overrides for category: ", aff_category.nodeValue)}else console.log("Aff: No overrides for campaign:",aff_campaign.nodeValue)}};</script><script type="text/javascript" id="">var affiliate_overrides={},now=new Date,hbomax_start_date_1=new Date("May 27, 2020 00:00:00"),hbomax_end_date=new Date("Dec 31, 2020 11:59:59");now=new Date; if(0<location.href.indexOf("showhbomax\x3dtrue")||now.getTime()>=hbomax_start_date_1.getTime()&&now.getTime()<hbomax_end_date.getTime())affiliate_overrides.by_wik={147:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},130814:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},984:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},74:{article:{179836:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}}}}, 125:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},159:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},1228:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},2237:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},621556:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}}, 881799:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},24357:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}},1024023:{US:{tracking_pixel:"https://pubads.g.doubleclick.net/gampad/clk?id\x3d5378625813\x26iu\x3d/5441"}}};console.log("Aff Overrides",affiliate_overrides);affiliate_overrides.ddb={ddb:{US:{heading:"Get everything you need to play D\x26D today",subheading:"BEGIN YOUR ADVENTURE",image:"https://static.wikia.nocookie.net/f5b6c309-5ab5-44d7-bcec-d585f3816946"}}}; affiliate_overrides.disneyplus={disney:{PT:{heading:"Apenas 6,99\u20ac/m\u00eas ou 69,99\u20ac/ano",subheading:"Subscreva j\u00e1",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_PT\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/5f9070fd-35af-488c-9f4b-7f168fd606af"},BE:{heading:"Du divertissement en continu pour seulement \u20ac6,99 par mois",subheading:"Inscrivez-vous",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_BE\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop", image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},SE:{heading:"69 kr per m\u00e5nad eller 689 kr f\u00f6r ett helt \u00e5r",subheading:"Registrera dig nu",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_SE\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},DK:{heading:"59kr. om m\u00e5neden eller 589 kr. om \u00e5ret",subheading:"Tilmeld dig nu", link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_DK\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},FI:{heading:"6,99 \u20ac kuukaudessa tai 69,99 \u20ac vuodessa",subheading:"Rekister\u00f6idy nyt",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_FI\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"}, NO:{heading:"69 kr per m\u00e5ned eller 689 kr per \u00e5r",subheading:"Registrer deg n\u00e5",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_NO\x26subId2\x3dnordic_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/8e08763f-6ae8-4996-924a-80ac71a96b95"},AR:{heading:"Todo en un mismo lugar. Solo $385/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_AR\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop", image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},BR:{heading:"Tudo em um s\u00f3 lugar. Apena R$ 27,90/m\u00e9s",subheading:"Sugest\u00f5es para voc\u00ea",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_BR\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},CL:{heading:"Todo en un mismo lugar. Solo CLP 6.500/mes",subheading:"sugerido para ti", link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_CL\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},MX:{heading:"Todo en un mismo lugar. Solo MXN 159/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_MX\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"}, CO:{heading:"Todo en un mismo lugar. Solo COP 23.900/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_CO\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"},PE:{heading:"Todo en un mismo lugar. Solo Pen 25.90/mes",subheading:"sugerido para ti",link:"https://disneyplus.bn5x.net/c/1947570/871867/9358?subId1\x3dgeneric_PE\x26subId2\x3dlatam_sale\x26subId3\x3dbanner-fandom\x26sharedId\x3dwiki_desktop",

image:"https://static.wikia.nocookie.net/fbb9a6c9-2318-49c0-8e4f-709cddbac8df"}}};console.log("Aff Overrides 2",affiliate_overrides);</script>

<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0"><defs><clipPath id="mwe-popups-mask"><path d="M0 8h10l8-8 8 8h974v992H0z"></path></clipPath><clipPath id="mwe-popups-mask-flip"><path d="M0 8h294l8-8 8 8h690v992H0z"></path></clipPath><clipPath id="mwe-popups-landscape-mask"><path d="M0 8h174l8-8 8 8h810v992H0z"></path></clipPath><clipPath id="mwe-popups-landscape-mask-flip"><path d="M0 0h1000v242H190l-8 8-8-8H0z"></path></clipPath></defs></svg>

</body>

Навигация