PSO2SERVER/Server/Protocol/Handlers/03-ServerHandler/03-39-TeleportLobbyToBridge.cs

31 lines
966 B
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;
namespace PSO2SERVER.Protocol.Handlers
2024-09-10 00:31:40 +08:00
{
2024-09-16 16:58:51 +08:00
[PacketHandlerAttr(0x03, 0x39)]
2024-12-03 13:18:58 +08:00
public class TeleportLobbyToBridge : PacketHandler
2024-09-10 00:31:40 +08:00
{
2024-09-16 16:58:51 +08:00
/// (0x03, 0x39) Move Lobby -> Bridge.
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;
// Dunno what these are yet.
2024-09-20 21:58:37 +08:00
context.SendPacket(0x11, 0xA, 0x0, BitConverter.GetBytes(context._account.AccountId));
2024-09-10 00:31:40 +08:00
context.SendPacket(0x1E, 0xC, 0x0, BitConverter.GetBytes(101));
2024-09-16 16:58:51 +08:00
Map bridgeMap = ZoneManager.Instance.MapFromInstance("bridge", "lobby");
bridgeMap.SpawnClient(context, bridgeMap.GetDefaultLocation());
2024-09-10 00:31:40 +08:00
}
}
}