Let me exaplin a bit better...
xpSaveDays it's the pointer on cvar sh_xpsavedays...
Code:
nvault_prune(gVaultHandle, 0, get_systime() - (xpSaveDays * 24 * 3600))
So, if I set sh_xpsavedays "7", the native will look like this:
Code:
nvault_prune(gVaultHandle, 0, get_systime() - (7 * 24 * 3600))
0 = start, and the result of get_systime() - (7 * 24 * 3600) = end
But I still not understand, what value return get_systime?The seconds elapsed since 1970?This mean that the value of get_systime() grow every seconds.