TeamExp on stage settle

This commit is contained in:
rfi
2023-11-25 18:56:53 +07:00
parent 556477d312
commit f00e16c7a1
3 changed files with 66 additions and 4 deletions

View File

@@ -140,7 +140,6 @@ namespace AscNet.GameServer.Handlers
FubenMainLineData = new(),
FubenChapterExtraLoginData = new(),
FubenUrgentEventData = new(),
ItemList = session.inventory.Items,
UseBackgroundId = 14000001 // main ui theme, table still failed to dump
};
if (notifyLogin.PlayerData.DisplayCharIdList.Count < 1)
@@ -191,11 +190,24 @@ namespace AscNet.GameServer.Handlers
UnlockEmojis = EmojiTableReader.Instance.All.Select(x => new NotifyChatLoginData.NotifyChatLoginDataUnlockEmoji() { Id = (uint)x.Id }).ToList()
};
NotifyItemDataList notifyItemDataList = new()
{
/*ItemDataList = TableReaderV2.Parse<Table.V2.share.item.ItemTable>().Select(x => new Item()
{
Id = x.Id,
Count = x.MaxCount ?? 999_999_999,
RefreshTime = DateTimeOffset.Now.ToUnixTimeSeconds(),
CreateTime = DateTimeOffset.Now.ToUnixTimeSeconds()
}).ToList(),*/
ItemDataList = session.inventory.Items
};
session.SendPush(notifyLogin);
session.SendPush(notifyCharacterData);
session.SendPush(notifyEquipData);
session.SendPush(notifyAssistData);
session.SendPush(notifyChatLoginData);
session.SendPush(notifyItemDataList);
#region DisclamerMail
NotifyMails notifyMails = new();

View File

@@ -1,4 +1,5 @@
using AscNet.Common.MsgPack;
using AscNet.Common.Database;
using AscNet.Common.MsgPack;
using AscNet.Common.Util;
using AscNet.Table.share.fuben;
using AscNet.Table.V2.share.reward;
@@ -204,9 +205,13 @@ namespace AscNet.GameServer.Handlers
session.SendResponse(new FightSettleResponse() { Code = 20032004 }, packet.Id);
return;
}
List<RewardGoods> rewards = new();
List<RewardTable> rewardTables = TableReaderV2.Parse<RewardTable>().Where(x => session.stage.Stages.ContainsKey(req.Result.StageId) ? x.Id == stageTable.FinishDropId : (x.Id == stageTable.FinishDropId || x.Id == stageTable.FirstRewardId)).ToList();
NotifyItemDataList notifyItemData = new();
notifyItemData.ItemDataList.Add(session.inventory.Do(Inventory.TeamExp, stageTable.TeamExp ?? 0));
foreach (var rewardGoodsId in rewardTables.SelectMany(x => x.SubIds))
{
RewardGoodsTable? rewardGood = TableReaderV2.Parse<RewardGoodsTable>().FirstOrDefault(x => x.Id == rewardGoodsId);
@@ -227,9 +232,7 @@ namespace AscNet.GameServer.Handlers
// TODO: Implement other types. Other types are behaving weirdly
if (rewardType == RewardType.Item)
{
NotifyItemDataList notifyItemData = new();
notifyItemData.ItemDataList.Add(session.inventory.Do(rewardGood.TemplateId, rewardGood.Count));
session.SendPush(notifyItemData);
rewards.Add(new()
{
@@ -242,6 +245,9 @@ namespace AscNet.GameServer.Handlers
}
}
session.SendPush(notifyItemData);
session.ExpSanityCheck();
StageDatum stageData = new()
{
StageId = req.Result.StageId,