PSO2SERVER/Server/Packets/Handlers/03-ServerHandler/03-3C-TeleportLobbyToCafe.cs

39 lines
1.1 KiB
C#
Raw Normal View History

2024-09-10 01:13:20 +08:00
using PSO2SERVER.Models;
using PSO2SERVER.Object;
using PSO2SERVER.Packets.PSOPackets;
using PSO2SERVER.Zone;
2024-09-10 00:31:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER.Packets.Handlers
2024-09-10 00:31:40 +08:00
{
2024-09-16 16:58:51 +08:00
[PacketHandlerAttr(0x03, 0x3C)]
class TeleportLobbyToCafe : PacketHandler
2024-09-10 00:31:40 +08:00
{
2024-09-16 16:58:51 +08:00
/// (0x03, 0x3C) Move Lobby -> Cafe.
2024-09-10 00:31:40 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context.User == null)
return;
// Dunno what these are yet.
context.SendPacket(0x11, 0xA, 0x0, BitConverter.GetBytes(context.User.PlayerId));
context.SendPacket(0x1E, 0xC, 0x0, BitConverter.GetBytes(101));
2024-09-16 16:58:51 +08:00
Map dstMap = ZoneManager.Instance.MapFromInstance("cafe", "lobby");
if(dstMap != null)
{
dstMap.SpawnClient(context, dstMap.GetDefaultLocation());
}
else
{
Logger.WriteError("cafe 区域不存在");
return;
}
2024-09-10 00:31:40 +08:00
}
}
}