Add support for user titles

This commit is contained in:
SELEKCJONER
2024-11-18 21:51:23 +01:00
parent 34ce89446e
commit c8649335f6
8 changed files with 64 additions and 5 deletions

View File

@@ -62,7 +62,8 @@ namespace EpinelPS.LobbyServer.Msgs.Event
EventSystemType = 1
},
JoinAt = 0
});
});
// cinderella banner
response.EventWithJoinData.Add(new NetEventWithJoinData()
{
EventData = new NetEventData()
@@ -75,6 +76,20 @@ namespace EpinelPS.LobbyServer.Msgs.Event
EventDisableDate = DateTime.Now.AddDays(20).Ticks
},
JoinAt = 0
});
//cinderella free pull
response.EventWithJoinData.Add(new NetEventWithJoinData()
{
EventData = new NetEventData()
{
Id = 80004,
EventSystemType = 21,
EventVisibleDate = DateTime.UtcNow.Subtract(TimeSpan.FromDays(7)).Ticks,
EventStartDate = DateTime.UtcNow.Subtract(TimeSpan.FromDays(1)).Ticks,
EventEndDate = DateTime.Now.AddDays(20).Ticks,
EventDisableDate = DateTime.Now.AddDays(20).Ticks
},
JoinAt = 0
});
await WriteDataAsync(response);