when I use the [global set refractmin (or refractmax) 5 where xmlspawner it puts all spawners on 5 hours. How would I set this to minutes or seconds?
I have also tried
[global set refractmin 5 min where xmlspawner
[global set refractmin 5 m where xmlspawner
and
[global set refractmin 5 minutes where xmlspawner.
those are timespan properties so you need to format them as timespan arguments
dd.hh:mm:ss
[global set refractmin 00:05:00 where xmlspawner
The general rule of thumb is that the format that you need to use to set a property can be found by first doing a [get on that property and see what it looks like.
[get refractmin
Awesome! Thank you soo much!