mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
32 lines
765 B
C#
32 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Horse_Isle_Server
|
|
{
|
|
class World
|
|
{
|
|
|
|
public static int ServerStartTime;
|
|
public const int MINUTE = 4320;
|
|
|
|
public static int GetGameDay()
|
|
{
|
|
int epoch = Database.GetServerCreationTime();
|
|
DateTime serverCreationTime = DateTimeOffset.FromUnixTimeSeconds(epoch).DateTime;
|
|
DateTime currentTime = DateTime.Now;
|
|
|
|
TimeSpan difference = (currentTime.Date - currentTime.Date);
|
|
|
|
Int64 totalMilis = Convert.ToInt32(difference.TotalMilliseconds);
|
|
|
|
|
|
Int64 gameMinutes = totalMilis / 4320;
|
|
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|