安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
In general:
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="#where#",NPCSpawnEntries=( (AnEntryName="#name#",EntryWeight=#weight#,NPCsToSpawnStrings=("#what#"))), NPCSpawnLimits=( (NPCClassString="#what#",MaxPercentageOfDesiredNumToAllow=#percentage#)))
from https://survivetheark.com/index.php?/forums/topic/99062-quickie-procedurally-generated-arks-how-to-guide/
with #where# the class name of the spawner, #what# the entidy id of the animal (see http://ark.gamepedia.com/Creature_IDs ), #name# just a name of the spawner if you want to define multiple, #weight# and #percentage# to control how much should spawn (see example below).
Example: for 0.1% of the spawns being megas in the Wonder Cave:
ConfigAddNPCSpawnEntriesContainer=(NPCSpawnEntriesContainerClassString="DinoSpawnEntriesWonder",NPCSpawnEntries=( (AnEntryName="Megalosaurus_Character_BP_C",EntryWeight=1000.0,NPCsToSpawnStrings=("Megalosaurus_Character_BP_C"))), NPCSpawnLimits=( (NPCClassString="Megalosaurus_Character_BP_C",MaxPercentageOfDesiredNumToAllow=0.001)))
The entry weight of 1000 means it will always use this spawner first (the range for the weight is 0...1000) until a Max Percentage of 0.001 (0.1%) is reached. So you can play with the weight (using the spawner less) and with the percentage (disabling the spawner earlier). 0.1% doesn't sound much, but with all the animals in the caves... I am not sure, it might be even to high.
PS: You have to copy the ConfigAddNPCSpawnEntriesContainer entry in one line. There are no linebreaks in the game.ini in the ConfigAddNPCSpawnEntriesContainer.
Its a bit early to say its 100% right. I have the feeling you need to have it running for a while to recognize overspawning ;)
Anyways, the map update is just released and I disabled these options on my servers.
No worries. I add them again and if my players complain about all the restarts I will blame you :P
Would you be willing to provide a full list of the spawners used and possible the BluePrints for any custom spawners you use so I can subclass them?