Ok, I can't say that I quite understand that. But what number would I put there if I wanted the census to start 5 seconds after login? 30 seconds is too much time to wait when I take a census and then am out of there.
Basically, when Auto-Census is on, then it will attempt to take a Census 1800 seconds (30 mins) after the time set in g_LastCensusRun. When the mod first loads up, it sets g_LastCensusRun to the current time minus 1200 seconds, meaning in 600 more seconds, a snapshot will be kicked off.
So by setting g_LastCensusRun farther and farther in the past, it will cause a Census to be kicked off sooner. So, to get it to start 5 seconds after loging, you would set it to 1795.
You could also just set it to 1800 and a Census will begin as soon as possible.
I want the program to begin taking a census 5 second after logon, and then automatically retake the next census immeadiatly after finishing the current one. How would I do that???
But I would hope you would still be able to see those folks if you waited 30 mins before taking another Census. Still, if this is what you want to do, it would be easy to set up.
if( g_VariablesLoaded and g_IsCensusPlusInProgress == false and CensusPlus_Database["Info"]["AutoCensus"] == true and g_LastCensusRun < time() - 1800 ) then
if( g_VariablesLoaded and g_IsCensusPlusInProgress == false and CensusPlus_Database["Info"]["AutoCensus"] == true and g_LastCensusRun < time() - 5 ) then
I haven't tested the above, but that would pretty much cause you to be taking Census pretty much constantly.