数据包修正
This commit is contained in:
parent
096e63cdbd
commit
5c0737cade
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
28
Server/Packets/Handlers/03-16-CampshipTeleportDown.cs
Normal file
28
Server/Packets/Handlers/03-16-CampshipTeleportDown.cs
Normal 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));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
28
Server/Packets/Handlers/04-13-UNK.cs
Normal file
28
Server/Packets/Handlers/04-13-UNK.cs
Normal 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));
|
||||
// //}
|
||||
// }
|
||||
//}
|
||||
}
|
@ -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" />
|
||||
|
Loading…
Reference in New Issue
Block a user