using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using PSO2SERVER.Models; using PSO2SERVER.Object; using PSO2SERVER.Protocol.Packets; using PSO2SERVER.Zone; using static PSO2SERVER.Protocol.Handlers.TeleportLobbyToCafe; namespace PSO2SERVER.Protocol.Handlers { [PacketHandlerAttr(0x03, 0x34)] public class TeleportCasinoToLobby : PacketHandler { /// (0x03, 0x34) Move Casino -> Lobby. public struct CasinoToLobbyPacket { public uint unk1; public uint unk2; public uint unk3; public uint unk4; } public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size) { var reader = new PacketReader(data, position, size); var pkt = reader.ReadStruct(); Logger.Write($"unk1 {pkt.unk1} unk2 {pkt.unk2} unk3 {pkt.unk3} unk4 {pkt.unk4}"); if(pkt.unk3 != 0x10) { Logger.WriteWarning("[WRN] Packet 0x3 0x34's first value was not 0x10! Investigate."); } PSOLocation destination; if(pkt.unk4 == 0) // Gate area { destination = new PSOLocation(0f, 1f, 0f, 0f, -0.22f, 2.4f, 198.75f); } else // Shop area { destination = new PSOLocation(0f, 1f, 0f, 20f, 0.20f, 1.23f, -175.25f); } Map lobbyMap = ZoneManager.Instance.MapFromInstance("lobby", "lobby"); lobbyMap.SpawnClient(context, destination, "lobby"); } } }