using PSO2SERVER.Models; using PSO2SERVER.Object; using PSO2SERVER.Protocol.Packets; using PSO2SERVER.Zone; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PSO2SERVER.Protocol.Handlers { [PacketHandlerAttr(0x03, 0x3C)] public class TeleportLobbyToCafe : PacketHandler { /// (0x03, 0x3C) Move Lobby -> Cafe. public struct CafeTransportPacket { public uint unk1; public uint unk2; public uint unk3; } public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size) { if (context._account == null) return; var reader = new PacketReader(data, position, size); var pkt = reader.ReadStruct(); Logger.Write($"unk1 {pkt.unk1} unk2 {pkt.unk2} unk3 {pkt.unk3}"); // Dunno what these are yet. context.SendPacket(new Unk110APacket((uint)context._account.AccountId)); context.SendPacket(new Unk1E0CPacket(101)); Map dstMap = ZoneManager.Instance.MapFromInstance("cafe", "lobby"); if(dstMap != null) { dstMap.SpawnClient(context, dstMap.GetDefaultLocation()); } else { Logger.WriteError("cafe 区域不存在"); return; } } } }