the title might be a bit confusing but I had no plan how to name it. I am programming an emulator for a game and the game is using Timestamp for the premium time calculation.
What I need is a function to get the current timestamp and then a function that adds x days to it, so for example:
int daysToAdd = 10;
long Timestamp_normal = GetTimestamp();
long newTimestamp = AddDays(Timestamp_normal, daysToAdd);
Kind Regards