support 2.0.5

This commit is contained in:
moux23333
2024-02-21 14:41:22 +08:00
parent d2d6517007
commit 205cc9e120
19 changed files with 6572 additions and 32799 deletions

View File

@@ -50,10 +50,10 @@ namespace FreeSR.Gateserver.Manager.Handlers
GroupId = 19,
InstId = 300001,
EntityId = 4194583,
Prop = new Mpdmfpohnnc
Prop = new ScenePropInfo
{
Hdmeecedleh = 1,
Kkjiblpgfpa = 808
PropState = 1,
PropId = 808
},
Motion = new MotionInfo
{
@@ -100,7 +100,7 @@ namespace FreeSR.Gateserver.Manager.Handlers
session.Send(CmdType.CmdSetLineupNameScRsp, new SetLineupNameScRsp
{
Retcode = (uint)RetcodeStatus.RetSucc,
Retcode = 0,
Name = request.Name,
Index = request.Index
});
@@ -114,18 +114,14 @@ namespace FreeSR.Gateserver.Manager.Handlers
Dictionary<uint, List<uint>> monsterIds = new Dictionary<uint, List<uint>>
{
{ 1, new List<uint> { 3001010, 3001020, 3001020, 3001010 } },
{ 2, new List<uint> { 3002030, 3002010, 3002010, 3002030 } },
{ 3, new List<uint> { 3011010, 3012020, 3011010 } },
{ 4, new List<uint> { 3003010, 3003020 } },
{ 5, new List<uint> { 3024020 } },
{ 6, new List<uint> { 3014020 } },
{ 7, new List<uint> { 3002050 } }
{ 1, new List<uint> { 3013010, 3012010, 3013010, 3001010 } },
{ 2, new List<uint> { 8034010 } },
{ 3, new List<uint> { 3014022 } },
};
Dictionary<uint, uint> monsterLevels = new Dictionary<uint, uint>
{
{1,70},{2,70},{3,60},{4,65},{5,55},{6,60},{7,75}
{1,70},{2,70},{3,60}
};
//basic
@@ -190,11 +186,11 @@ namespace FreeSR.Gateserver.Manager.Handlers
}
//monster
for (uint i = 1; i <= 7; i++)
for (uint i = 1; i <= monsterIds.Count; i++)
{
SceneMonsterWave monsterInfo = new SceneMonsterWave
{
Knkmjldpekj = i,
Pkgenfbhofi = i,
MonsterParam = new SceneMonsterParam
{
Level = monsterLevels[i],
@@ -219,7 +215,7 @@ namespace FreeSR.Gateserver.Manager.Handlers
var response = new StartCocoonStageScRsp
{
Retcode = (uint)RetcodeStatus.RetSucc,
Retcode = 0,
CocoonId = request.CocoonId,
Wave = request.Wave,
PropEntityId = request.PropEntityId,
@@ -235,7 +231,7 @@ namespace FreeSR.Gateserver.Manager.Handlers
var request = data as PVEBattleResultCsReq;
session.Send(CmdType.CmdPVEBattleResultScRsp, new PVEBattleResultScRsp
{
Retcode = (uint)RetcodeStatus.RetSucc,
Retcode = 0,
EndStatus = request.EndStatus
});
}