• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

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