PSO2SERVER/Server/Protocol/Handlers/03-ServerHandler/03-35-TeleportLobbyToCasino.cs

45 lines
1.4 KiB
C#
Raw Normal View History

2024-09-10 01:13:20 +08:00
using PSO2SERVER.Models;
using PSO2SERVER.Object;
using PSO2SERVER.Protocol.Packets;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Zone;
2024-09-10 00:31:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using static PSO2SERVER.Protocol.Handlers.TeleportLobbyToCafe;
2024-09-10 00:31:40 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-10 00:31:40 +08:00
{
2024-09-16 02:56:02 +08:00
[PacketHandlerAttr(0x03, 0x35)]
2024-12-03 13:18:58 +08:00
public class TeleportLobbyToCasino : PacketHandler
2024-09-10 00:31:40 +08:00
{
2024-09-16 16:58:51 +08:00
/// (0x03, 0x35) Move Lobby -> Casino.
public struct CasinoTransportPacket
{
public uint unk1;
public uint unk2;
public uint unk3;
}
2024-12-10 13:33:57 +08:00
///[<--] 0x03 - 0x35 (TeleportLobbyToCasino) (Flags None) (20 字节)
/// unk1 0 unk2 0 unk3 16
2024-09-10 00:31:40 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
2024-09-20 21:58:37 +08:00
if (context._account == null)
2024-09-10 00:31:40 +08:00
return;
var reader = new PacketReader(data, position, size);
var pkt = reader.ReadStruct<CasinoTransportPacket>();
Logger.Write($"unk1 {pkt.unk1} unk2 {pkt.unk2} unk3 {pkt.unk3}");
2024-09-10 00:31:40 +08:00
// Dunno what these are yet.
context.SendPacket(new Unk110APacket((uint)context._account.AccountId));
2024-12-06 00:31:51 +08:00
context.SendPacket(new Unk1E0CPacket(101));
2024-09-10 00:31:40 +08:00
Map casinoMap = ZoneManager.Instance.MapFromInstance("casino", "lobby");
casinoMap.SpawnClient(context, casinoMap.GetDefaultLocation());
}
}
}