Basic event support

This commit is contained in:
Mikhail
2024-07-05 20:49:26 -04:00
parent 1f49e59cb9
commit 6fb82d5fa7
5 changed files with 123 additions and 13 deletions

View File

@@ -18,6 +18,49 @@ namespace nksrv.LobbyServer.Msgs.Event
// TODO: Support events
response.EventList.Add(new NetEventData()
{
Id = 100016,
EventDisableDate = 1000000000000000,
EventStartDate = 1,
EventEndDate = 1000000000000000,
EventVisibleDate = 0,
EventSystemType = 9
});
response.EventList.Add(new NetEventData()
{
Id = 81400,
EventDisableDate = 638574479990000000,
EventStartDate = 638556192000000000,
EventEndDate = 638574479990000000,
EventVisibleDate = 638556192000000000,
EventSystemType = 10
});
// Island Adventure
response.EventList.Add(new NetEventData()
{
Id = 81401,
EventStartDate = 638556192000000000,
EventVisibleDate = 638556192000000000,
EventDisableDate = 638574479990000000,
EventEndDate = 638574479990000000,
EventSystemType = 35
});
// Aegis the Diver event
response.EventList.Add(new NetEventData()
{
Id = 800001,
EventSystemType = 36,
EventVisibleDate = 0,
EventStartDate = 0,
EventEndDate = DateTime.Now.AddDays(20).Ticks,
EventDisableDate = DateTime.Now.AddDays(20).Ticks,
});
WriteData(response);
}
}