Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
what....
You Play on unoffi server. So if you have the S+ Mod you can search Dinos with the Transmitter. >Dino< >LVL< >Coords<
The game has spawn nodes, referred to in the code as 'entries' or 'containers', which handle all the spawning of creatures.
https://ark.gamepedia.com/Spawn_Entries
Each node is set up with a list of creatures that could possibly spawn in that area, a spawn weight for each type of creature, and a maximum amount of creatures to spawn.
So for example, a beach spawn entry is programmed to spawn dodos, trikes, parasaurs, dilos, compies, etc. The game picks creatures from this list based upon their spawn weights and spawns them into the area, until it's maximum creature limit is reached. At this point the spawning will stop, and only resume when the number drops below max again, either through despawn, dinos being killed, or dinos wandering/being taken out of the area. There are other config options that server admins can use to add/remove certain creatures from spawn entries, or adjust their weights to make certain creatures more/less common.
In the case of alphas, though, they spawn a little differently. They don't have a separate instance within a spawn entry container: 'dodo, trike, alpha raptor'. Rather they share spawns with their normal variant. So a raptor listing in the spawn entry will mainly spawn normal raptors, but it has a very low chance to spawn an alpha raptor in the place of a normal raptor. Same with a carno entry - normally it will spawn average carnos, but just once in a while the carno spawned will be an alpha variant.
That's how the spawning works on other maps, so I assume it would be the same here. The Aberrition surface would probably have spawn entries for nameless, seekers, and reaper kings, and the game would fill up the play area with those creatures up to it's maximum limit. But there would be a small chance that one of those reaper kings would spawn as an alpha variant instead of a standard one, meaning that the alpha king could basically spawn anywhere that a normal king would be able to appear.