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
spawn {
#Define the spawn position
# x y z
gps = 2000 2000 2000
#Define ships that will spawn
#Accepts the custom-ship format too. e.g. 2:1 3:1 4:2
ships = s 2
#How often should the ships spawn?
#In this case ships will spawn every 180 (3 minutes) to 240 (4 minutes) seconds. (the range is there to make it more random)
interval = 300-360
#Spawn if the previous wave is still alive?
overflow = false
#How long should a wave ramin in_game before being removed?
#This is useful in case an AI ship goes adrift (but is still alive)
#This only works when 'overflow = false'
overflow_timeout = 900 #delete ships after 900 seconds
#WARNING: There is no safety check; i.e. If you set interval to 0-0 and oveflow to true, ships will start spawning VERY FAST. Expect a very big crash
}
#another spawn location
spawn {
gps = -2000 -2000 -2000
ships = s 3
interval = 600-660 #every 10 to 11 minutes
overflow = true
}