mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-21 11:24:40 +01:00
Basic event support
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user