• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

spawning.xml "respawndelay" question

PinkLed5

Refugee
In the following line of code, what does "respawndelay" represent? Is it the number of hours or days or something else?

<spawn maxcount="1" respawndelay="3" time="Day" entitygroup="ZombiesAll" />

 
Can you set the game days to something like ".5" equaling 2 times per day?
Haven't tried in a17 or a18. A16 no you couldn't.

You can however just make 2 entries.

<spawn maxcount="1" respawndelay="1" time="Day" entitygroup="ZombiesAll" />

<spawn maxcount="1" respawndelay="1" time="Night" entitygroup="ZombiesAll" />

which is kind of the same.

 
Back
Top