update for version 3.1.5x

This commit is contained in:
amizing25
2025-03-04 09:48:38 +07:00
parent 44b9bf8580
commit 96ec724693
14 changed files with 62064 additions and 3094 deletions

View File

@@ -47,22 +47,22 @@
uint[] back = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 0 };
var mapinfo = new SceneMapInfo
var mapinfo = new MazeMapData()
{
Retcode = 0,
LightenSectionLists = back,
ChestLists = {
new ChestInfo
UnlockedChestLists = {
new MazeChest
{
ChestType = ChestType.MapInfoChestTypeNormal
MapInfoChestType = MapInfoChestType.MapInfoChestTypeNormal
},
new ChestInfo
new MazeChest
{
ChestType = ChestType.MapInfoChestTypePuzzle
MapInfoChestType = MapInfoChestType.MapInfoChestTypePuzzle
},
new ChestInfo
new MazeChest
{
ChestType = ChestType.MapInfoChestTypeChallenge
MapInfoChestType = MapInfoChestType.MapInfoChestTypeChallenge
}
},
};
@@ -70,10 +70,8 @@
var response = new GetSceneMapInfoScRsp
{
Retcode = 0,
EntryId = request.EntryIdLists[0],
CurMapEntryId = request.EntryId,
SceneMapInfoes = { mapinfo },
LightenSectionLists = back,
CurMapEntryId = request.CurMapEntryId,
MapLists = { mapinfo },
};
session.Send(CmdType.CmdGetSceneMapInfoScRsp, response);