数据包修正

This commit is contained in:
Longfeng Qin 2024-09-16 15:55:13 +08:00
parent 096e63cdbd
commit 5c0737cade
4 changed files with 58 additions and 19 deletions

View File

@ -24,23 +24,4 @@ namespace PSO2SERVER.Packets.Handlers
campship.SpawnClient(context, new PSOLocation(0, 1, 0, 0, 0, 0, 0), context.currentParty.currentQuest.name);
}
}
[PacketHandlerAttr(0x4, 0x13)]
class CampshipTeleportDown : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context.currentParty.currentQuest == null)
return;
// TODO: WTF terribad hax?
if (context.CurrentLocation.PosZ >= 20)
{
var instanceName = String.Format("{0}-{1}", context.currentParty.currentQuest.name, context.User.Nickname);
Map forest = ZoneManager.Instance.MapFromInstance("area1", instanceName);
forest.SpawnClient(context, new PSOLocation(0, 1, 0, -0, -37, 0.314f, 145.5f));
}
}
}
}

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PSO2SERVER.Models;
using PSO2SERVER.Zone;
namespace PSO2SERVER.Packets.Handlers
{
[PacketHandlerAttr(0x03, 0x16)]
class CampshipTeleportDown : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context.currentParty.currentQuest == null)
return;
// TODO: WTF terribad hax?
if (context.CurrentLocation.PosZ >= 20)
{
var instanceName = String.Format("{0}-{1}", context.currentParty.currentQuest.name, context.User.Nickname);
Map forest = ZoneManager.Instance.MapFromInstance("area1", instanceName);
forest.SpawnClient(context, new PSOLocation(0, 1, 0, -0, -37, 0.314f, 145.5f));
}
}
}
}

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PSO2SERVER.Models;
using PSO2SERVER.Zone;
namespace PSO2SERVER.Packets.Handlers
{
//[PacketHandlerAttr(0x04, 0x13)]
//class _04_13_UNK : PacketHandler
//{
// public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
// {
// //if (context.currentParty.currentQuest == null)
// // return;
// //// TODO: WTF terribad hax?
// //if (context.CurrentLocation.PosZ >= 20)
// //{
// // var instanceName = String.Format("{0}-{1}", context.currentParty.currentQuest.name, context.User.Nickname);
// // Map forest = ZoneManager.Instance.MapFromInstance("area1", instanceName);
// // forest.SpawnClient(context, new PSOLocation(0, 1, 0, -0, -37, 0.314f, 145.5f));
// //}
// }
//}
}

View File

@ -175,6 +175,8 @@
<Compile Include="Packets\Handlers\03-03-InitialLoad.cs" />
<Compile Include="Packets\Handlers\03-0C-PingResponse.cs" />
<Compile Include="Packets\Handlers\03-10-DoItMaybe.cs" />
<Compile Include="Packets\Handlers\03-16-CampshipTeleportDown.cs" />
<Compile Include="Packets\Handlers\04-13-UNK.cs" />
<Compile Include="Packets\Handlers\03-12-CampshipTeleport.cs" />
<Compile Include="Packets\Handlers\03-35-CasinoTeleportHandler.cs" />
<Compile Include="Packets\Handlers\04-08-MovementActionHandler.cs" />